/*-------------------------------------------------------------------
tekigou.css
適合表
-------------------------------------------------------------------*/

@charset "utf-8";


:root {
  --my-color-kokusan-dark: #0E6314;	/* 濃緑（国産車用） */
  --my-color-kokusan-thin: #AEF3B3;	/* 薄緑（国産車用） */
  --my-color-import-dark: #1944A8;	/* 濃青（国産車用） */
  --my-color-import-thin: #C9D7F7;	/* 薄青（国産車用） */
}

/*  */
.txtcenter {
  text-align: center;
}

.txtright {
  text-align: right;
}

/* 適合情報タイトル（共通） */
.tekigo_title .heading {
  overflow: hidden;
  align-items: center;
/*  background: #0E6314;*/
  color: #fff;
  height: 40px;
  line-height: 40px;
  display: flex;
  margin: 0 0 10px 0;
}
.tekigo_title .heading:before,
.tekigo_title .heading:after {
  content: "";
  flex: 1;
  background: #fff;
  padding: 3px 0;
  height: 0;
  transform: rotate(45deg);
}
/* IE11のみ */
*::-ms-backdrop, .tekigo_title .heading
{
  color: #000;
}
/* Edge 1 */
@supports (-ms-ime-align: auto) {
  .tekigo_title .heading {
        color: #fff;
  }
}
/* Edge 2 */
_:-ms-lang(x)::backdrop, .tekigo_title .heading {
        color: #fff;
}
/*
@supports (-ms-ime-align: auto) and (not (-webkit-text-stroke: initial)) {
  .tekigo_title .heading {
        color: #fff;
  }
}
*/


/* 適合情報タイトル（国産車） */
.tekigo_title .heading.head_kokusan{
  background: var(--my-color-kokusan-dark);
}
/* 適合情報タイトル（輸入車） */
.tekigo_title .heading.head_import{
  background: var(--my-color-import-dark);
}


/* 適合情報注意書き */
.tekigo_note {
  font-size: 16px;
  font-weight:bold;
  color: #FF0000;
  /*text-align: center;*/
}

.tekigo_notesub {
  font-size: 12px;
  color: #FF0000;
  /*text-align: center;*/
}

/* 適合情報検索フォーム[テーブル]（共通） */
.tekigo_tbl {
  width: 100%;
/*  border-color: #0E6314;*/
  border-style: solid;
  border-width:2px;
  border-collapse: collapse;
  border-spacing: 0;
}
/* 適合情報検索フォーム[テーブル]（国産車） */
.tekigo_tbl.tbl_kokusan {
  border-color: var(--my-color-kokusan-dark);
}
/* 適合情報検索フォーム[テーブル]（輸入車） */
.tekigo_tbl.tbl_import {
  border-color: var(--my-color-import-dark);
}

/* 適合情報検索フォーム[項目]（共通） */
.tekigo_item {
  font-size: 15px;
  /*border-color: #0E6314;*/
  border-style: solid;
  border-width:1px;
  /*background-color: #AEF3B3;*/
  text-align: center;
  vertical-align: middle;
  /*color: #0E6314;*/
  font-weight:bold;
  padding:10px;
}
/* 適合情報検索フォーム[項目]（国産車） */
.tekigo_item.item_kokusan {
  border-color: var(--my-color-kokusan-dark);
  background-color: var(--my-color-kokusan-thin);
  color: var(--my-color-kokusan-dark);
}
/* 適合情報検索フォーム[項目]（輸入車） */
.tekigo_item.item_import {
  border-color: var(--my-color-import-dark);
  background-color: var(--my-color-import-thin);
  color: var(--my-color-import-dark);
}


/* 適合情報検索フォーム[値]（共通） */
.tekigo_value {
  /*height: 18px;*/
  /*border-color: #0E6314;*/
  border-style: solid;
  border-width:1px;
  /*text-align: center;*/
  vertical-align: middle;
  padding:10px;
}
/* 適合情報検索フォーム[値]（国産車） */
.tekigo_value.value_kokusan {
  border-color: var(--my-color-kokusan-dark);
}
/* 適合情報検索フォーム[値]（輸入車） */
.tekigo_value.value_import {
  border-color: var(--my-color-import-dark);
}

/* 適合情報検索フォーム[値][必須オプション欄] */
.tekigo_option {
  font-size: 13px;
}


/* メーカー／車種／年式型式コンボボックス（共通） */
.cmb_tekigo {
  overflow: hidden;
  width: 90%;
  margin: 10px auto;
  text-align: center;
  font-size: 14px;
}
.cmb_tekigo select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.cmb_tekigo select::-ms-expand {
  display: none;
}

