@charset "UTF-8";
/*=======================================
	responsive
=======================================*/
/*=======================================
	responsive
=======================================*/
/* ----------------------

- メインコンテンツ部分
- サイドメニュー / メインコンテンツエリア指定
- アコーディオン (サイドメニュー)
- 検索エリア
- item_main (商品画像と名称のカラムセクション)
- テーブル
---------------------- */
:root {
  --main_color: #006DD9;
}

/*=======================================
　メインコンテンツ部分
=======================================*/
.product_main_contents {
  padding-top: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .product_main_contents {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .product_main_contents {
    margin-bottom: 50px;
  }
}
.product_main_contents .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .product_main_contents .content {
    gap: 20px;
  }
}

/*=======================================
　サイドメニュー / メインコンテンツエリア指定
=======================================*/
.leftBox {
  width: 270px;
}
@media screen and (max-width: 1200px) {
  .leftBox {
    width: 220px;
  }
}
@media screen and (max-width: 900px) {
  .leftBox {
    display: none;
  }
}

.rightBox {
  width: calc(100% - 270px - 60px);
}
@media screen and (max-width: 1200px) {
  .rightBox {
    width: calc(100% - 220px - 20px);
  }
}
@media screen and (max-width: 900px) {
  .rightBox {
    width: 100%;
  }
}

