@charset "UTF-8";
/* CSS Document */


/*-----------
parts
-----------*/


/* hover */

@media (hover: hover) and (pointer: fine) {
  a.btn_line:hover,
  a.btn_b:hover,
  .select_area button a:hover,
  a.comparison_close:hover,
  .tab_select a:hover,
  .pagination li.pre a:hover,
  .pagination li.next a:hover,
  .btn_cart:hover,
  .btn_fujiohshop:hover,
  .btn_delete a:hover,
  .btn_dl_period select:hover,
  button.btn_line:hover,
  button.btn_b:hover{
    filter: brightness(120%);
  }
  
  
  .icon_tool a:hover,
  a.icon_tool:hover,
  .product_tool_content a:hover,
  .extension_list ul li a:hover,
  .btn_movie_dl:hover{
    background: #007096;
    color: #fff;
  }
}



/* text */

.contents_box .result_title,
.result_title{
  width: fit-content;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  border-bottom: none;
}

.result_txt {
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 30px;
}

.result_txt span {
  font-size: 34px;
  border-bottom: 3px solid #000;
}

.result_txt span span {
  font-size: 24px;
  border-bottom: none;
}

.product_search_txt{
  font-size: 22px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto 20px;
}

.product_search_word{
  font-size: 24px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto 20px;
}

.txt_list_num{
  font-size: 14px;
  margin: 0 0 10px;
}

.txt_note {
  font-size: 12px;
  margin-top: 15px;
}

.txt_note + .txt_note {
  margin-top: 0;
}

.txt_note14 {
  font-size: 14px;
  margin-top: 15px;
}

.txt_note14 + .txt_note {
  margin-top: 0;
}


.txt_kome{
  padding: 0 0 0 1.1em;
  position: relative;
}

.txt_kome:before{
  content: '※';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.txt_kome_number{
  counter-reset: titlenum;
}

.txt_kome_number li{
  padding: 0 0 0 2.1em;
  position: relative;
}

.txt_kome_number li:before{
  counter-increment: titlenum; 
  content: '※'counter(titlenum);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}


/* select_area text */

.select_area {
  margin-top: 0px;
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  justify-content: center;
}

.select_area .select_wrap {
  position: relative;
}

.select_area select {
  width: 169px;
  height: 58px;
  padding: 15px 25px 15px 12px;
  border-radius: 5px 0 0 5px;
  border-top: 1px solid #919191;
  border-left: 1px solid #919191;
  border-bottom: 1px solid #919191;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-transform: none;
  font-size: 16px;
  background-color: #fff;
}

.select_area select:focus {
  outline: 0;
}

.select_area .select_wrap::after {
  content: '';
  position: absolute;
  display: block;
  height: 7px;
  width: 7px;
  top: 50%;
  right: 12px;
  margin-top: -6px;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  transform: rotate(45deg);
}

.select_area input[type="text"] {
  width: 450px;
  height: 58px;
  padding: 0 15px 0 45px;
  border-radius: 0;
  border: 1px solid #919191;
  background: #f4f4f4;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  font-size: 18px;
}

.bg_gray .select_area input[type="text"] {
  background: #fff;
}

.select_area input[type="text"]:placeholder {
  color: #919191;
}

.select_area input[type="text"]:focus {
  outline: 0;
  border: 1px solid #007096;
  background: #f0f7f9;
}

.select_area .input_wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 29%;
  left: 15px;
  width: 23px;
  height: 23px;
  background: url("../img/common/icon_search_black.png") no-repeat left top;
  background-size: 23px auto;
}

.select_area .input_wrap {
  position: relative;
}

.select_area button {
  width: 108px;
  background-color: #fff;
}

.select_area button a {
  display: block;
  width: 108px;
  height: 58px;
  background: #007096;
  color: #fff;
  border-radius: 0 6px 6px 0;
  text-align: center;
  padding: 12px 15px 12px 15px;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  line-height: 34px;
  box-sizing: border-box;
  font-size: 18px;
}

.select_area button a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  margin-right: 5px;
  background: url("../img/common/icon_search_white_s.png") no-repeat left top;
  background-size: 21px auto;
}

.select_area_txt {
  font-size: 14px;
  text-align: center;
  margin-top: 18px;
}



/* サジェスト */

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #919191;
  margin-top: 5px;
  padding: 12.5px 0;
  z-index: 20;
}

