@charset "UTF-8";
/*//////////////////// Layout ////////////////////*/
@media all and (max-width: 480px){
    .l-header [class^="share-links-"] {
        background-size: 32px;
        height: 32px;
        width: 32px;
    }
    .l-footer [class^="share-links-"] {
        border-radius: 0;
        background-size: 25px;
        background-position: center left 10px;
        padding-left: 45px;
        height: initial;
        width: initial;
    }
}

/**
 * PHPではstyle.cssで全体に適用していた設定
 * こちらで設定値を変更すると影響が大きくなりすぎるため限定的に設定
 */
.l-header h1,
.l-header h3 {
    line-height: 1.3;
}
@media all and (min-width: 481px) {
    .l-header * {
       font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
       line-height: 1.5;
    }
}

.l-header {
    position: relative;
    z-index: 999998;
}
.l-header a {
  color: #1F3641;
  font-weight: bold;
  font-size: 14px;
}
.l-header a:hover {
  color: #0055b8;
  text-decoration: none;
}
.l-header_top {
  background-color: #fff;
  box-shadow: 0px 3px 5px -3px #b8b8b8;
  position: relative;
  z-index: 999997;
}
.l-header_inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.l-header_title {
  margin-right: 30px;
  width: 100px
}
.l-header_title img {
  height: 100%;
  width: 100%;
}
/* 右側ボタン */
.l-header_btn i {
  color: #394C55;
  font-size: 25px;
}
.l-header_btn + .l-header_btn {
  margin-left: 20px;
}
.l-header_list_forum,
.l-header_btn-fv {
  position: relative;
}
.l-header_btn_count {
  background-color: #ee3440;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  height: 20px;
  position: absolute;
  right: -12px;
  top: -10px;
  width :20px;
}
.l-header_btn_count span {
  display: inline-block;
  left: 0;
  min-width: 100%;
  text-align:center;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.l-header_btn-inquiry {
  text-align: center;
  min-width: 110px;
}
.l-header_btn-inquiry a {
  background-color: #ea5633;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 5px 7px 5px;
}
.l-header_btn-inquiry a:hover {
  color: #fff;
  opacity: .7;
}
.l-header .c-moreBtn {
  font-weight: bold;
  text-align: right;
}
@media all and (min-width:481px) {
  .l-header_inner {
    max-width: 1200px;
    min-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding: 15px 10px;
  }
  .l-header_inner_left,
  .l-header_inner_right {
    align-items: center;
    display: flex;
  }
  .l-header_list {
    display: flex;
  }
  .l-header_list li a {
    font-size: 14px;
  }
  .l-header_list li + li {
    margin-left: 20px;
  }
  .l-header_btn_text {
    display: none;
  }
}
@media all and (max-width:480px) {
  .l-header {
    position: sticky;
    top: 0;
  }

  /**
   * 問い合わせ画面のヘッダー
   * ロゴ以外のメニューがないため高さの差分を調整
   */
  .l-header-inq .l-header_inner {
      height: 37px;
  }
  .l-header_top {
    padding: 12px 3%;
    width: 100%;
    min-width: 320px;
  }
  .l-header_title {
    width: 84px;
  }
}
/* ダウンメニュー共通 */
.l-header_down {
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0px 10px 10px -13px #b8b8b8;
  padding: 40px 10px;
  position: fixed;
  right: 0;
  top: -100%;
  transition: .5s;
  width: 100%;
  z-index: 999996;
}
.l-header_down.is-open {
  top: 73px; /* js制御 */
}
/* 印刷画面ではダウンメニュー非表示 */
@media print {
    .l-header_down {
        display: none;
    }
}
.l-header_down_inner {
  margin: 0 auto;
  max-width: 1060px;
  min-width: 1000px;
}
.l-header_down-flex .l-header_down_inner {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  min-width: 980px;
}
.l-header_down-flex_item {
  flex-shrink: 0;
  width: 47%;
}
@media all and (max-width:480px) {
  .l-header_down {
    height: calc(100% - 61px);
    padding: 20px 3%;
  }
  .l-header_down.is-open {
    top: 61px; /* js制御 */
  }
  .l-header_down_inner {
    width: 100%;
    min-width: 300px;
  }
  .l-header_down-flex .l-header_down_inner {
    display: block;
    width: 100%;
    min-width: 300px;
  }
  .l-header_down-flex_item {
    width: 100%;
  }
}
/* ダウンメニュー イベント情報 */
.l-header_down-event {
  overflow-x: hidden;
  overflow-y: scroll;
}
.l-header_event_list {
  display: flex;
  flex-wrap: wrap;
}
.l-header_event_list li a {
  display: block;
}
.l-header_event_list li img {
  height: auto;
  width: 100%;
}
@media all and (min-width:481px) {
  .l-header_down-event {
    border-bottom: solid 40px #fff;
    max-height: 75%;
    padding-bottom: 0;
  }
  .l-header_event_list {
    gap: 13px 1.3%;
  }
  .l-header_event_list li {
    width: 24%;
  }
}
@media all and (max-width:480px) {
  .l-header_down-event {
    opacity: 0;
    padding-bottom: 80px;
    pointer-events: none;
    top: 61px;
    z-index: 999997;
  }
  .l-header_down-event.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .l-header_event_list {
    justify-content: space-between;
  }
  .l-header_event_list li {
    width: 49%;
  }
  .l-header_event_list li:nth-child(n+3) {
    margin-top: 12px;
  }
  a.l-header_down-event_btn {
    background-color: #fff;
    border: solid 1px #0055b8;
    border-radius: 3px;
    bottom: 15px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .1);
    color: #0055b8;
    display: block;
    font-size: 16px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    padding: 13px 0;
    position: fixed;
    text-align: center;
    width: 94%;
  }
  a.l-header_down-event_btn::after {
    content: "×";
    font-size: 1.2em;
    margin-left: 5px;
  }
}
/* ダウンメニュー 見つける */
.l-header_form {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.l-header_form button {
  background: none;
  border: 0;
  outline: 0;
  padding: 0;
}
.l-header_form a {
  color: #1f3641;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
}
.l-header_history_title {
  align-items: center;
  border-bottom: 2px solid #c9c9c9;
  color: #1f3641;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  justify-content: space-between;
  padding-bottom: 10px;
}
.l-header_history_title i {
  color: #1f3641;
  font-size: 1.2em;
  margin-right: 15px;
}
.l-header_history_text {
  color: #777;
  font-size: 14px;
  margin-top: 10px;
}
.l-header_history_list {
  margin-top: 10px;
}
.l-header_history_list p {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  line-height: 1.5;
  margin-top: 10px;
}
.l-header_history_list a {
  color: #12c;
}
.l-header_history_list i {
  color: #666;
  font-size: 1.2em;
  margin-right: 15px;
}
@media all and (max-width:480px) {
  .l-header_history {
    margin-top: 15px;
  }
}
/* ダウンメニュー もっと見る */
.l-header_more {
  display: flex;
  justify-content: space-between;
}
.l-header_more a {
  font-weight: normal;
  line-height: 2;
}
.l-header_more > li {
  width: 31%;
}
.l-header_more_title {
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9c9c9;
  margin-bottom: 10px;
}
/* SPメニュー js-menu */
@media all and (max-width:480px) {
  .l-header_nav a {
    font-size: 16px;
  }
  .l-header_menu {
    position: fixed;
    right: -100%;
    top: 60px;
    transition: .5s;
    background-color: #fff;
    border-top: 1px solid #aaa;
    overflow-y: scroll;
    padding: 0 3%;
    width: 100%;
  }
  .l-header_menu.is-open {
    right: 0;
  }
  .l-header_list-subList a,
  .l-header_list-sub a {
    font-size: 14px;
  }
  .l-header_list_item a {
    border-bottom: 1px solid #c9c9c9;
    display: flex;
    justify-content: space-between;
    line-height: 1;
    padding: 13px 15px 13px 0;
  }
  .l-header_list-subList a {
    background-color: #f5f5f5;
    padding-left: 12px;
    padding-right: 15px;
  }
  .l-header_list_item a::after {
    align-self: center;
    border-bottom: solid 3px #0055b8;
    border-right: solid 3px #0055b8;
    content: '';
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
  }
  .l-header_list-subList a::after {
    border-bottom: solid 3px #1F3641;
    border-right: solid 3px #1F3641;
  }
  .l-header_list_item-hasChildren > a::after {
    margin-right: -3px;
    transform: rotate(45deg);
    transition: .5s;
  }
  /* ログイン～会社情報 */
  .l-header_list-sub {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 0;
  }
  .l-header_list_item-sub {
    display: inline-block;
    min-width: 160px;
    width: 50%;
  }
  .l-header_list_item-sub a {
    font-weight: normal;
    line-height: 2;
  }
  /* ヘッダー sns */
  .l-header_list-sns {
    background-color: #f5f5f5;
    margin: 0 -3%;
    overflow-x: scroll;
    padding: 10px 10px;
    text-align: center;
    white-space: nowrap;
  }
  .l-header_list-sns li {
    display: inline-block;
    margin: 0 3px;
  }
  /* ヘッダー右上 */
  .l-header_inner_right {
    align-items: center;
    display: flex;
    float: right;
    height: 100%;
  }
  .l-header_inner_right a {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .l-header_btn + .l-header_btn {
    margin-left: 5px;
  }
  .l-header_btn i {
    font-size: 23px;
  }
  .l-header_btn_text {
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    margin-top: 4px;
    text-align: center;
  }
  .l-header_btn-menu {
    width: 40px;
  }
  .l-header_btn-menu svg {
    width: 23px;
    height: 23px;
    cursor: pointer;
    display: block;
    top: 15px;
    right: 50px;
    margin: 0 auto;
  }
  .l-header_btn-menu g {
    transition: 0.5s;
  }
  .l-header_btn-menu line {
    fill: #000;
    stroke: #000;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    transition: 0.5s;
  }
  .l-header_btn-menu.is-open .bar1 {
    transform: translate(17px, 2px) rotate(45deg);
  }
  .l-header_btn-menu.is-open .bar2 {
    opacity: 0;
  }
  .l-header_btn-menu.is-open .bar3 {
    transform: translate(-26px, 16px) rotate(-45deg);
  }
  .l-header_btn-menu .l-header_btn_text .menu {
    display: block;
  }
  .l-header_btn-menu .l-header_btn_text .close {
    display: none;
  }
  .l-header_btn-menu.is-open .l-header_btn_text .menu {
    display: none;
  }
  .l-header_btn-menu.is-open .l-header_btn_text .close {
    display: block;
  }
  .js-header_hidebtn.is-hide {
    visibility: hidden;
  }
}
/* フッター */
.l-footer {
  background-color: #0055B8;
  color: #fff;
  font-size: 14px;
}
.l-footer a,
.l-footer_list h4 {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}
.l-footer_list h4 span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 0;
}
.l-footer_inner {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 1000px;
  padding: 0 10px;
}
.l-footer_link {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.l-footer_link > li {
  width: 31%;
}
.l-footer_modalTrigger .c-moreBtn {
  display: inline-block;
  margin-top: 0;
}
.l-footer_modalTrigger .c-moreBtn + .c-moreBtn {
  margin-left: 20px;
}
.l-footer_modalTrigger .c-moreBtn a {
  font-size: 16px;
  font-weight: bold;
}
.l-footer_modalContent {
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  color: #1F3641;
  display: none;
  left: 50%;
  max-width: 1200px;
  padding: 50px;
  top: 50%;
  transform: translate(-50%, -50%);
  position:fixed;
  width: 95%;
  z-index: 1000000;
}
[class*="js-modalC"].is-open {
  display: block;
}
.l-footer_modalContent a {
  color: #1F3641;
}
.l-footer_modalContent a:hover {
  color: #0055b8;
}
.l-footer_modalContent_title {
  border-bottom: 2px solid;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
.l-footer_modalList_item {
  margin-top: 20px;
}
.l-footer_title {
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}
.l-footer_sns {
  color: #1f3641;
  display: flex;
  flex-wrap: wrap;
}
.l-footer_sns_item {
  display: flex;
}
.l-footer_sns_item_sec {
  align-items: center;
  display: flex;
  margin: 20px 20px 0 0;
}
.l-footer_snsList {
  align-items: center;
  display: flex;
}
.l-footer_snsList > li {
  margin-left: 20px;
}
.l-footer_under > ul > li {
  display: inline-block;
  margin-right: 5px
}
.l-footer_under > ul > li > a {
  line-height: 2;
}
@media all and (min-width:481px) {
  .l-footer_topWrap {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .l-footer_snsWrap {
    background-color: #f5f5f5;
    padding-bottom: 40px;
    padding-top: 20px;
  }
  .l-footer_underWrap {
    background-color: #333;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .l-footer_link .l-footer_list {
    line-height: 2;
  }
  .l-footer_link .l-footer_list {
    margin-top: 10px;
  }
  .l-footer_list-narrow {
    width: 230px;
  }
  .l-footer_list > li {
    display: inline-block;
    margin-right: 10px;
    white-space: nowrap;
  }
  .l-footer_under {
    align-items: center;
    flex-direction: row-reverse;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
  }
  .l-footer_under > ul > li > a {
    font-size: 12px;
  }
  .l-footer_copy {
    flex-shrink: 0;
    margin-right: 10px;
  }
}
@media all and (max-width:480px) {
  .l-footer {
    padding: 0 3% 10px;
  }
  .l-footer a:hover {
    text-decoration: none;
  }
  .l-footer_inner {
    padding: 0;
    min-width: auto;
    width: 100%;
  }
  .l-footer_title {
    border: 0;
    color: #fff000;
    margin-top: 16px;
    padding: 0;
  }
  .l-footer_list_item a {
    border-bottom: 2px solid #fff;
    display: flex;
    justify-content: space-between;
    line-height: 1;
    padding: 13px 15px 13px 0;
  }
  .l-footer_list-subList a {
    border-bottom: 1px solid #bfbfbf;
    background-color: #f5f5f5;
    color: #1F3641;
    padding-left: 12px;
    padding-right: 15px;
  }
  .l-footer_list_item a::after {
    align-self: center;
    border-bottom: solid 3px #fff;
    border-right: solid 3px #fff;
    content: '';
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
  }
  .l-footer_list-subList a::after {
    border-bottom: solid 3px #1F3641;
    border-right: solid 3px #1F3641;
  }
  .l-footer_list_item-hasChildren > a::after {
    margin-right: -3px;
    transform: rotate(45deg);
    transition: .5s;
  }
  .l-footer_topWrap {
    background-color: #f5f5f5;
    margin: 0 calc(-3% - 1px);
  }
  .l-footer_topWrap .l-footer_title {
    color: #1F3641;
    margin-top: 0;
    padding: 13px;
  }
  .l-footer_topWrap .l-footer_list_item h4 > a,
  .l-footer_topWrap .l-footer_list_item h4 > span,
  .l-footer_topWrap .l-footer_list-subList a {
    align-items: baseline;
    border: 0;
    border-top: 1px solid #bfbfbf;
    color: #1F3641;
    padding: 13px 3%;
  }
  .l-footer_topWrap .l-footer_list_item h4 > span {
    display: block;
  }
  .l-footer_topWrap .l-footer_list_item:first-of-type h4 a,
  .l-footer_topWrap .l-footer_list-subList li:first-of-type a {
    border-top: 0;
  }
  .l-footer_topWrap .l-footer_list_item a::after {
    display: none;
  }
  .l-footer_topWrap .l-footer_list_item h4 a span,
  .l-footer_topWrap .l-footer_list-subList a span {
    font-size: 0.8em;
  }
  .l-footer_topWrap .l-footer_list-subList {
    border-top: 1px solid #bfbfbf;
    padding-left: 3%;
  }
  .l-footer_topWrap .l-footer_list-subList-noindent {
    border-top: 0;
    border-bottom: 1px solid #bfbfbf;
    padding-left: 0;
  }
  .l-footer_under > ul {
    margin-top: 30px;
  }
  .l-footer_under > ul > li {
    margin-right: 10px;
  }
  .l-footer_copy {
    text-align: center;
    margin-top: 20px;
  }
}
/*//////////////////// project ////////////////////*/
/* ダウンメニュー 店舗を探す */
.p-areForm_select {
  position: relative;
  margin-top: 20px;
}
.p-areForm_select select {
  appearance: none;
  padding: 10px 20px;
  width: 100%;
}
.p-areForm_select::after {
  align-self: center;
  border-bottom: solid 3px #1f3641;
  border-right: solid 3px #1f3641;
  content: '';
  height: 9px;
  display: inline-block;
  position: absolute;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
  width: 9px;
}
.p-areForm_select select:hover {
  cursor: pointer;
}
.p-areForm_list {
  height: 250px;
  margin-top: 20px;
  padding-right: 5px;
}
.p-areForm_list li {
  align-items: center;
  border-bottom: 2px solid #c9c9c9;
  display: none;
  justify-content: space-between;
  padding: 10px 0;
}
.p-areForm_list li.is-visible {
  display: flex;
}
.p-areForm_list li dt {
  font-size: 14px;
  font-weight: bold;
}
.p-areForm_list li dd {
  font-size: 12px;
}
.p-areForm_list_btn {
  flex-shrink: 0;
  margin-left: 10px;
}
.p-areForm_list_btn a {
  border: 2px solid #0055b8;
  border-radius: 3px;
  color: #0055b8;
  display: inline-block;
  padding: 4px 10px 2px;
}
.p-areForm_list_btn a:hover {
  opacity: .7;
}
.p-areForm_list_btn a.map {
  color: #1F3641;
  border: 2px solid #1F3641;
  margin-left: 10px;
}
.p-areForm_list_btn a.map:hover {
  color: #1F3641;
}
li[data-name="FLEX Automotive San Diego"] .p-areForm_list_btn .map {
  display: none;
}
/* TOP検索フォーム */
.p-homeForm {
  box-sizing: border-box;
  border: 1px solid #333;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.p-homeForm a:hover {
  text-decoration: none;
}
.p-homeForm input[type="text"] {
  border: 0;
  font-size: 16px;
  padding: 15px 5px 15px 15px;
  width: 100%;
}
.p-homeForm input[type="text"]:focus {
  outline: 0;
}
.p-homeForm button {
  background-color: transparent;
  border: 0;
  outline : 0;
}
.p-homeForm button[type="submit"] {
  padding: 0 15px 0 15px;
}
.p-homeForm button[type="submit"]:hover {
  cursor: pointer;
}
.p-homeForm a.js-formClear {
  align-items: center;
  color: #909090;
  font-size: 1.8em;
  display: none;
  padding: 0 15px 0 5px;
}
.p-homeForm a.js-formClear.is-visible {
  display: flex;
}
/* TOP人気のキーワードから探す */
.p-keywordList {
  display: flex;
}
.p-keywordList a {
  background-color: #ecf5fc;
  border-radius: 3px;
  color: #1f3641;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 7px 15px;
  white-space: nowrap;
}
.p-keywordList a:hover {
  color: #0055b8;
  text-decoration: none;
}
.p-keywordList h4 + h4 {
  margin-left: 12px;
}
/*//////////////////// 問い合わせ画面ヘッダー ////////////////////*/
#hdnavg {
    background-color: #fff;
    box-shadow: 0px 3px 5px -3px #b8b8b8;
}
#hdwrpbox {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  clear: both;
  padding: 14px 0 11px 0;
}
#hdlbox {
  float: left;
  width: 780px;
}
#logobox {
  float: left;
  width: 100px;
}

#logobox img {
  width: 100%;
  height: 100%;
}
/*//////////////////// FLEXフォーラム ////////////////////*/
.l-header_btn_count {
    background-color: #ee3440;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    height: 20px;
    position: absolute;
    right: -15px;
    top: -12px;
    width :20px;
}
.l-header_btn-fv .l-header_btn_count {
    right: -12px;
    top: -10px;
}
.l-header_btn_count span {
    display: inline-block;
    left: 0;
    min-width: 100%;
    text-align:center;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