/*=======================================
　アコーディオン
=======================================*/
.accordions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.accordion {
  font-size: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #CFEEF8;
}
@media screen and (max-width: 768px) {
  .accordion {
    padding: 0;
  }
}
.accordion__question {
  position: relative;
  cursor: pointer;
}
.accordion__question::before, .accordion__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background-color: var(--main_color);
}
.accordion__question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion__ttl {
  color: var(--main_color);
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.accordion__ttl .img {
  width: 60px;
}
.accordion__ttl .main {
  width: calc(100% - 60px - 15px);
  padding: 0 10px 0 0;
}
.accordion__ttl .main a {
  position: relative;
  display: inline-block;
}
.accordion__ttl .main a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0, 1);
          transform: translateX(-50%) scale(0, 1);
  width: 100%;
  height: 1px;
  background-color: var(--main_color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion__ttl .main a:hover::before {
  -webkit-transform: translateX(-50%) scale(1, 1);
          transform: translateX(-50%) scale(1, 1);
}
.accordion__answer {
  padding-left: 75px;
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.accordion__answer li a {
  font-size: 13px;
}
.accordion__body {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion__non {
  cursor: auto;
}
.accordion__non::before, .accordion__non::after {
  display: none;
}

.accordion.open .accordion__question::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

/*=======================================
　検索エリア
=======================================*/
.search_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.search_ttl__icon {
  width: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search_ttl__text {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: 700;
}

.search_area {
  margin-bottom: 50px;
}
.search_area .input_box {
  margin-bottom: 17px;
}
.search_area .input_box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
}
.search_area .input_box form input {
  width: 100%;
  height: 35px;
  border: 1px solid #939393;
  border-radius: 4px;
  padding: 0px 13px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search_area .input_box form input::-webkit-input-placeholder {
  color: #BCBCBC;
}
.search_area .input_box form input::-moz-placeholder {
  color: #BCBCBC;
}
.search_area .input_box form input:-ms-input-placeholder {
  color: #BCBCBC;
}
.search_area .input_box form input::-ms-input-placeholder {
  color: #BCBCBC;
}
.search_area .input_box form input::placeholder {
  color: #BCBCBC;
}
.search_area .input_box form input:focus-visible {
  outline: none;
  border: 2px solid var(--main_color);
}
.search_area .input_box form .bt {
  width: 35px;
  height: 35px;
}
.search_area .input_box form .bt a {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: #00A3D9;
  position: relative;
}
.search_area .input_box form .bt a::after {
  content: "";
  background: url("../images/common/icon_search.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}
.search_area__more {
  color: #E54003;
  padding-left: 12px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.search_area__more a {
  position: relative;
}
.search_area__more a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #E54003;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.search_area__more a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.search_area__more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #E54003;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*=======================================
　item_main
=======================================*/
.item_main {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .item_main {
    margin-bottom: 60px;
  }
}
.item_main .clms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .item_main .clms {
    gap: 4.5vw;
  }
}
@media screen and (max-width: 900px) {
  .item_main .clms {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .item_main .clms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.item_main .clms .img {
  width: 394px;
  border: 1px solid #E9E9E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1400px) {
  .item_main .clms .img {
    width: 28.15vw;
  }
}
@media screen and (max-width: 900px) {
  .item_main .clms .img {
    width: auto;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .item_main .clms .img {
    margin: auto;
    max-width: 100%;
  }
}
.item_main .clms .txt_area {
  width: calc(100% - 394px - 64px);
}
@media screen and (max-width: 1400px) {
  .item_main .clms .txt_area {
    width: calc(100% - 28.15vw - 4.5vw);
  }
}
@media screen and (max-width: 900px) {
  .item_main .clms .txt_area {
    max-width: calc(100% - 350px - 4.5vw);
  }
}
@media screen and (max-width: 768px) {
  .item_main .clms .txt_area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: initial;
  }
}
.item_main .clms .txt_area .product_ttl__item {
  margin-bottom: 12px;
}
.item_main .clms .txt_area .item_quality {
  color: #E54003;
  font-size: 18px;
  padding-left: 15px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .item_main .clms .txt_area .item_quality {
    font-size: 1.5vw;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .item_main .clms .txt_area .item_quality {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.item_main .clms .txt_area .item_quality::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #E54003;
  position: absolute;
  left: 0;
  top: 0.9em;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.item_main .clms .txt_area .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.item_main .dl_group {
  font-size: 14px;
  margin-bottom: 83px;
}
.item_main .dl_group .plain {
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .item_main .dl_group .plain {
    margin-bottom: 12px;
  }
}
.item_main .dl_group__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .item_main .dl_group__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.item_main .dl_group__list a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #E54003;
  position: relative;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.item_main .dl_group__list a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E54003;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .item_main .dl_group__list a::before {
    bottom: -3px;
  }
}
.item_main .dl_group__list a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.item_main .dl_group__list span.sla {
  width: 6px;
  height: 14px;
  position: relative;
  margin-top: 3px;
}
.item_main .dl_group__list span.sla::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #E54003;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.item_main .dl_group__list .aro {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.item_main .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
.item_main .type__list {
  display: grid;
  padding: 21px 24px;
  background-color: #F5F5F5;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .item_main .type__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 16px;
    gap: 0px;
  }
}
.item_main .type__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .item_main .type__list li {
    padding: 18px;
  }
}
.item_main .type__list li:nth-child(2) {
  border-right: 1px solid var(--main_color);
  border-left: 1px solid var(--main_color);
}
@media screen and (max-width: 768px) {
  .item_main .type__list li:nth-child(2) {
    border-top: 1px solid var(--main_color);
    border-bottom: 1px solid var(--main_color);
    border-right: none;
    border-left: none;
  }
}
.item_main .type__tag {
  width: 120px;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  height: 35px;
  font-weight: 700;
  padding: 3px 12px 4px;
  background-color: #333;
  line-height: 1.4;
  border: 1px solid #707070;
  color: #fff;
  border-radius: 50px;
}
.item_main .type__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 35px - 12px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .item_main .type__text {
    font-size: 15px;
  }
}

/*=======================================
　テーブル
=======================================*/
.rightBox.table_cont {
  padding: 20px;
}

.table-wrap {
  overflow: auto;
}

.table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

table.specTb {
  margin-bottom: 50px;
  /* <table>タグ内の偶数行にスタイルを適用 */
}
table.specTb tr {
  border-top: 1px dotted #006DD9;
}
table.specTb tr:last-child {
  border-bottom: 1px dotted #006DD9;
}
table.specTb tr:nth-child(even) {
  background-color: #f1fafe;
}
table.specTb tr.en_white {
  background-color: #fff;
}
table.specTb tr.en_white th,
table.specTb tr.en_white td {
  background-color: #fff;
}
table.specTb tr.en_blue {
  background-color: #f1fafe;
}
table.specTb tr.en_blue th,
table.specTb tr.en_blue td {
  background-color: #f1fafe;
}
table.specTb tr td,
table.specTb tr th {
  padding: 10px;
  vertical-align: middle;
}
table.specTb tr th {
  color: var(--main_color);
  font-size: 15px;
  border-right: 1px solid var(--main_color);
  padding-left: 12px;
}
table.specTb tr th.cent {
  text-align: center;
}
table.specTb tr td {
  text-align: center;
  border-left: 1px dotted var(--main_color);
}
table.specTb tr td.non {
  background-color: #ececef;
  position: relative;
}
table.specTb tr td.non::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 25px;
  height: 2px;
  background-color: #939393;
}
@media screen and (max-width: 768px) {
  table.specTb tr td.non::before {
    width: 10px;
    height: 1px;
  }
}
table.specTb {
  /* caption */
}
table.specTb caption.bottom {
  caption-side: bottom;
  margin-top: 20px;
}

table.specTbl tr th {
  width: 26%;
}
table.specTbl tr td {
  width: 18.5%;
}

@media screen and (max-width: 768px) {
  table.specTb2 tr td,
  table.specTb2 tr th {
    padding: 5px;
  }
}
table.specTb2 tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  table.specTb2 tr th {
    width: 40%;
    font-size: 13px;
  }
}
table.specTb2 tr td {
  width: 70%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table.specTb2 tr td {
    width: 60%;
    font-size: 12px;
    text-align: left;
  }
}

table.specTb3 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  table.specTb3 {
    margin-bottom: 30px;
  }
}
table.specTb3.ch {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  table.specTb3 tr td,
  table.specTb3 tr th {
    padding: 5px;
  }
}
table.specTb3 tr th {
  width: calc(30% - 50px);
}
@media screen and (max-width: 768px) {
  table.specTb3 tr th {
    width: calc(40% - 30px);
    font-size: 13px;
  }
}
table.specTb3 tr td {
  width: 70%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table.specTb3 tr td {
    width: 60%;
    font-size: 12px;
    text-align: left;
  }
}
table.specTb3 tr td.table_ttl {
  width: 50px;
  background-color: var(--main_color);
}
@media screen and (max-width: 768px) {
  table.specTb3 tr td.table_ttl {
    width: 30px;
    padding: 15px 0;
  }
}
table.specTb3 tr td.table_ttl span {
  white-space: pre;
  color: #fff;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  width: 100%;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table.specTb3_1 tr th {
  width: 30%;
}
@media screen and (max-width: 768px) {
  table.specTb3_1 tr th {
    width: 40%;
    font-size: 13px;
  }
}
table.specTb3_1 tr td {
  width: 70%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table.specTb3_1 tr td {
    width: 60%;
    font-size: 12px;
    text-align: left;
  }
}
table.specTb3_1 tr td.table_ttl {
  width: 50px;
  background-color: var(--main_color);
  color: #fff;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  table.specTb3_1 tr td.table_ttl {
    width: 30px;
    padding: 15px 0;
    text-align: start;
  }
}

table.specTb3_2 tr td {
  text-align: left;
  width: 12%;
  line-height: 1.4;
}
table.specTb3_2 tr td:last-of-type {
  width: 46%;
}
table.specTb3_2 tr td.table_ttl {
  text-align: center;
}
table.specTb3_2 tr td span {
  display: block;
  font-size: 12px;
}

/* 見出し：上と左 横書き */
table.specTb3_3 tr td span {
  -webkit-writing-mode: horizontal-tb !important;
      -ms-writing-mode: lr-tb !important;
          writing-mode: horizontal-tb !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* th：width30% */
table.specTb3_4 tr th {
  width: 30%;
}

:root {
  --main_color: #006DD9;
}

body {
  overflow: visible;
}

/*=======================================
　base
=======================================*/
.anchor {
  padding-top: 170px;
  margin-top: -170px;
}

/*=======================================
　jump_list (ページ内リンクタブ)
=======================================*/
.jump_list {
  position: sticky;
  top: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 1px solid #939393;
  background-color: #fff;
  margin-bottom: 60px;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  .jump_list {
    top: 85px;
    height: 70px;
  }
}
.jump_list li {
  width: 100%;
  height: 66px;
}
@media screen and (max-width: 768px) {
  .jump_list li {
    height: 50px;
  }
}
.jump_list li:last-child a::before {
  display: none;
}
.jump_list li a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .jump_list li a {
    text-align: center;
    font-size: 12px;
    gap: 5px;
    line-height: 1.45;
  }
}
.jump_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background-color: #939393;
}
@media screen and (max-width: 768px) {
  .jump_list li a::before {
    height: 20px;
  }
}
.jump_list li a span.arrow {
  width: 6px;
  height: 6px;
  border-left: 2px solid #006DD9;
  border-top: 2px solid #006DD9;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media screen and (max-width: 768px) {
  .jump_list li a span.arrow {
    width: 4px;
    height: 4px;
    border-left: 1px solid #006DD9;
    border-top: 1px solid #006DD9;
  }
}
@media screen and (max-width: 768px) {
  .jump_list .dot {
    display: none;
  }
}

/*=======================================
　type
=======================================*/
.type {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .type {
    margin-bottom: 60px;
  }
}
.type .product_ttl__line {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .type .product_ttl__line {
    margin-bottom: 25px;
  }
}
.type__clm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 45px;
}
@media screen and (max-width: 768px) {
  .type__clm {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.type__clm .product_txt__has_bg {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .type__clm .product_txt__has_bg {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .type__clm .product_txt__has_bg {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.type__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #E9E9E9;
  margin-bottom: 30px;
  overflow: hidden;
}
.type__img img {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media screen and (max-width: 768px) {
  .type__img {
    max-width: 450px;
    margin: 0 auto 15px;
  }
}
.type__plain {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .type__plain {
    margin-bottom: 10px;
  }
}
.type__detail {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: var(--main_color);
  position: relative;
  padding-left: 19px;
}
@media screen and (max-width: 768px) {
  .type__detail {
    padding-left: 12px;
  }
}
.type__detail::before {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--main_color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .type__detail::before {
    width: 6px;
    height: 6px;
  }
}
.type__detail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5.7px;
  width: 100%;
  height: 1px;
  background: var(--main_color);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.type__link {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.type__link:hover {
  opacity: 1;
}
.type__link:hover .type__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.type__link:hover .type__detail::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}/*# sourceMappingURL=model_list.css.map */