.product-option {
  padding: 7.5px 20px;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.product-option:hover {
  background-color: #eee;
}

.product-list-text{
  font-size: 14px;
  overflow: hidden;
}

.product-list-img img{
  width: 50px;
  max-width: 50px;
}

.product-list-text p{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-list-text p.product-list-title {
  font-weight: bold;
  font-size: 16px;
}

.product-list-text p.product-list-title {
  font-weight: bold;
  font-size: 16px;
}

.product-list-text p.product-list-texts span + span:before{
  content: "｜";
}



/* タブ */

.tab_wrap {
  width: 100%;
  margin: 65px 0 0;
}

.tab_select {
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
  overflow-y: hidden;
  padding: 0 3px;
  column-gap: 3px;
  margin: 0 auto;
}

.tab_select li {
  flex: 1;
}

.tab_select span,
.tab_select a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #007096;
  color: #fff;
  border-radius: 6px 6px 0 0;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
  line-height: 1.1;
  text-align: center;
}

.tab_select li.active span,
.tab_select li.active a {
  background: #f4f4f4;
  border-radius: 6px 6px 0 0;
  color: #000;
  height: 74px;
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .tab_select li.active a:hover{
    filter: brightness(100%);
  }
}


@media print, screen and ( min-width : 769px ) {
  
.tab_wrap {
  min-width: 1100px;
}
  
.tab_wrap.tab_over9 .tab_scroll_wrap {
  overflow-x: auto;
}
  
.tab_select {
  width: 1094px;
}
  
.tab_wrap.tab_over9 .tab_select {
  width: fit-content;
  min-width: 1094px;
  justify-content: left;
  margin: 0 auto;
}

.tab_wrap.tab_over9 .tab_select li {
  width: 150px;
  flex: none;
}
  
}



/* ボタン */

.btn_b {
  display: block;
  color: #fff;
  background: #007096;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
  text-align: center;
  position: relative;
}

.btn_b--large {
  width: 417px;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  margin: 0 auto;
}

.btn_b--medium {
  width: 350px;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  margin: 0 auto;
}

.btn_b.btn_b--medium.icon_search{
  margin-top: 50px;
}

.btn_b--muted {
  min-width: 230px;
  height: 56px;
  padding: 0 35px;
  line-height: 56px;
  font-size: 15px;
  margin: 0 auto;
}

.btn_line {
  display: block;
  color: #fff;
  font-size: 18px;
  background: #007096;
  border-radius: 6px;
  height: 56px;
  line-height: 56px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 0 3px #007096 inset, 0 0 0 5px #fff inset;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.btn_line::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
}

.btn_w {
  display: block;
  color: #007096;
  background: #fff;
  border: 1px solid #007096;
  border-radius: 6px;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.2s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .btn_w:hover {
    background: #007096;
    color: #fff;
  }
}

.btn_w--medium {
  width: 220px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  margin: 0 auto;
}

.icon_search::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 23px;
  background: url("../img/common/icon_search_white.png") no-repeat left top;
  background-size: 23px auto;
  margin: -3px 5px 0 -20px;
}

.icon_close::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  margin-top: -2px;
  background: url("../img/common/close_btn.png") no-repeat left top;
  background-size: contain;
}

.icon_blank::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 17px;
  background: url("../img/common/icon_blank_w.svg") no-repeat left top;
  background-size: 22px auto;
  margin: -3px -10px 0 8px;
}

.icon_arrow_down {
  position: relative;
  padding-right: 7px;
}

.icon_arrow_down::before {
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  right: 13px;
  margin-top: -8px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}

.icon_batsu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon_batsu:before { 
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/common/icon_batsu.svg") no-repeat left top;
  background-size: 14px auto;
  margin-right: 8px;
}


/* ボタンセット */

.product_search_footer_2btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  width: 100%;
}

.product_search_footer_2btn .left_btn a {
  width: 350px;
}

.product_search_footer_2btn .right_btn a {
  font-size: 15px;
  height: 56px;
  line-height: 56px;
  width: 230px;
}

.product_search_footer_2btn a.btn_conditions::before {
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  right: 15px;
  margin-top: -6px;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
}


.btn_title_r{
  width: 1100px;
  margin: -49px auto 0;
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
}

.btn_title_r .btn_b{
  font-size: 15px;
  width: fit-content;
  padding: 0 1.2em;
  line-height: 40px;
}