/* メーカー／車種／年式型式コンボボックス（国産車） */
.cmb_tekigo.teki_sl_kokusan {
  position: relative;
  border-radius: 2px;
  border: 2px solid var(--my-color-kokusan-dark);
  background: #ffffff;
}
.cmb_tekigo.teki_sl_kokusan::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--my-color-kokusan-dark);
  pointer-events: none;
}
.cmb_tekigo.teki_sl_kokusan select {
  padding: 8px 38px 8px 8px;
  color: var(--my-color-kokusan-dark);
}

/* メーカー／車種／年式型式コンボボックス（輸入車） */
.cmb_tekigo.teki_sl_import {
  position: relative;
  border-radius: 2px;
  border: 2px solid var(--my-color-import-dark);
  background: #ffffff;
}
.cmb_tekigo.teki_sl_import::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--my-color-import-dark);
  pointer-events: none;
}
.cmb_tekigo.teki_sl_import select {
  padding: 8px 38px 8px 8px;
  color: var(--my-color-import-dark);
}


/* 表示ボタン（共通） */
.btn-tekigodisp {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  text-decoration: none;
  /*border-color: #0E6314;*/
  /*color: #0E6314;*/
  border-style: solid;
  border-width:2px;
  /*background: #AEF3B3;*/
  font-size: 14px;
  font-weight: bold;
}
/* 表示ボタン（国産車） */
.btn-tekigodisp.btn_kokusan {
  color: var(--my-color-kokusan-dark);
  border-color: var(--my-color-kokusan-dark);
  background: var(--my-color-kokusan-thin);
}
/* 表示ボタン（輸入車） */
.btn-tekigodisp.btn_import {
  color: var(--my-color-import-dark);
  border-color: var(--my-color-import-dark);
  background: var(--my-color-import-thin);
}


.tekigo_midasi_kokusan {
  position: relative;
  background: var(--my-color-kokusan-thin);
  padding: 0.5em 1em;
  /*padding: 0.25em 0.5em;*/
  border-left: solid 2em var(--my-color-kokusan-dark);

  font-size: 20px;
  font-weight:bold;
  color: var(--my-color-kokusan-dark);

  margin: 20px 0;
  vertical-align: middle;
}

.tekigo_midasi_kokusan:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a6";
  position: absolute;
  padding: 0em;
  color: white;
  font-weight: normal;
  left: -1.5em;
  /*left: -1.35em;*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tekigo_midasi_import {
  position: relative;
  background: var(--my-color-import-thin);
  padding: 0.5em 1em;
  /*padding: 0.25em 0.5em;*/
  border-left: solid 2em var(--my-color-import-dark);

  font-size: 20px;
  font-weight:bold;
  color: var(--my-color-import-dark);

  margin: 20px 0;
  vertical-align: middle;
}

.tekigo_midasi_import:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a6";
  position: absolute;
  padding: 0em;
  color: white;
  font-weight: normal;
  left: -1.5em;
  /*left: -1.35em;*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


/* ラベリングボタン */
.diybutton {
/*    text-align: center;*/
}

.diybutton div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(7px);
    width: 230px;
    margin: 0 auto;
    padding: .2em 0;
    border: 2px solid #d44114;
    border-radius: 10px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
    background-color: #d44114;
    color: #fff;
    font-size: .9em;
    font-weight: 600;
}

.diybutton div::before,
.diybutton div::after {
    position: absolute;
    top: 100%;
    content: '';
    clip-path: polygon(0 0, 100% 0%, 50% 100%);  /* 左上頂点,右上頂点,下頂点 */
}


.diybutton div::before {
    width: 16px;
    height: 8px;
    background-color: #d44114;
}

.diybutton div::after {
    width: 12px;
    height: 6px;
    background-color: #d44114;
}

.diybutton button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin: 0 auto;
    padding: 1em 2em;
/*    border: none;*/
    border: 2px solid var(--my-color-kokusan-dark);
    border-radius: 5px;
    background-color: var(--my-color-kokusan-thin);
    color: var(--my-color-kokusan-dark);
    font-weight: 600;
    font-size: 1em;
}

.diybutton button:hover {
    color: #fff;
    background-color: var(--my-color-kokusan-dark);
    cursor: pointer;
}

.diybutton a {
  text-decoration: none;
  color : inherit;
}



/* フレーム設定 */
/* 上フレーム */
#frmTop {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 205px;
  text-align: center;
}
/* 下フレーム */
#frmBottom {
  position: absolute;
  top: 205px;
  width: 100%;
  height: 100%;
  text-align: center;
  border-top: 2px solid #ccc;
}

iframe {
  border: none;
  height: 100%;
  width: 100%;
}