.btn_title_r .btn_line{
  font-size: 15px;
  width: 140px;
  line-height: 40px;
  height: 40px;
}


.icon_tool {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1%;
  row-gap: 8px;
  margin-bottom: 27px;
}

.icon_tool li {
  width: 24.25%;
}

.icon_tool a,
.icon_tool span,
a.icon_tool{
  display: block;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #007096;
  color: #007096;
  text-decoration: none;
  font-size: 16px;
  line-height: 26px;
  box-sizing: border-box;
  margin: 0;
}

a.icon_tool{
  width: 102px;
  margin-right: 15px;
}

.icon_tool span{
  background: #f4f4f4;
  border: 1px solid #ababab;
  color: #ababab;
}


.comparison_state{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  column-gap:5px;
  font-size: 14px;
  margin-bottom: 13px;
}

.text_red {
  color: #af272f;
}

.text_l {
  font-size: 20px;
}

.btn_compare {
  width: 119px;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  margin: 0 10px 0 0;
}

.btn_compare.none {
  pointer-events: none;
  background: #d2d2d2;
}

.comparison_state_txt{
  display:flex;
  align-items:center;
  column-gap:10px;
  line-height: 1.1;
}

a.comparison_close {
  display: block;
  height: 29px;
  line-height: 29px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #007096;
}



/* チェックボックス */

/* checkbox-blue_01 */

.checkbox-blue_01 {
  display: none;
}

.checkbox-blue_01 + label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 26px;
  text-indent: -26px;
  position: relative;
  width: auto;
  z-index: 2;
}

.checkbox-blue_01 + label .icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: -3px;
  margin-right: 7px;
  vertical-align: middle;
}

.checkbox-blue_01 + label .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border: 2px solid #919191 !important;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
  box-sizing: border-box;
  transition: 0.2s;
}

.checkbox-blue_01 + label .icon::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: '';
  display: block;
  height: 10px;
  left: 5px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
  transition: 0.2s;
}

.checkbox-blue_01:checked + label .icon::before{
  background: #007096;
  border: 2px solid #007096 !important;
}

.checkbox-blue_01:checked + label .icon::after {
  opacity: 1;
}

.checkbox-blue_01:focus + label .icon::before {
  border-color: #363636 !important;
}

.checkbox-blue_01:checked:focus + label .icon::before {
  border-color: #007096 !important;
}

.checkbox-blue_01 + label .icon:focus {
  outline: none;
}

.checkbox-blue_01:disabled + label .icon::before{
  opacity: .4;
}

.checkbox-blue_01:disabled + label .icon::after {
  opacity: .4;
}



/* checkbox-color */

.checkbox-color {
  opacity:0;
  position: absolute;
  z-index: -1;
}

.checkbox-color + label {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1.3;
  font-size: 13px;
  padding: 0 0 0 15px;
  position: relative;
  width: auto;
  z-index: 2;
}

.checkbox-color + label .color_name span{
  font-size: 11px;
}

.checkbox-color + label .color_img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: 36px auto;
  background-position: 2px 2px;
  background-repeat: no-repeat;
  background-color: #f4f4f4;
  margin-right: 5px;
  transition: 0.2s;
}

.checkbox-color:checked + label .color_img {
  background-color: #af272f;
}

.checkbox-color:checked + label .color_name {
  color: #af272f;
  font-weight: bold;
}


/* ラジオボタン */

/* radio-blue_01 */

input.radio-blue_01{
  display: none;
}

input.radio-blue_01[type=radio] + label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding: 0 0 0 26px;
  text-indent: -26px;
}

input.radio-blue_01[type=radio] + label .icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -3px;
  margin-right: 7px;
  vertical-align: middle;
}

input.radio-blue_01[type=radio] + label .icon::before {
  background: #fff;
  border: 2px solid #919191;
  border-radius: 50%;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
  box-sizing: border-box;
  transition: 0.2s;
}

input.radio-blue_01[type=radio]:checked + label .icon::after {
  background: #007096;
  border-radius: 50%;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0%, -50%);  
  -webkit-transform: translate(0%, -50%);  
  -ms-transform: translate(0%, -50%);  
  opacity: 0;
}

input.radio-blue_01[type=radio]:checked + label .icon::before {
  border: 2px solid #007096;
}

input.radio-blue_01[type=radio]:checked + label .icon::after {
  opacity: 1;
}



/* 製品情報 */

.product_info{
}

.product_info .product_name p,
p.product_name {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
}

.product_info .product_name p.product_type{
  display: flex;
  flex-wrap:wrap;
  font-size: 13px;
  line-height: 13px;
  color: #1b365d;
  margin-bottom: 0;
}

.product_info .product_name p.product_type span{
  display: block;
  white-space: nowrap;
  margin-bottom: 10px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #1b365d;
}

.product_info .product_name p.product_type span:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.product_info .product_detail {
  margin-bottom: 10px;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product_info .product_detail dt{
  clear: both;
  width: 82px;
  padding-bottom: 5px;
  word-break: break-all;
}

.product_info .product_detail dd{
  width: calc(100% - 103px);
  position: relative;
  padding-bottom: 5px;
  word-break: break-all;
}

.product_info .product_detail dd:before{
  content: "：";
  position: absolute;
  left: -13px;
  top: 0;
}

.product_info .product_detail dd span.selected{
  color: #af272f;
  font-weight: bold;
}

.product_info .product_color{
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 2px;
}

.product_info .product_color li{
  width: 32.9%;
  display: flex;
  align-items: center;
}

.product_info .product_color li img{
  width: 40px;
  margin-right: 5px;
  border: solid 2px #f4f4f4;
  border-radius: 50%;
}

.product_info .product_color li .before_empty {
  min-width: 40px;
  margin-right: 5px;
  border: solid 1px #ccc;
  border-radius: 50%;
  height: 40px;
}

.product_info .product_color li.selected img,
.product_info .product_color li.selected .before_empty{
  border: solid 2px #af272f !important;
}

.product_info .product_color li p{
  font-size: 13px;
  line-height: 1.3;
}

.product_info .product_color li.selected p{
  color: #af272f;
  font-weight: bold;
}



/* NEWアイコン */

.icon_new {
  padding: 3px 5px 2px;
  margin: 0 5px 0 0;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  overflow: hidden;
  color: #ff0000;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

table .icon_new {
  padding: 1px 4px !important;
  font-size: 10px;
  vertical-align: baseline;
  float: left;
}

.icon_new::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2.2s opacity ease-in-out;
  transition: .2.2s opacity ease-in-out;
}

.icon_new span {
  position: absolute;
}

.icon_new span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#ff0000));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #ff0000);
  -webkit-animation: 2.2s animateTop linear infinite;
    animation: 2.2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
  -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
  -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes animateTop {
  0% {
  -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
  -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.icon_new span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#ff0000));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #ff0000);
  -webkit-animation: 2.2s animateRight linear -1s infinite;
    animation: 2.2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
  -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
  -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animateRight {
  0% {
  -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
  -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.icon_new span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#ff0000));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #ff0000);
  -webkit-animation: 2.2s animateBottom linear infinite;
    animation: 2.2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
  -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
  -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animateBottom {
  0% {
  -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
  -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.icon_new span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#ff0000));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #ff0000);
  -webkit-animation: 2.2s animateLeft linear -1s infinite;
    animation: 2.2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
  -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
  -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animateLeft {
  0% {
  -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
  -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}



/* 廃番品アイコン */

.icon_discontinue {
  display: inline-block;
  width: 30px;
  margin-right: 5px;
}
.icon_discontinue img {
  vertical-align: baseline;
  width: 100%;
}

table .icon_discontinue {
  width: 27px;
  height: 16px;
  float: left;
}

table .icon_discontinue img {
  vertical-align: middle;
}



/*ページ送り*/

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0 60px;
}
  
.pagination li {
  margin: 0 7px;
  padding: 0;
  text-align: center;
  position: relative;
}

.pagination li:nth-child(2) {
  margin-right: 30px;
}
  
.pagination li:nth-last-child(2) {
  margin-left: 30px;
}
  
.pagination li a {
  display: block;
  color: #bdbdbd;
  text-decoration: none;
  font-weight: bold;
  width: 33px;
  height: 33px;
  line-height: 33px;
}
  
.pagination li a:hover {
  color: #000;
}
  
.pagination li.pre a,
.pagination li.next a {
  color: #fff;
  position: relative;
  background: #bdbdbd;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
  border-radius: 5px;
}
  
.pagination li a img {
  width: 13px;
  height: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -7px 0 0 -6px;
}
  
.pagination li a.active{
  color: #000;
  background: inherit;
  border-radius: 5px;
}




/*table*/

.sp_scroll_img {
  display: none;
}

table {
  width: 1100px;
  border-collapse: collapse;
  text-align: left;
}

table tr th:first-child {
  text-align: left;
}

table tr a {
  display: block;
  width: fit-content;
}

table th {
  border: 1px solid #cccccc;
  padding: 10px 20px;
  background: #eaeaea;
  font-weight: bold;
  box-sizing: border-box;
  vertical-align: top;
}

table td {
  border: 1px solid #cccccc;
  padding: 10px 20px;
  background: #ffffff;
  font-weight: 500;
  line-height: 1.7;
  vertical-align: top;
}

table td span {
  font-size: 13px;
  display: block;
}



/* [続きを見る] アコーディオン */

a.btn_viewmore {
  position: relative;
  width: 85px;
  height: 28px;
  font-size: 13px;
  line-height: 28px;
  margin: 10px 0 10px;

}



/*
SP
---------------------------------------------------------------------*/

@media only screen and ( max-width : 768px ) {


/* text */

.contents_box .result_title,
.result_title{
  font-size: calc(100vw / ( 375 / 16 ));
}

.result_txt {
  font-size: calc(100vw / ( 375 / 18 ));
  margin: 0 0 5%;
}

.result_txt span {
  font-size: calc(100vw / ( 375 / 25 ));
}

.result_txt span span {
  font-size: calc(100vw / ( 375 / 18 ));
}

.product_search_txt{
  font-size: calc(100vw / ( 375 / 16 ));
  margin: 0 auto 3%;
}

.product_search_word{
  font-size: calc(100vw / ( 375 / 17 ));
  margin: 0 auto 3%;
}

.txt_list_num{
  font-size: calc(100vw / ( 375 / 12 ));
}
  
.sp_scroll_img + .txt_list_num{
  margin: 10px 0;  
}

.contents_box h2 + .product_search_txt,
.contents_box h2 + .product_search_word{
  margin: 0 auto 5%;
}

.txt_note,
.txt_note14{
  font-size: calc(100vw / ( 375 / 12 )) !important;
  margin-top: 4%;
}


/* select_area text */

.select_area {
  margin-top: 0px;
  display: block;
}

.select_area select {
  width: 100%;
  height: 2.3em;
  padding: 0 20px 0 10px;
  border-radius: 5px;
  font-size: calc(100vw / ( 375 / 15 ));
  box-sizing: border-box;
  margin-bottom: 3%;
  border: 1px solid #919191;
}

.select_area .select_wrap::after {
  margin-top: -11px;
}

.select_area input[type="text"] {
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  height: 3em;
  margin-bottom: 3%;
}

.select_area .input_wrap::before {
  top: 24%;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_search_black.png") no-repeat left top;
  background-size: 20px auto;
}

.select_area button {
  width: 100%;
  background: none;
}

.select_area button a {
  width: 9.6em;
  height: 3em;
  line-height: 3;
  border-radius: 5px;
  padding: 0;
  font-size: calc(100vw / ( 375 / 15 ));
  margin: 0 auto;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
}

.select_area button a::before {
  margin: -2px 5px 0 -10px;
}

.select_area_txt {
  text-align: left;
  margin-top: 1.5em;
  font-size: calc(100vw / ( 375 / 12 ));
}



/* サジェスト */

.dropdown-content {
  margin-top: -9px;
  padding: 1em 1em 0;
  width: 100% !important;
  box-sizing: border-box;
}

.product-option {
  padding: 0 1em;
  column-gap: 1em;
  padding: 0 0 1em;
}
.product-list-text{
  font-size: calc(100vw / ( 375 / 13 ));
  line-height: 1.4;
}

.product-list-title{
  font-size: calc(100vw / ( 375 / 14 )) !important;
}



/* タブ */

.tab_wrap {
  width: 100%;
  margin: 7% 0 0;
  padding: 0;
}
  
.tab_wrap .sp_scroll_img img {
  width: 86%;
  margin: 0 auto;
}

.tab_scroll_wrap {
  overflow-x: scroll;
}
  
.tab_select {
  margin: 7% 0 0;
}
  
.contents_box .tab_select {
  margin: 7% -4% 0;
}
  
.tab_wrap.tab_over4 .tab_select {
  width: fit-content;
  margin: 3% 0 0;
}
  
.tab_wrap.tab_over4 .tab_select li {
  width: 28vw;
}

.tab_select span,
.tab_select a {
  font-size: calc(100vw / ( 375 / 13 ));
  height: 3.2em;
}

.tab_select li.active span,
.tab_select li.active a {
  height: 3.7em;
}



/* ボタン */

.btn_b {
  border-radius: 5px;
  box-sizing: border-box;
}

.btn_b--large,
.btn_b--medium{
  width: 100%;
  height: auto;
  line-height: 3.7;
  font-size: calc(100vw / ( 375 / 15 ));
}

.btn_b.btn_b--medium.icon_search{
  margin: 12% 0 0;
}

.btn_b--muted {
  min-width: 34vw;
  height: auto;
  padding: 0 4vw;
  line-height: 2.96;
  font-size: calc(100vw /(375 / 13));
}

.btn_line {
  font-size: calc(100vw /(375 / 15));
  border-radius: 6px;
  height: auto;
  line-height: 3.7;
}

.btn_w {
  border-radius: 5px;
}

.btn_w--medium {
  width: 42.6vw;
  height: auto;
  line-height: 2.37;
  font-size: calc(100vw /(375 / 15));
}

.icon_close::before {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  margin-top: -3px;
}

.icon_arrow_down {
  position: relative;
  padding-right: 11px;
}

.icon_arrow_down::before {
  width: 7px;
  height: 7px;
  right: 9px;
  margin-top: -7px;
  opacity: 1;
  position: absolute;
}


/* ボタンセット */

.product_search_footer_2btn {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.product_search_footer_2btn:after {
  content: "";
  display: block;
  clear: both;
}

.product_search_footer_2btn .left_btn {
  width: 100%;
  margin-bottom: 3%;
}

.product_search_footer_2btn .right_btn {
  width: 8em;
  height: auto;
  float: right;
}


.product_search_footer_2btn .left_btn a {
  width: 100%;
  margin-bottom: 3%;
}

.product_search_footer_2btn a.btn_conditions {
  font-size: calc(100vw / ( 375 / 13 ));
  height: auto;
  width: 100%;
  line-height: 3;
  padding-right: .8em;
}

.product_search_footer_2btn a.btn_conditions::before {
    right: 9px;
    margin-top: -8px;
}

.product_search_footer_2btn a.btn_close {
  font-size: calc(100vw / ( 375 / 13 ));
  height: auto;
  line-height: 3;
  width: 78%;
  margin: 0 0 0 auto;
}

.product_search_footer_2btn.product_search_footer_2btn--sp_parallel {
  display: flex;
  justify-content: space-between;
  column-gap: 0;
  margin-bottom: 0;
}

.product_search_footer_2btn.product_search_footer_2btn--sp_parallel::after {
  display: none;
}

.product_search_footer_2btn.product_search_footer_2btn--sp_parallel .left_btn {
  width: 68.2%;
  margin-bottom: 0;
}

.product_search_footer_2btn.product_search_footer_2btn--sp_parallel .left_btn a {
  margin-bottom: 0;
}

.product_search_footer_2btn.product_search_footer_2btn--sp_parallel .right_btn {
  width: 28.7%;
  padding-top: 2%;
}

.product_search_footer_2btn.product_search_footer_2btn--sp_parallel .right_btn a {
  width: 100%;
  line-height: 3.5;
}

  
.btn_title_r{
  width: auto;
  position: relative;
  margin: 10% 4% 0 0;
}

.btn_title_r .btn_b{
  line-height: 2.6em;
  font-size: calc(100vw / ( 375 / 13 ));
}

.btn_title_r .btn_line{
  width: 9em;
  line-height: 2.6em;
  font-size: calc(100vw / ( 375 / 13 ));
  height: 2.6em;
}
  
  
.icon_tool {
  column-gap: 1%;
  row-gap: 4px;
  margin-bottom: 7%;
}

.icon_tool li {
  width: 32.66%;
}

.icon_tool a,
.icon_tool span,
a.icon_tool{
  border-radius: 5px;
  font-size: calc(100vw / ( 375 / 14 ));
  padding: 0;
  line-height: 1.8;
}

a.icon_tool{
  width: 30%;
  margin-right: 3%;
}

.comparison_state{
  column-gap:3px;
  font-size: calc(100vw / ( 375 / 12 ));
  margin-bottom: 10px;
  flex-wrap: nowrap;
}

.comparison_state > p{
  white-space: nowrap;
}

.text_l {
  font-size: calc(100vw / ( 375 / 17 ));
}

.btn_compare {
  width: 6em;
  font-size: calc(100vw / ( 375 / 13 ));
  height: 2.8em;
  line-height: 2.8em;
  border-radius: 5px;
  text-align: center;
  margin: 0 5px 0 0;
}

.comparison_state_txt{
  display: block;
}

a.comparison_close {
  height: 29px;
  line-height: 29px;
  font-size: calc(100vw / ( 375 / 12 ));
  color: #007096;
}


/* チェックボックス */

/* checkbox-blue_01 */

.checkbox-blue_01 + label::before {
  border-radius: 4px;
}



/* checkbox-color */

.checkbox-color + label {
  font-size: calc(100vw / ( 375 / 14 ));
  padding: 0;
  width: 25%;
  text-align: center;
  flex-direction: column;
}

.checkbox-color + label > span.color_name{
  margin-bottom: 10px;
  display: block;
  flex-grow: 1;
}

.checkbox-color + label .color_name span{
  font-size: calc(100vw / ( 375 / 10 ));
}

.checkbox-color + label .color_img {
  width: 50px;
  height: 50px;
  background-size: 46px auto;
  margin: 0 auto;
}



/* ラジオボタン */

/* radio-blue_01 */

.radio-blue_01 {
  display: none;
}

input.radio-blue_01[type=radio] + label .icon {
  height: 18px;
  width: 18px;
}

input.radio-blue_01[type=radio]:checked + label .icon::after {
  width: 10px;
  height: 10px;
  left: 4px;
}


/* 製品情報 */


.product_info{
  width: auto;
}

.product_info .product_name p,
p.product_name {
  font-size: calc(100vw / ( 375 / 20 ));
}

.product_info .product_name p.product_type{
  font-size: calc(100vw / ( 375 / 11 ));
  line-height: 1.2;
  margin-bottom: 5px;
}

.product_info .product_name p.product_type span{
  margin-bottom: 5px;
}

  .product_info .product_detail {
    margin: 0 0 3%;
    clear: both;
    font-size: calc(100vw / ( 375 / 14 ));
  }

  .product_info .product_detail dt{
    width: 5.5em;
  }

  .product_info .product_detail dd{
    width: calc(100% - 6.5em);
  }

  .product_info .product_detail dd:before{
    content: "： ";
    position: absolute;
    left: -1em;
    top: 0;
  }

  .product_info .product_detail dd span.selected{
    color: #af272f;
    font-weight: bold;
  }

.product_info .product_color{
  margin: 0 0 5%;
  row-gap: 3px;
  column-gap: 1px;
}

.product_info .product_color li img{
  width: 40px;
  margin-right: 5px;
  border: solid 2px #f4f4f4;
  border-radius: 50%;
}

.product_info .product_color li p{
  font-size: calc(100vw / ( 375 / 11 ));
}



/*ページ送り*/

.pagination,
.product_list_detail_half + .pagination,
.product_list_detail + .pagination{
  margin: 12% 0 !important;
  flex-wrap: wrap;
  row-gap: 5px;
}
  
  
.pagination li {
  margin: 0 7px 0 0;
}
  
.pagination li:last-child {
  margin: 0;
}

.pagination li:nth-child(2) {
  margin-right: 10px;
}
  
.pagination li:nth-last-child(2) {
  margin-left: 3px;
}



/*table*/

.sp_scroll_img {
  display: block;
}

.sp_scroll_img img {
  display: block;
  width: 90%;
  margin: 0 5%;
}

.sp_scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.scroll-hint-icon {
  top: 80px !important;
}

table {
  font-size: calc(100vw / ( 375 / 14 ));
}

table th {
  padding: 0.7em 1.2em;
}

table td {
  padding: 0.7em 1.2em;
}

table td span {
  font-size: calc(100vw / ( 375 / 12 ));
}



/* [続きを見る] アコーディオン */

a.btn_viewmore {
  width: 6.5em;
  font-size: calc(100vw / ( 375 / 13 ));
  border-radius: 5px;
  height: auto;
  line-height: 2.15;
  height: auto;
  margin: 0.7em 0 0.7em;
}



}