@charset "UTF-8";
/*=========================================================================
//
// フォント関連の設定値
//
==========================================================================*/
/*=========================================================================
//
// 余白関連の設定値
//
==========================================================================*/
/*=========================================================================
//
// Base
//
==========================================================================*/
/*-------------------------------------------------------------------------
 [Base] base setting
--------------------------------------------------------------------------*/
html, body {
  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  height: 100%;
}

body, input, textarea, select, option, button {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  font-style: normal;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

svg, img, embed, object {
  width: 100%;
  height: auto;
}

/*=========================================================================
//
// Layout
//
==========================================================================*/
/*-------------------------------------------------------------------------
 scroll top
--------------------------------------------------------------------------*/
.scroll_top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  z-index: 9996;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .scroll_top {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}
.scroll_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EC6C00;
  color: #fff;
  height: 100%;
}
.scroll_top a:hover {
  opacity: 0.7;
  color: #fff;
}
.scroll_top a::before {
  font-family: "FontAwesome";
  content: "\f106";
  font-weight: 400;
  line-height: 1;
  font-size: 32px;
}
.scroll_top.up_move {
  animation: UpAnime 0.5s forwards;
}
.scroll_top.down_move {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*-------------------------------------------------------------------------
 intro
--------------------------------------------------------------------------*/
.intro {
  max-width: calc(1240px + 40px * 2);
  width: 100%;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .intro {
    padding: 60px 20px;
  }
}
.intro .lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}

/*-------------------------------------------------------------------------
 section
--------------------------------------------------------------------------*/
section {
  padding: 130px 40px;
}
@media screen and (max-width: 1180px) {
  section {
    padding: 100px 20px;
  }
}
@media screen and (max-width: 1180px) {
  section {
    padding: 80px 20px;
  }
}
section:nth-of-type(odd), section.bg_gray {
  background-color: #f5f5f5;
}
section:nth-of-type(even), section.bg_white {
  margin: 130px 0;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
}
@media screen and (max-width: 1180px) {
  section:nth-of-type(even), section.bg_white {
    margin: 100px 0;
  }
}
@media screen and (max-width: 1180px) {
  section:nth-of-type(even), section.bg_white {
    margin: 80px 0;
  }
}
section .section_inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

/* section title
----------------------------------------------------------- */
.section_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 55px;
}
@media screen and (max-width: 640px) {
  .section_title {
    margin-bottom: 30px;
  }
}
.section_title::after {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  background-color: #EC6C00;
  margin-top: 10px;
}

.section_content_block h3, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3 {
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px solid #333;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .section_content_block h3, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3 {
    margin-bottom: 30px;
  }
}
.section_content_block h3.deco_icon, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3.deco_icon {
  border-bottom: none;
  padding: 0;
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .section_content_block h3.deco_icon, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3.deco_icon {
    margin-top: 60px;
  }
}
.section_content_block h3.deco_icon .icon, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3.deco_icon .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
}
.section_content_block h3.deco_icon .icon_bg_maincolor, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3.deco_icon .icon_bg_maincolor {
  background-color: #EC6C00;
}
.section_content_block h3.no_decoration, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h3.no_decoration {
  border-bottom: none;
}
.section_content_block h4, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h4 {
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 1180px) {
  .section_content_block h4, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h4 {
    margin-top: 60px;
  }
}
.section_content_block h4::after, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) h4::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background-color: #cbcbcb;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -10px;
  left: 0;
  margin: 0 auto;
}

/* section content
----------------------------------------------------------- */
.section_contents .section_content_block, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 1180px) {
  .section_contents .section_content_block, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .section_contents .section_content_block, .section_contents .section_content_block .section_content_detail_block_wrap:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.section_contents .section_content_block:last-child, .section_contents .section_content_block .section_content_detail_block_wrap:last-child:not(:last-of-type) {
  margin-bottom: 0;
}
.section_content_img_column {
  margin-top: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .section_content_img_column {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

.section_content_txt {
  margin-bottom: 60px;
}

.section_content_detail_img_column {
  margin-top: 70px;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_img_column {
    width: 80%;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .section_content_detail_img_column {
    width: 100%;
    margin-top: 30px;
  }
}
.section_content_detail_img_column .section_content_detail_img:not(:first-child) {
  margin-top: 20px;
}

.section_content_detail_txt {
  margin-top: 60px;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_txt {
    width: 80%;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .section_content_detail_txt {
    width: 100%;
    margin-top: 30px;
  }
}

.section_content_detail_link_wrap {
  margin-top: 40px;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_link_wrap {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .section_content_detail_link_wrap {
    margin-top: 15px;
  }
}

.section_content_detail_enclosure_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .section_content_detail_enclosure_wrap {
    margin-top: 30px;
  }
}

.section_content_detail_note {
  margin-top: 20px;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_note {
    margin-top: 10px;
  }
}

.section_content_detail_columnbox_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_columnbox_wrap {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .section_content_detail_columnbox_wrap {
    margin-top: 30px;
  }
}

.section_content_detail_2columns {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .section_content_detail_2columns {
    flex-direction: column;
    margin-top: 30px;
  }
}
.section_content_detail_2columns.column_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .section_content_detail_2columns.column_reverse {
    flex-direction: column;
  }
}
.section_content_detail_2columns .section_content_detail_img {
  max-width: 400px;
  width: 40%;
}
@media screen and (max-width: 640px) {
  .section_content_detail_2columns .section_content_detail_img {
    width: 80%;
    margin: 0 auto;
  }
}
.section_content_detail_2columns .section_content_detail_txt {
  margin-top: 0;
  max-width: 526px;
  width: 60%;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .section_content_detail_2columns .section_content_detail_txt {
    width: 100%;
    padding-right: 0;
  }
}
.section_content_detail_2columns .section_content_detail_txt p + p {
  margin-top: 1em;
}

/* section lead
----------------------------------------------------------- */
.section_lead {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}

/* columnbox
----------------------------------------------------------- */
.columnbox_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 1180px) {
  .columnbox_list {
    margin: 0 -8px;
  }
}
@media screen and (max-width: 640px) {
  .columnbox_list {
    flex-direction: column;
  }
}
.columnbox_list.row1 > li {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .columnbox_list.row1 > li {
    width: 100%;
  }
}
.columnbox_list.row2 > li {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .columnbox_list.row2 > li {
    width: 100%;
  }
}
.columnbox_list.row3 > li {
  width: 33.3333333333%;
}
@media screen and (max-width: 640px) {
  .columnbox_list.row3 > li {
    width: 100%;
  }
}
.columnbox_list.row4 > li {
  width: 25%;
}
@media screen and (max-width: 640px) {
  .columnbox_list.row4 > li {
    width: 100%;
  }
}
.columnbox_list > li {
  padding: 10px;
}
@media screen and (max-width: 1180px) {
  .columnbox_list > li {
    padding: 8px;
  }
}
@media screen and (max-width: 640px) {
  .columnbox_list > li {
    width: 100%;
  }
}

.columnbox {
  height: 100%;
  background-color: #fff;
}

.border_columnbox .columnbox {
  border: 1px solid #cbcbcb;
}

.gray_columnbox .columnbox {
  background-color: #f5f5f5;
}

.columnbox_index {
  background-color: #EC6C00;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
}

.columnbox_content {
  padding: 15px 30px 25px;
}
@media screen and (max-width: 1180px) {
  .columnbox_content {
    padding: 15px 20px 25px;
  }
}

.columnbox_headline {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1180px) {
  .columnbox_headline {
    font-size: 16px;
  }
}

.columnbox_txt p, .columnbox_txt ul, .columnbox_txt ol {
  padding-top: 10px;
  font-size: 14px;
}
.columnbox_txt p:not(:first-child), .columnbox_txt ul:not(:first-child), .columnbox_txt ol:not(:first-child) {
  padding-top: 20px;
}

.columnbox_txt_imgwrap {
  padding: 20px 20px 0;
}

/*-------------------------------------------------------------------------
 contact
--------------------------------------------------------------------------*/
.contact_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_wrap .contact_tel_wrap {
  padding-right: 20px;
}
.contact_wrap .contact_tel_wrap .contact_tel_number {
  font-weight: bold;
}
@media screen and (min-width: 640px) {
  .contact_wrap .contact_tel_wrap .contact_tel_number {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.contact_wrap .contact_tel_wrap .contact_reception_time {
  font-size: 10px;
}

.contact_link_wrap {
  display: flex;
  flex-wrap: wrap;
}

.contact_link + .contact_link {
  margin-left: 10px;
}

/*-------------------------------------------------------------------------
 囲み
--------------------------------------------------------------------------*/
.enclosure_area {
  margin-top: 80px;
  padding: 40px;
}
@media screen and (max-width: 640px) {
  .enclosure_area {
    padding: 30px;
  }
}
.enclosure_orange {
  border: 2px solid #EC6C00;
}
.enclosure_title {
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .enclosure_title {
    margin-bottom: 15px;
  }
}
.enclosure_contents {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-------------------------------------------------------------------------
 バナーエリア
--------------------------------------------------------------------------*/
.bnr_area {
  max-width: calc(1240px + 40px * 2);
  padding: 0 40px;
  margin: 0 auto 130px;
}
@media screen and (max-width: 1180px) {
  .bnr_area {
    padding: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .bnr_area {
    margin-bottom: 80px;
  }
}
.bnr_area .bnr_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px 60px;
}
@media screen and (max-width: 1180px) {
  .bnr_area .bnr_list {
    margin: 0 -8px 40px;
  }
}
@media screen and (max-width: 640px) {
  .bnr_area .bnr_list {
    margin-bottom: 20px;
  }
}
.bnr_area .bnr_list.row2 li {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .bnr_area .bnr_list.row2 li {
    width: 100%;
  }
}
.bnr_area .bnr_list.row3 li {
  width: 33.3333333333%;
}
@media screen and (max-width: 640px) {
  .bnr_area .bnr_list.row3 li {
    width: 100%;
  }
}
.bnr_area .bnr_list li {
  padding: 20px;
}
@media screen and (max-width: 1180px) {
  .bnr_area .bnr_list li {
    padding: 8px;
  }
}

/* バナー「エルテックスDCの概要はこちら」
 * バナー「エルテックスCXの概要はこちら」
----------------------------------------------------------- */
.bnr_eltexdc a,
.bnr_eltexcx a {
  display: block;
  max-width: 610px;
  margin: 0 auto;
}

/*=========================================================================
//
// Utility 汎用クラスの設定
//
==========================================================================*/
/*-------------------------------------------------------------------------
 画面表示切替
--------------------------------------------------------------------------*/
.pc_only {
  display: block;
}
@media screen and (max-width: 1180px) {
  .pc_only {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media screen and (min-width: 640px) and (max-width: 1180px) {
  .tab_only {
    display: block;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 1180px) {
  .sp_only {
    display: block;
  }
}

.pc_tab_only {
  display: block;
}
@media screen and (min-width: 640px) {
  .pc_tab_only {
    display: none;
  }
}

.pc_sp_only {
  display: block;
}
@media screen and (min-width: 640px) and (max-width: 1180px) {
  .pc_sp_only {
    display: none;
  }
}

.tab_sp_only {
  display: none;
}
@media screen and (max-width: 1180px) {
  .tab_sp_only {
    display: block;
  }
}

/*-------------------------------------------------------------------------
 フォントサイズ
--------------------------------------------------------------------------*/
p.small {
  font-size: 14px;
}

span.small {
  font-size: 0.8em;
}

/*-------------------------------------------------------------------------
 フォントウェイト
--------------------------------------------------------------------------*/
.bold {
  font-weight: 700;
}

/*-------------------------------------------------------------------------
 文字揃え
--------------------------------------------------------------------------*/
.txt_align_center {
  text-align: center;
}

/*-------------------------------------------------------------------------
 文節(段落ち用)
--------------------------------------------------------------------------*/
.clause {
  display: inline-block;
}

/*-------------------------------------------------------------------------
 文字色
--------------------------------------------------------------------------*/
.orange {
  color: #EC6C00;
}

/*-------------------------------------------------------------------------
 ボタン
--------------------------------------------------------------------------*/
.btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_wrap a.btn, .btn_wrap input.btn, .btn_wrap .btn {
  padding: 10px 20px;
}

a.btn, input.btn, .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  transition: 0.2s;
}
a.btn:hover, input.btn:hover, .btn:hover {
  opacity: 0.7;
}
a.btn.btn_orange, input.btn.btn_orange, .btn.btn_orange {
  background-color: #EC6C00;
  color: #fff;
}
a.btn.btn_orange_enclosure, input.btn.btn_orange_enclosure, .btn.btn_orange_enclosure {
  background-color: #fff;
  color: #EC6C00;
  border: 2px solid #EC6C00;
}
a.btn.btn_black, input.btn.btn_black, .btn.btn_black {
  background-color: #333;
  color: #fff;
}
a.btn.btn_detail, input.btn.btn_detail, .btn.btn_detail {
  position: relative;
  width: 100%;
  max-width: 340px;
  min-height: 60px;
  padding: 10px 20px;
}
a.btn.btn_detail:hover, input.btn.btn_detail:hover, .btn.btn_detail:hover {
  background-color: #EC6C00;
  color: #fff;
}
a.btn.btn_detail::before, input.btn.btn_detail::before, .btn.btn_detail::before {
  font-family: "FontAwesome";
  content: "\f105";
  font-weight: 400;
  line-height: 1;
  /* 右矢印 */
  position: absolute;
  top: auto;
  right: 10px;
  bottom: auto;
  left: auto;
}
a.btn.btn_contact::before, input.btn.btn_contact::before, .btn.btn_contact::before {
  font-family: "FontAwesome";
  content: "\f003";
  font-weight: 400;
  line-height: 1;
  /* メールアイコン */
  margin-right: 6px;
}
a.btn.btn_download::before, input.btn.btn_download::before, .btn.btn_download::before {
  font-family: "FontAwesome";
  content: "\f019";
  font-weight: 400;
  line-height: 1;
  /* ダウンロードアイコン */
  margin-right: 6px;
}
a.btn.btn_pdfdownload::before, input.btn.btn_pdfdownload::before, .btn.btn_pdfdownload::before {
  font-family: "FontAwesome";
  content: "\f0f6";
  font-weight: 400;
  line-height: 1;
  /* ファイルアイコン */
  margin-right: 6px;
}

/*-------------------------------------------------------------------------
 最大幅
--------------------------------------------------------------------------*/
.maxw100 {
  max-width: 100px;
}

.maxw200 {
  max-width: 200px;
}

.maxw300 {
  max-width: 300px;
}

.maxw400 {
  max-width: 400px;
}

.maxw500 {
  max-width: 500px;
}

.maxw600 {
  max-width: 600px;
}

.maxw700 {
  max-width: 700px;
}

.maxw800 {
  max-width: 800px;
}

.maxw900 {
  max-width: 900px;
}

.maxw1000 {
  max-width: 1000px;
}

.maxw1240 {
  max-width: 1240px;
}

/* センタリング
--------------------------------------------------------------------------*/
.margin_lr_auto {
  margin-right: auto;
  margin-left: auto;
}

/*-------------------------------------------------------------------------
 囲み
--------------------------------------------------------------------------*/
.enclosure {
  padding: 25px 30px;
  border: 1px solid #cbcbcb;
}

.enclosure_maincolor {
  border: 1px solid #EC6C00;
}

/*-------------------------------------------------------------------------
 注釈
--------------------------------------------------------------------------*/
.note {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
}
.note::before {
  content: "※";
}

/*-------------------------------------------------------------------------
 リスト
--------------------------------------------------------------------------*/
/* ドット
--------------------------------------------------------------------------*/
.ul_dots li {
  text-indent: -1em;
  padding-left: 1em;
}
.ul_dots li::before {
  content: "・";
}

/* チェックマーク
--------------------------------------------------------------------------*/
.ul_checks li {
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 700;
}
.ul_checks li::before {
  font-family: "FontAwesome";
  content: "\f14a";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
  margin-right: 0.5em;
}

/* ※
--------------------------------------------------------------------------*/
.ul_notes li {
  text-indent: -1em;
  padding-left: 1em;
}
.ul_notes li::before {
  content: "※";
}

/* 1.、2.、3.・・・
--------------------------------------------------------------------------*/
.ol_num_comma {
  list-style: none;
  counter-reset: number;
}
.ol_num_comma li {
  position: relative;
  padding-left: 2em;
}
.ol_num_comma li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
}

/* (1)、(2)、(3)・・・
--------------------------------------------------------------------------*/
.ol_num_brackets {
  list-style: none;
  counter-reset: number;
}
.ol_num_brackets li {
  position: relative;
  padding-left: 2.5em;
}
.ol_num_brackets li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
}

/* ①、②、③・・・
--------------------------------------------------------------------------*/
.ol_num_circle {
  list-style: none;
  counter-reset: number;
}
.ol_num_circle li {
  position: relative;
  padding-left: 1.5em;
}
.ol_num_circle li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 0.3em;
  left: 0.3em;
  font-size: 0.8em;
}
.ol_num_circle li::after {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  border: 1px solid #333;
  border-radius: 50%;
}

/*-------------------------------------------------------------------------
 タグ
--------------------------------------------------------------------------*/
.tags {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5px;
}
.tags li {
  padding: 2.5px;
}
.tags li p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  background-color: #ccc;
  min-width: 80px;
}

/*-------------------------------------------------------------------------
 リンク
--------------------------------------------------------------------------*/
/* 丸右矢印リンク
--------------------------------------------------------------------------*/
.rightarrow_link {
  font-weight: 700;
}
.rightarrow_link::before {
  margin-right: 5px;
  font-family: "FontAwesome";
  content: "\f138";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
}

/* 外部リンク
--------------------------------------------------------------------------*/
.external_link::after {
  margin-left: 5px;
  font-family: "FontAwesome";
  content: "\f08e";
  font-weight: 400;
  line-height: 1;
  color: #999;
}

/* ダウンロードリンク
--------------------------------------------------------------------------*/
.download_link {
  font-weight: 700;
}
.download_link::before {
  margin-right: 5px;
  font-family: "FontAwesome";
  content: "\f019";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
}

/* PDFダウンロードリンク
--------------------------------------------------------------------------*/
.pdf_download_link {
  font-weight: 700;
}
.pdf_download_link::before {
  margin-right: 5px;
  font-family: "FontAwesome";
  content: "\f1c1";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
}

/*=========================================================================
//
// Components パーツ毎の設定
//
==========================================================================*/
/*-------------------------------------------------------------------------
 h
--------------------------------------------------------------------------*/
h1,
.intro_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  h1,
  .intro_title {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  h1,
  .intro_title {
    font-size: 28px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 640px) {
  h4 {
    font-size: 18px;
  }
}

/*-------------------------------------------------------------------------
 a
--------------------------------------------------------------------------*/
a, input {
  transition: 0.1s;
}
a:hover, input:hover {
  color: #EC6C00;
}
a img:hover, input img:hover {
  opacity: 0.7;
}

/*=========================================================================
//
// ヘッダー用CSS
//
==========================================================================*/
/*-------------------------------------------------------------------------
 header
--------------------------------------------------------------------------*/
/* layout
----------------------------------------------------------- */
@media screen and (max-width: 1180px) {
  body {
    padding-top: 70px;
  }
}
@media screen and (max-width: 640px) {
  body {
    padding-top: 60px;
  }
}
body.menu_open main {
  touch-action: none;
}

main.menu_open {
  touch-action: none;
}

header {
  padding: 10px 40px 0;
  background-color: #fff;
}
@media screen and (max-width: 1180px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 70px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 640px) {
  header {
    height: 60px;
  }
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header.fixed .header_above {
  display: none;
}

/*-------------------------------------------------------------------------
 header_above
--------------------------------------------------------------------------*/
.header_above_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header_above_inner .contact_link_wrap .btn {
  width: 160px;
  height: 40px;
  font-size: 14px;
}

.tagline {
  font-size: 14px;
}

/*-------------------------------------------------------------------------
 header_main
--------------------------------------------------------------------------*/
.header_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 70px;
}
@media screen and (max-width: 1180px) {
  .header_main {
    align-items: center;
    height: auto;
  }
}
.header_main .header_main_logo_wrap {
  max-width: 250px;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1180px) {
  .header_main .header_main_logo_wrap {
    margin-bottom: 0;
    max-width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .header_main .header_main_logo_wrap {
    max-width: 180px;
    padding-left: 5px;
  }
}

/* global nav
----------------------------------------------------------- */
.header_main_globalnav_list {
  display: flex;
  font-weight: bold;
  margin-right: -10px;
}
.header_main_globalnav_list > li {
  position: relative;
}
.header_main_globalnav_list > li.open::before {
  content: "";
  display: block;
  height: 3px;
  background-color: #EC6C00;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}
.header_main_globalnav_list > li + li {
  margin-left: 10px;
}
.header_main_globalnav_list > li a {
  display: block;
}
.header_main_globalnav_list > li > a {
  padding: 10px;
}

.header_main_globalnav_secondlayer_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9998;
  background-color: #fff;
  min-width: 300px;
  border: 1px solid #cbcbcb;
  font-size: 14px;
}
.product .header_main_globalnav_secondlayer_list {
  min-width: 400px;
}
.header_main_globalnav_secondlayer_list > li + li {
  border-top: 1px solid #cbcbcb;
}
.header_main_globalnav_secondlayer_list > li > a {
  padding: 15px 20px;
}

.header_main_globalnav_thirdlayer_list {
  position: relative;
}
.header_main_globalnav_thirdlayer_list::before {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #cbcbcb;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  margin: 0 auto;
}
.header_main_globalnav_thirdlayer_list > li > a {
  padding: 8px 30px;
  color: #666;
}
.header_main_globalnav_thirdlayer_list > li > a:hover {
  color: #EC6C00;
}
.header_main_globalnav_thirdlayer_list > li > a::before {
  font-family: "FontAwesome";
  content: "\f105";
  font-weight: 400;
  line-height: 1;
  font-size: 1.2em;
  margin-right: 0.5em;
  color: #666;
}
.header_main_globalnav_thirdlayer_list > li:first-child > a {
  padding-top: 16px;
}
.header_main_globalnav_thirdlayer_list > li:last-child > a {
  padding-bottom: 16px;
}

/* ハンバーガーメニュー(タブレット・SP時表示)
----------------------------------------------------------- */
.header_hamburger_menu {
  position: relative;
  cursor: pointer;
  width: 56px;
  height: 48px;
  padding: 10px;
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu {
    width: 37px;
    height: 32px;
  }
}
.header_hamburger_menu:hover span {
  background-color: #EC6C00;
}
.header_hamburger_menu span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 10px;
  height: 3px;
  background-color: #333;
  width: calc(100% - 20px);
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu span {
    height: 2px;
  }
}
.header_hamburger_menu span:nth-of-type(1) {
  top: 10px;
}
.open .header_hamburger_menu span:nth-of-type(1) {
  top: 16px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
@media screen and (max-width: 640px) {
  .open .header_hamburger_menu span:nth-of-type(1) {
    top: 10px;
    left: 10px;
  }
}
.header_hamburger_menu span:nth-of-type(2) {
  top: 22px;
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu span:nth-of-type(2) {
    top: 16px;
  }
}
.open .header_hamburger_menu span:nth-of-type(2) {
  opacity: 0;
}
.header_hamburger_menu span:nth-of-type(3) {
  top: 34px;
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu span:nth-of-type(3) {
    top: 22px;
  }
}
.open .header_hamburger_menu span:nth-of-type(3) {
  top: 28px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
@media screen and (max-width: 640px) {
  .open .header_hamburger_menu span:nth-of-type(3) {
    top: 22px;
    left: 10px;
  }
}

.header_hamburger_menu_globalnav_wrap {
  position: fixed;
  top: 70px;
  right: 0;
  width: 80%;
  min-width: 300px;
  height: 0;
  background-color: #fff;
  overflow: hidden;
  transition: 0.3s;
  z-index: 9998;
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu_globalnav_wrap {
    top: 60px;
  }
}
.header_hamburger_menu_globalnav_wrap.open {
  height: calc(100vh - 70px);
  overflow-y: auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu_globalnav_wrap.open {
    height: calc(100vh - 60px);
  }
}
.header_hamburger_menu_globalnav_wrap .contact_link_wrap {
  padding: 20px;
  border-bottom: 1px solid #cbcbcb;
}
@media screen and (max-width: 1180px) {
  .header_hamburger_menu_globalnav_wrap .contact_link_wrap .contact_link {
    flex: 1;
  }
}
@media screen and (max-width: 640px) {
  .header_hamburger_menu_globalnav_wrap .contact_link_wrap {
    flex-direction: column;
  }
  .header_hamburger_menu_globalnav_wrap .contact_link_wrap .contact_link {
    font-size: 13px;
  }
  .header_hamburger_menu_globalnav_wrap .contact_link_wrap .contact_link + .contact_link {
    margin-left: 0;
    margin-top: 8px;
  }
  .header_hamburger_menu_globalnav_wrap .contact_link_wrap .contact_link .btn {
    padding: 8px 10px;
  }
}

.header_hamburger_menu_globalnav_list > li {
  border-bottom: 1px solid #cbcbcb;
}
.header_hamburger_menu_globalnav_list a {
  padding: 10px 20px;
  display: block;
  font-weight: 700;
}

.header_hamburger_menu_globalnav_secondlayer_list {
  width: calc(100% - 40px);
  margin: 0 auto;
  border-top: 1px solid #cbcbcb;
  padding: 7px 0;
}
.header_hamburger_menu_globalnav_secondlayer_list a {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  padding: 8px 0 8px 20px;
}
.header_hamburger_menu_globalnav_secondlayer_list a:hover {
  color: #EC6C00;
}

.hamburger_menu_overlay {
  opacity: 0;
  transition: 0.3s;
}
.hamburger_menu_overlay.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 9997;
  opacity: 1;
}

/*-------------------------------------------------------------------------
 header_simple
--------------------------------------------------------------------------*/
.header_simple {
  padding-bottom: 10px;
}
.header_simple .header_main_logo_wrap {
  width: 250px;
  margin: 0 auto;
}

/*=========================================================================
//
// フッター用CSS
//
==========================================================================*/
footer {
  margin-top: 130px;
}
@media screen and (max-width: 1180px) {
  footer {
    margin-top: 100px;
  }
}
/*-------------------------------------------------------------------------
 お問い合わせ
--------------------------------------------------------------------------*/
.footer_contact_wrap {
  padding: 0 40px 80px;
}
@media screen and (max-width: 1180px) {
  .footer_contact_wrap {
    padding: 0 20px 80px;
  }
}
.footer_contact_wrap a.btn.btn_pdfdownload {
  padding-left: 80px;
  white-space: nowrap;
  position: relative;
}
.footer_contact_wrap a.btn.btn_pdfdownload::before {
  content: "";
  display: block;
  background: url(/contents/eltexdc/img/1774197867344-idak9a6.png) no-repeat center center;
  background-size: contain;
  max-width: 90px;
  width: 28%;
  height: 70px;
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 640px) {
  .footer_contact_wrap a.btn.btn_pdfdownload {
    padding-left: 50px;
  }
  .footer_contact_wrap a.btn.btn_pdfdownload::before {
    left: 3%;
    width: 24%;
  }
}

/*-------------------------------------------------------------------------
 DCメッセージエリア
--------------------------------------------------------------------------*/
.footer_message_wrap {
  background-color: #f5f5f5;
  padding: 60px 40px;
}
.footer_message_wrap h2 {
  margin-bottom: 20px;
  font-size: 24px;
}
@media screen and (max-width: 1180px) {
  .footer_message_wrap h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .footer_message_wrap h2 {
    font-size: 20px;
  }
}

.footer_message_logo_wrap {
  max-width: 360px;
  margin: 0 auto 25px;
}

.footer_message_txt {
  text-align: center;
}

/*-------------------------------------------------------------------------
 サブナビ
--------------------------------------------------------------------------*/
.footer_subnav_wrap {
  padding: 30px 40px;
}
@media screen and (max-width: 640px) {
  .footer_subnav_wrap {
    padding: 20px 20px;
  }
}

.footer_subnav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1180px) {
  .footer_subnav_list {
    justify-content: flex-start;
  }
}
.footer_subnav_list li {
  padding: 0 5px;
}
@media screen and (max-width: 1180px) {
  .footer_subnav_list li {
    width: 50%;
  }
}
.footer_subnav_list li a {
  display: inline-block;
  padding: 0 10px;
  font-size: 14px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.footer_subnav_list li a::before {
  font-family: "FontAwesome";
  content: "\f138";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
  margin-right: 5px;
}

/*-------------------------------------------------------------------------
 会社情報
--------------------------------------------------------------------------*/
.footer_company_info_wrap {
  background-color: #333;
  color: #fff;
  padding: 15px 40px;
}
@media screen and (max-width: 640px) {
  .footer_company_info_wrap {
    padding: 20px 20px;
  }
}

.footer_company_info_wrap_inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .footer_company_info_wrap_inner {
    flex-direction: column;
  }
}

.footer_company_info_logo {
  max-width: 230px;
}
@media screen and (max-width: 640px) {
  .footer_company_info_logo {
    margin-bottom: 15px;
  }
}

.footer_company_info_detail_wrap {
  font-size: 14px;
  padding-left: 35px;
}
@media screen and (max-width: 640px) {
  .footer_company_info_detail_wrap {
    padding-left: 0;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.footer_company_info_link_wrap {
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .footer_company_info_link_wrap {
    margin-left: 0;
  }
}

.footer_company_info_link_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -5px;
}
.footer_company_info_link_list li {
  padding: 0 5px;
}
.footer_company_info_link_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
}
.footer_company_info_link_list li a:hover {
  opacity: 0.7;
}

/*-------------------------------------------------------------------------
 サイト情報
--------------------------------------------------------------------------*/
.footer_siteinfo_wrap {
  padding: 15px 40px;
}
@media screen and (max-width: 640px) {
  .footer_siteinfo_wrap {
    padding: 15px 20px;
  }
}

.footer_siteinfo_wrap_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .footer_siteinfo_wrap_inner {
    flex-direction: column;
  }
}

.footer_siteinfo_link_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .footer_siteinfo_link_list {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer_siteinfo_link_list li {
  line-height: 1.2;
  padding: 5px 0;
}
.footer_siteinfo_link_list li + li {
  border-left: 1px solid #cbcbcb;
}
@media screen and (max-width: 640px) {
  .footer_siteinfo_link_list li + li {
    border-left: none;
  }
}
.footer_siteinfo_link_list li a {
  padding: 0 20px;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .footer_siteinfo_link_list li a {
    padding: 0;
  }
}
.footer_siteinfo_link_list li:first-of-type a {
  padding-left: 0;
}

.footer_siteinfo_policymarks {
  max-width: 180px;
}
@media screen and (max-width: 640px) {
  .footer_siteinfo_policymarks {
    margin-top: 15px;
  }
}

/*-------------------------------------------------------------------------
 パンくず
--------------------------------------------------------------------------*/
ol.breadcrumb {
  max-width: calc(1240px + 40px * 2);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  margin: 0 auto;
  padding: 5px 40px;
}
@media screen and (max-width: 1180px) {
  ol.breadcrumb {
    padding: 5px 20px;
  }
}
ol.breadcrumb li span {
  display: inline-block;
  padding: 0 10px;
}
ol.breadcrumb li span br {
  display: none;
}
ol.breadcrumb li:not(:last-child)::after {
  font-family: "FontAwesome";
  content: "\f105";
  font-weight: 400;
  line-height: 1;
  color: #666;
}

/*=========================================================================
//
// テーブル用CSS
//
==========================================================================*/
/* 通常デザイン
--------------------------------------------------------------------------*/
.section_content_detail_table {
  margin-top: 60px;
}

table {
  font-size: 14px;
  width: 100%;
  table-layout: fixed;
}
table tr.row_attention th, table tr.row_attention td {
  background-color: #f5f5f5;
}
table th, table td {
  padding: 7px;
}
table th {
  border: 1px solid #ccc;
  background-color: #5E5E5E;
  color: #fff;
}
table td {
  background-color: #fff;
  border: 1px solid #ccc;
}
table .td_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  min-height: 3.4em;
}
table + .table_annotation {
  margin-top: 15px;
}

.table_update_date {
  text-align: right;
  margin-top: 10px;
  font-size: 14px;
}

/* シンプルラインデザイン
--------------------------------------------------------------------------*/
table.table_border {
  font-size: 16px;
}
table.table_border tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
table.table_border th, table.table_border td {
  background-color: transparent;
  border: none;
  padding: 30px 10px;
}
table.table_border th {
  color: #333;
}
table.table_border .td_inner {
  min-height: auto;
}

/* 装飾なし
--------------------------------------------------------------------------*/
table.table_simple {
  font-size: 16px;
}
table.table_simple tr {
  border: none;
}
table.table_simple th, table.table_simple td {
  background-color: transparent;
  border: none;
  padding: 0 10px;
}
table.table_simple th {
  color: #333;
  font-weight: 400;
}

/*=========================================================================
//
// ページ内回遊用ナビゲーション
//
==========================================================================*/
/*-------------------------------------------------------------------------
 変数
--------------------------------------------------------------------------*/
/* 固定位置
----------------------------------------------------------- */
/*-------------------------------------------------------------------------

--------------------------------------------------------------------------*/
/* layout
----------------------------------------------------------- */
.page_nav {
  max-width: calc(1240px + 40px * 2);
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 1180px) {
  .page_nav {
    max-width: calc(1240px + 20px * 2);
  }
}

.page_nav_list {
  display: flex;
}
@media screen and (max-width: 1180px) {
  .page_nav_list {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 641px) {
  .page_nav_list.row1 li {
    width: calc(100% / 1);
  }
}
@media screen and (min-width: 641px) {
  .page_nav_list.row2 li {
    width: calc(100% / 2);
  }
}
@media screen and (min-width: 641px) {
  .page_nav_list.row3 li {
    width: calc(100% / 3);
  }
}
@media screen and (min-width: 641px) {
  .page_nav_list.row4 li {
    width: calc(100% / 4);
  }
}
@media screen and (min-width: 641px) {
  .page_nav_list.row5 li {
    width: calc(100% / 5);
  }
}
@media screen and (min-width: 641px) {
  .page_nav_list.row6 li {
    width: calc(100% / 6);
  }
}
.page_nav_list li {
  border: 1px solid #EC6C00;
  height: 75px;
}
@media screen and (max-width: 640px) {
  .page_nav_list li {
    width: 50%;
  }
}
.page_nav_list li + li {
  border-left: none;
}
@media screen and (max-width: 640px) {
  .page_nav_list li:nth-of-type(odd) {
    border-left: 1px solid #EC6C00;
  }
}
@media screen and (max-width: 640px) {
  .page_nav_list li:nth-of-type(n+3) {
    border-top: none;
  }
}
.page_nav_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  background-color: #fff;
  text-align: center;
  padding: 10px;
  line-height: 1.4;
  height: 100%;
}
.page_nav_list li a:hover {
  opacity: 1;
  background-color: #EC6C00;
  color: #fff;
}
.page_nav_list li a:hover::after {
  color: #fff;
}
.page_nav_list li a p {
  margin-bottom: 10px;
  position: relative;
  z-index: 11;
}
.page_nav_list li a::after {
  font-family: "FontAwesome";
  content: "\f13a";
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: 0 auto;
  color: #EC6C00;
  font-size: 1.2em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1180px) {
  .page_nav_list li a::after {
    bottom: 5px;
  }
}
.page_nav_list li.active a {
  background-color: #EC6C00;
  color: #fff;
}
.page_nav_list li.active a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #EC6C00;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -5px;
  left: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  z-index: 10;
}
.page_nav_list.fixed {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 9995;
  max-width: 100%;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1180px) {
  .page_nav_list.fixed {
    padding: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .page_nav_list.fixed {
    top: 70px;
  }
  .page_nav_list.fixed.active li:not(:first-child) {
    display: block;
  }
  .page_nav_list.fixed.active li:not([class=active]) {
    overflow: hidden;
    height: 0;
    border-bottom: none;
  }
  .page_nav_list.fixed.active.open li {
    height: 40px;
    border-bottom: 1px solid #EC6C00;
  }
  .page_nav_list.fixed.active.moving li {
    transition: 0.3s;
  }
}
.page_nav_list.fixed li {
  height: 40px;
}
@media screen and (max-width: 640px) {
  .page_nav_list.fixed li {
    width: 100%;
    border-left: 1px solid #EC6C00;
  }
  .page_nav_list.fixed li a {
    font-size: 16px;
    justify-content: flex-start;
    transition: 0s;
  }
  .page_nav_list.fixed li:not(:first-child) {
    display: none;
  }
}
.page_nav_list.fixed li a p {
  margin-bottom: 0;
}
.page_nav_list.fixed li a::after {
  display: none;
}

@media screen and (max-width: 640px) {
  .page_nav_list_hamburger {
    display: none;
    padding: 11px;
    height: 40px;
    width: 48px;
    position: relative;
    cursor: pointer;
  }
  .page_nav_list.fixed + .page_nav_list_hamburger {
    display: block;
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9996;
  }
  .page_nav_list li .page_nav_list_hamburger span {
    background-color: #EC6C00;
  }
  .page_nav_list li.active .page_nav_list_hamburger span {
    background-color: #fff;
  }
  .page_nav_list_hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 10px;
    transition: 0.3s;
  }
  .page_nav_list_hamburger span:nth-of-type(1) {
    top: 11px;
  }
  .open .page_nav_list_hamburger span:nth-of-type(1) {
    top: 19px;
  }
  .page_nav_list_hamburger span:nth-of-type(2) {
    top: 19px;
  }
  .page_nav_list_hamburger span:nth-of-type(3) {
    top: 27px;
  }
  .open .page_nav_list_hamburger span:nth-of-type(3) {
    top: 19px;
  }
  .page_nav_list_hamburger.open span:nth-of-type(1) {
    top: 19px;
  }
  .page_nav_list_hamburger.open span:nth-of-type(3) {
    top: 19px;
  }
  .page_nav_list_hamburger.open.not_first_menu span {
    background-color: #EC6C00;
  }
}

/*=========================================================================
//
// お問い合わせ用CSS
//
==========================================================================*/
/*-------------------------------------------------------------------------
 お問い合わせ
--------------------------------------------------------------------------*/
.contact_wrap_inner,
.footer_contact_wrap_inner {
  padding: 50px;
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .contact_wrap_inner,
  .footer_contact_wrap_inner {
    padding: 30px 20px;
  }
}
.contact_wrap_inner h2,
.footer_contact_wrap_inner h2 {
  font-size: 38px;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 1180px) {
  .contact_wrap_inner h2,
  .footer_contact_wrap_inner h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .contact_wrap_inner h2,
  .footer_contact_wrap_inner h2 {
    font-size: 24px;
  }
}

.contact_txt,
.footer_contact_txt {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1180px) {
  .contact_txt,
  .footer_contact_txt {
    font-size: 16px;
  }
}

.contact_info_wrap,
.footer_contact_info_wrap {
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .contact_info_wrap,
  .footer_contact_info_wrap {
    flex-direction: column;
  }
}
.contact_info_wrap .contact_tel_wrap,
.footer_contact_info_wrap .contact_tel_wrap {
  padding-left: 0;
}
@media screen and (max-width: 1180px) {
  .contact_info_wrap .contact_tel_wrap,
  .footer_contact_info_wrap .contact_tel_wrap {
    padding: 0;
    text-align: center;
    margin-bottom: 15px;
  }
}
.contact_info_wrap .contact_tel_number,
.footer_contact_info_wrap .contact_tel_number {
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 1180px) {
  .contact_info_wrap .contact_tel_number,
  .footer_contact_info_wrap .contact_tel_number {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .contact_info_wrap .contact_tel_number,
  .footer_contact_info_wrap .contact_tel_number {
    display: block;
    font-size: 24px;
    text-align: center;
  }
}
.contact_info_wrap .contact_tel_wrap .contact_reception_time,
.footer_contact_info_wrap .contact_tel_wrap .contact_reception_time {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .contact_info_wrap .contact_tel_wrap .contact_reception_time,
  .footer_contact_info_wrap .contact_tel_wrap .contact_reception_time {
    font-size: 14px;
  }
}
@media screen and (max-width: 1180px) {
  .contact_info_wrap .contact_link_wrap,
  .footer_contact_info_wrap .contact_link_wrap {
    flex-wrap: nowrap;
    max-width: 610px;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .contact_info_wrap .contact_link_wrap,
  .footer_contact_info_wrap .contact_link_wrap {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1180px) {
  .contact_info_wrap .contact_link,
  .footer_contact_info_wrap .contact_link {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .contact_info_wrap .contact_link,
  .footer_contact_info_wrap .contact_link {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .contact_info_wrap .contact_link + .contact_link,
  .footer_contact_info_wrap .contact_link + .contact_link {
    margin-left: 0;
    margin-top: 10px;
  }
}
.contact_info_wrap .contact_link a,
.footer_contact_info_wrap .contact_link a {
  width: 300px;
  height: 70px;
  font-size: 22px;
}
@media screen and (max-width: 1180px) {
  .contact_info_wrap .contact_link a,
  .footer_contact_info_wrap .contact_link a {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .contact_info_wrap .contact_link a,
  .footer_contact_info_wrap .contact_link a {
    height: 50px;
    font-size: 18px;
  }
}

/*=========================================================================
//
// 導入事例
// ・TOP
// ・/case_study
//
==========================================================================*/
/*-------------------------------------------------------------------------
 導入事例 一覧
--------------------------------------------------------------------------*/
.case_study_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 80px;
  justify-content: center;
}
@media screen and (max-width: 1180px) {
  .case_study_list {
    margin: 0 -8px calc(80px - 40px);
  }
}
@media screen and (max-width: 640px) {
  .case_study_list {
    width: 100%;
    margin: 0 0 calc(80px - 40px);
  }
}
.case_study_list > li {
  width: 33.3333333333%;
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .case_study_list > li {
    width: 50%;
    padding: 8px;
  }
}
@media screen and (max-width: 640px) {
  .case_study_list > li {
    width: 100%;
  }
}
.case_study_list > li > a {
  width: 100%;
}
.case_study_list .case_study_list_work_row1 {
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .case_study_list .case_study_list_work_row1 {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .case_study_list .case_study_list_work_row1 {
    width: 100%;
  }
}
.case_study_list a {
  transition: 0.1s;
}
.case_study_list a:hover {
  color: #333;
  opacity: 0.7;
}
.case_study_list a:hover .btn_detail {
  opacity: 1;
}

.case_study_list_work_row1 .case_study_list_work_info_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.case_study_list_work_row1 .case_study_list_work_info_wrap_inner {
  padding: 20px;
  max-width: 380px;
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1 .case_study_list_work_info_wrap_inner {
    padding: 0;
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1 .case_study_list_work_wrap {
    flex-direction: column;
    height: 100%;
  }
}

.case_study_list_work_row3 {
  width: 33.3333333333%;
}
.case_study_list_work_row3 .case_study_list_work_wrap {
  flex-direction: column;
  height: 100%;
}

.case_study_list_work_wrap {
  display: flex;
  background-color: #fff;
}
.case_study_list_work_wrap:hover {
  opacity: 1;
}

.case_study_list_work_info_wrap {
  padding: 0 30px 30px;
  margin-top: auto;
}
.case_study_list_work_info_wrap .btn_detail_wrap {
  margin-top: auto;
}
.case_study_list_work_info_wrap .btn_detail {
  height: 40px;
}

.case_study_list_work_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.case_study_list_work_row1 .case_study_list_work_img {
  width: 62.9032%;
  min-height: 400px;
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1 .case_study_list_work_img {
    width: 100%;
    min-height: 268px;
  }
}
.case_study_list_work_row3 .case_study_list_work_img {
  width: 100%;
  min-height: 268px;
}
.herb .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867358-muay5gz.webp");
  background-position: center bottom;
}
.sentence .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867380-qpub9vw.webp");
}
.chojyu .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867391-mfk1xg5.webp");
}
.nicorio .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867398-mqot7co.webp");
}
.um .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867439-33s0tk2.webp");
}
.rhc .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867459-aqpv2nv.webp");
}
.morinaga .case_study_list_work_img {
  background-image: url("/contents/eltexdc/img/1774197867468-fe940dl.webp");
}

.customer_logo {
  padding: 20px 0;
}
.case_study_list_work_row3 .customer_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  min-height: 70px;
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1 .customer_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    min-height: 70px;
  }
}
.case_study_list_work_row1.herb .customer_logo {
  max-width: 200px;
}
.case_study_list_work_row1.herb .customer_logo img {
  max-width: 100%;
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1.herb .customer_logo {
    max-width: none;
  }
  .case_study_list_work_row1.herb .customer_logo img {
    max-width: 140px;
  }
}
.herb .customer_logo img {
  max-width: 140px;
}
.sentence .customer_logo img {
  max-width: 100px;
}
.chojyu .customer_logo img {
  max-width: 120px;
}
.nicorio .customer_logo img {
  max-width: 110px;
}
.um .customer_logo img {
  max-width: 250px;
}
.rhc .customer_logo img {
  max-width: 180px;
}

.customer_name {
  color: #666;
  font-size: 14px;
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1 .customer_name {
    text-align: center;
  }
}
.case_study_list_work_row3 .customer_name {
  text-align: center;
}

.case_study_list_work_points {
  margin-top: 10px;
}
.case_study_list_work_points li {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1180px) {
  .case_study_list_work_row1 .case_study_list_work_points li {
    font-size: 14px;
  }
}
.case_study_list_work_row3 .case_study_list_work_points li {
  font-size: 14px;
}
.case_study_list_work_points li::before {
  content: "・";
}

.case_study_list_work_tags_wrap {
  margin: 15px 0 20px;
}

/*=========================================================================
//
// FAQ
// ・TOP
// ・/products/
//
==========================================================================*/
/*-------------------------------------------------------------------------
 FAQ 一覧
--------------------------------------------------------------------------*/
.faq_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 80px;
}
@media screen and (max-width: 1180px) {
  .faq_list {
    margin: 0 -8px calc(80px - 40px);
  }
}
@media screen and (max-width: 640px) {
  .faq_list {
    width: 100%;
    margin: 0 0 calc(80px - 40px);
  }
}
.faq_list > li {
  width: 33.3333333333%;
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .faq_list > li {
    width: 50%;
    padding: 8px;
  }
}
@media screen and (max-width: 640px) {
  .faq_list > li {
    width: 100%;
  }
}
.faq_list > li > a {
  width: 100%;
}
.faq_list .faq_wrap {
  border: 1px solid #cbcbcb;
  background-color: #fff;
  height: 100%;
  padding: 28px;
}
.faq_list .faq_q {
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #cbcbcb;
  line-height: 1.5;
  padding-left: 56px;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.faq_list .faq_q::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-image: url("/contents/eltexdc/img/1774197867494-47rv3li.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.faq_list .faq_a {
  position: relative;
  font-size: 14px;
  padding-left: 56px;
}
.faq_list .faq_a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-image: url("/contents/eltexdc/img/1774197867499-ut4ldl2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

/*=========================================================================
//
// 通販・ECコラム
// ・TOP
// ・/research_column
//
==========================================================================*/
/*-------------------------------------------------------------------------
 通販・ECコラム 一覧
--------------------------------------------------------------------------*/
.research_column_list {
  margin-bottom: clamp(80px, 9%, 130px);
}

.research_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 80px;
}
@media screen and (max-width: 1180px) {
  .research_list {
    margin: 0 -8px calc(80px - 40px);
  }
}
@media screen and (max-width: 640px) {
  .research_list {
    width: 100%;
    margin: 0 0 calc(80px - 40px);
  }
}
.research_list > li {
  width: 33.3333333333%;
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .research_list > li {
    width: 50%;
    padding: 8px;
  }
}
@media screen and (max-width: 640px) {
  .research_list > li {
    width: 100%;
  }
}
.research_list > li > a {
  width: 100%;
}
.research_list .research_list_row1 {
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .research_list .research_list_row1 {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .research_list .research_list_row1 {
    width: 100%;
  }
}
@media screen and (min-width: 1180px) {
  .research_list .research_list_row1 .research_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .research_list .research_list_row1 .research_entry_img {
    width: 47%;
    margin-right: clamp(0px, 6%, 60px);
  }
  .research_list .research_list_row1 .research_contents {
    flex: 1;
  }
}
.research_list .research_wrap {
  display: block;
  background-color: #fff;
  padding: 30px;
}
.research_list .research_wrap:hover {
  color: #333;
  opacity: 0.7;
}
.research_list .research_wrap:hover img {
  opacity: 1;
}
.research_list .research_title, .research_list .research_subtitle {
  font-weight: 700;
  line-height: 1.5;
}
.research_list .research_title {
  padding: 15px 0 10px;
  font-size: 18px;
}
.research_list .research_title > h2 {
  font-size: 1em;
  text-align: left;
}
.research_list .research_title > h2 span {
  display: block;
}
.research_list .research_subtitle {
  margin-bottom: 10px;
}
.research_list .research_detail_beginning {
  font-size: 14px;
}
.research_list .research_detail_beginning p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.research_list .research_tags_wrap {
  margin: 15px 0 10px;
}
.research_list .research_date_wrap {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.research_list .research_date_wrap p::before {
  margin-right: 5px;
}
.research_list .release_date::before {
  content: "公開日時";
}
.research_list .update_date::before {
  content: "更新日時";
}

/*=========================================================================
//
// 主要製品＆サービスラインナップ
// ・TOP
// ・/products
//
==========================================================================*/
.products_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 80px;
  margin-bottom: 0;
}
@media screen and (max-width: 1180px) {
  .products_list {
    margin: 0 -8px calc(80px - 40px);
  }
}
@media screen and (max-width: 640px) {
  .products_list {
    width: 100%;
    margin: 0 0 calc(80px - 40px);
  }
}
.products_list > li {
  width: 33.3333333333%;
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .products_list > li {
    width: 50%;
    padding: 8px;
  }
}
@media screen and (max-width: 640px) {
  .products_list > li {
    width: 100%;
  }
}
.products_list > li > a {
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .products_list {
    margin-bottom: 0;
  }
}

.product_wrap {
  display: block;
  border: 1px solid #cbcbcb;
  height: 100%;
  padding: 40px 40px 30px;
  position: relative;
}
.product_wrap::after {
  font-family: "FontAwesome";
  content: "\f138";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
  font-size: 18px;
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 640px) {
  .product_wrap {
    padding: 20px 50px 20px 20px;
  }
}
.product_wrap:hover {
  color: #333;
  opacity: 0.7;
}
.product_wrap:hover img {
  opacity: 1;
}
.product_wrap .product_logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 55px;
}
.product_wrap .product_logo img {
  max-width: 100%;
}
.eltexdc .product_wrap .product_logo img {
  width: 225px;
  padding: 5px 0;
}
.eltexcx .product_wrap .product_logo img {
  width: 278px;
}
.eltexits .product_wrap .product_logo img {
  width: 234px;
  padding: 5px 0;
}
.eltexsms .product_wrap .product_logo img {
  width: 270px;
}
.eltexuxd .product_wrap .product_logo img {
  width: 222px;
}
.product_wrap .product_ex {
  font-size: 14px;
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  .product_wrap .product_ex {
    display: none;
  }
}

/*=========================================================================
//
// トップページ用CSS
//
==========================================================================*/
/*-------------------------------------------------------------------------
 ヒーローエリア
--------------------------------------------------------------------------*/
.heroarea {
  padding: 0;
}
@media screen and (max-width: 1180px) {
  .heroarea {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .heroarea {
    padding-bottom: 56px;
  }
}
.heroarea .main_visual_wrap {
  position: relative;
  height: 35.15625vw;
  background-color: #f5f5f5;
  background-image: url("/contents/eltexdc/img/1774197867511-2yctmnr.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
@media screen and (max-width: 1180px) {
  .heroarea .main_visual_wrap {
    padding-bottom: 62.5vw;
    height: auto;
    background-position: center bottom;
  }
}
.heroarea .main_visual_copy_area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: 5vw;
}
@media screen and (max-width: 1600px) {
  .heroarea .main_visual_copy_area {
    left: 4vw;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .main_visual_copy_area {
    position: static;
    height: auto;
  }
}
.heroarea .main_visual_copy_area_inner {
  max-width: 788px;
  width: 100%;
  padding: 40px;
}
@media screen and (max-width: 1180px) {
  .heroarea .main_visual_copy_area_inner {
    max-width: none;
    width: 100%;
    padding: 30px 20px 15px;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .main_visual_copy_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.heroarea h1 {
  font-size: 48px;
  text-align: left;
  margin-bottom: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 1600px) {
  .heroarea h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  .heroarea h1 {
    font-size: 23px;
    margin-bottom: 10px;
  }
}
.heroarea p {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 1600px) {
  .heroarea p {
    font-size: 24px;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea p {
    font-size: 24px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .heroarea p {
    font-size: 15px;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .contact_link_wrap {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .contact_link {
    width: 50%;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .contact_link + .contact_link {
    margin-left: 0;
  }
}
.heroarea .contact_link .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 80px;
  font-size: 22px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .heroarea .contact_link .btn {
    width: 240px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .contact_link .btn {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .heroarea .contact_link .btn {
    height: 56px;
    font-size: 16px;
  }
}
.heroarea .contact_link .btn.btn_pdfdownload {
  padding-left: 70px;
  white-space: nowrap;
}
.heroarea .contact_link .btn.btn_pdfdownload::before {
  content: "";
  display: block;
  background: url(/contents/eltexdc/img/1774197867516-zecel5j.png) no-repeat center center;
  background-size: contain;
  max-width: 108px;
  width: 38%;
  height: 79px;
  position: absolute;
  left: -10px;
  top: 4px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 1600px) {
  .heroarea .contact_link .btn.btn_pdfdownload {
    padding-left: 60px;
  }
  .heroarea .contact_link .btn.btn_pdfdownload::before {
    width: 30%;
  }
}
@media screen and (max-width: 1180px) {
  .heroarea .contact_link .btn.btn_pdfdownload::before {
    left: calc(40% - 140px);
  }
}
@media screen and (max-width: 640px) {
  .heroarea .contact_link .btn.btn_pdfdownload::before {
    left: 5px;
    width: 26%;
  }
}

/*-------------------------------------------------------------------------
 回転 / お客様ロゴエリア
--------------------------------------------------------------------------*/
section.client_logo_area {
  padding: 15px 0;
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  section.client_logo_area {
    padding: 10px 0;
  }
}

.client_logo_list {
  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  /* [FOUC対策 2026-06-30] お客様ロゴ回転(infiniteslidev2)は window.load 後に初めて
     display:flex 等を付与するため、それまで li が縦積みになる(縦並びのチラつき)。
     InfiniteSlide が初期化後に当てるのと同じ横並びレイアウトを最初から適用し、
     ロード中は静止した横並びロゴ列にする(カルーセル準備完了でそのまま回り始める)。
     横のはみ出しは section.client_logo_area { overflow:hidden } でクリップされる。 */
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.client_logo_list li {
  width: 140px;
  height: 86px;
  padding: 3px;
  /* [FOUC対策] flex コンテナ内で縮まないよう固定(InfiniteSlide も children に flex:none を付与)。
     これが無いと多数のロゴが画面幅に収まるよう縮小されてしまう。 */
  flex: none;
}
@media screen and (max-width: 640px) {
  .client_logo_list li {
    width: 93.5px;
    height: 56px;
  }
}

.client_logo_imgwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  padding: 5px;
}
@media screen and (max-width: 640px) {
  .client_logo_imgwrap {
    height: 50px;
  }
}
.client_logo_imgwrap.ayura img {
  max-width: 90px;
}
.client_logo_imgwrap.egao img {
  max-width: 95px;
}
.client_logo_imgwrap.kirin img {
  max-width: 100px;
}
.client_logo_imgwrap.sammy img {
  max-width: 100px;
}
.client_logo_imgwrap.sansho img {
  max-width: 130px;
}
.client_logo_imgwrap.jalux img {
  max-width: 70px;
}
.client_logo_imgwrap.jrcross img {
  max-width: 100px;
}
.client_logo_imgwrap.jtb img {
  max-width: 110px;
}
.client_logo_imgwrap.sns img {
  max-width: 110px;
}
.client_logo_imgwrap.sekaibunka img {
  max-width: 110px;
}
.client_logo_imgwrap.chojyu img {
  max-width: 120px;
}
.client_logo_imgwrap.tepco img {
  max-width: 85px;
}
.client_logo_imgwrap.nicorio img {
  max-width: 120px;
}
.client_logo_imgwrap.herb img {
  max-width: 120px;
}
.client_logo_imgwrap.sentence img {
  max-width: 100px;
}
.client_logo_imgwrap.bnd img {
  max-width: 130px;
}
.client_logo_imgwrap.hosokawa img {
  max-width: 120px;
}
.client_logo_imgwrap.marutsu img {
  max-width: 90px;
}
.client_logo_imgwrap.yamano img {
  max-width: 90px;
}
.client_logo_imgwrap.um img {
  max-width: 120px;
}
.client_logo_imgwrap.rankup img {
  max-width: 100px;
}
.client_logo_imgwrap.rhc img {
  max-width: 130px;
}

/*-------------------------------------------------------------------------
 eltexDC（エルテックス・ディーシー）が選ばれる理由
--------------------------------------------------------------------------*/
.top_reasons .reasons_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 80px;
}
@media screen and (max-width: 1180px) {
  .top_reasons .reasons_list {
    margin: 0 -8px calc(80px - 40px);
  }
}
@media screen and (max-width: 640px) {
  .top_reasons .reasons_list {
    width: 100%;
    margin: 0 0 calc(80px - 40px);
  }
}
.top_reasons .reasons_list > li {
  width: 50%;
  padding: 10px;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .top_reasons .reasons_list > li {
    width: 50%;
    padding: 8px;
  }
}
@media screen and (max-width: 640px) {
  .top_reasons .reasons_list > li {
    width: 100%;
  }
}
.top_reasons .reasons_list > li > a {
  width: 100%;
}
.top_reasons .reasons_list > li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 25px 40px;
  gap: 8px;
  position: relative;
}
.top_reasons .reasons_list > li a::after {
  font-family: "FontAwesome";
  content: "\f138";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
  font-size: 18px;
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
}
.top_reasons .reasons_list > li a .reason_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #EC6C00;
  color: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
@media screen and (max-width: 1180px) {
  .top_reasons .reasons_list > li a .reason_img {
    min-width: 50px;
  }
}
@media screen and (max-width: 640px) {
  .top_reasons .reasons_list > li a .reason_img {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
}
.top_reasons .reasons_list > li a:hover .reason_img {
  background-color: #EC6C00;
}
.top_reasons .reasons_list > li a .reason_title {
  padding: 10px;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .top_reasons .reasons_list > li a .reason_title {
    font-size: 16px;
  }
}
.top_reasons .reasons_list > li a .reason_ex {
  margin-top: auto;
  padding-top: 1em;
}
.top_reasons .reasons_list li:nth-child(1) .reason_image {
  margin-top: 1em;
  max-width: 446px;
}
.top_reasons .reasons_list li:nth-child(2) .reason_image {
  max-width: 387px;
}
.top_reasons .reasons_list li:nth-child(3) .reason_image {
  max-width: 227px;
}
.top_reasons .reasons_list li:nth-child(4) .reason_image {
  max-width: 254px;
}
.top_reasons .reasons_list li:nth-child(5) .reason_image {
  max-width: 234px;
}
.top_reasons .reasons_list li:nth-child(6) .reason_image {
  max-width: 348px;
}

/*-------------------------------------------------------------------------
 エルテックスDCの概要
--------------------------------------------------------------------------*/
.top_eltexdc ol, .top_eltexdc ul {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1180px) {
  .top_eltexdc ol, .top_eltexdc ul {
    font-size: 18px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 640px) {
  .top_eltexdc ol, .top_eltexdc ul {
    font-size: 16px;
    margin-top: 30px;
  }
}
.top_eltexdc ol li + li, .top_eltexdc ul li + li {
  margin-top: 10px;
}
.top_eltexdc .section_content_block2 .section_content_detail_imgs_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_eltexdc .section_content_detail_img {
  padding: 5px;
}
.top_eltexdc h3.deco_icon {
  margin-bottom: 1em;
}
.top_eltexdc .section_content_detail_columnbox_wrap {
  margin-top: 0;
}
.top_eltexdc .columnbox_list {
  margin-top: 0;
}
.top_eltexdc .columnbox_list li {
  margin-top: 0;
}
.top_eltexdc .columnbox_list .columnbox {
  border: 1px solid #cbcbcb;
}
.top_eltexdc .columnbox_list .columnbox_headline {
  font-size: 18px;
}
.top_eltexdc .enclosure_area .enclosure_title h3 {
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .top_eltexdc .enclosure_area .enclosure_title h3 {
    font-size: 18px;
  }
}
.top_eltexdc .enclosure_area .enclosure_contents {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 1em;
}
.top_eltexdc .enclosure_area .enclosure_contents dt {
  font-size: 18px;
  text-align: left;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .top_eltexdc .enclosure_area .enclosure_contents dt {
    font-size: 16px;
  }
}
.top_eltexdc .enclosure_area .enclosure_content {
  flex: 1;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1180px) {
  .top_eltexdc .enclosure_area .enclosure_content {
    flex: auto;
  }
}
@media screen and (max-width: 640px) {
  .top_eltexdc .enclosure_area .enclosure_content {
    font-size: 14px;
  }
}

/*-------------------------------------------------------------------------
 導入事例
--------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------
 FAQ
--------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------
 通販・ECコラム
--------------------------------------------------------------------------*/
.research_list .research_detail_beginning p {
  -webkit-line-clamp: none;
}

/*=========================================================================
//
// エルテックスDCが選ばれる理由
//
==========================================================================*/
/*-------------------------------------------------------------------------
 理由3内「お客様の声を実現することで、成長を続けてきました。」デザイン調整
--------------------------------------------------------------------------*/
.reason3 .section_content_block2 .section_content_detail_2columns {
  align-items: center;
}
.reason3 .section_content_block2 .section_content_detail_2columns .section_content_detail_img {
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .reason3 .section_content_block2 .section_content_detail_2columns .section_content_detail_img {
    width: 40%;
  }
}
.reason3 .section_content_block2 .section_content_detail_2columns .section_content_detail_img img {
  max-width: 170px;
}
.reason3 .section_content_block2 .section_content_detail_2columns .section_content_detail_txt {
  width: 80%;
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 640px) {
  .reason3 .section_content_block2 .section_content_detail_2columns .section_content_detail_txt {
    width: 100%;
    font-size: 16px;
    margin-top: 30px;
    padding: 0;
  }
}
.reason3 .section_content_block2 .section_content_detail_2columns .section_content_detail_txt p {
  margin-bottom: 2em;
}

/*-------------------------------------------------------------------------
 理由5内「業務画面の使いやすさにこだわって設計・デザインしました。」デザイン調整
--------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
  .reason5 .section_content_detail_2columns {
    flex-direction: column-reverse;
  }
}
.reason5 .section_content_detail_2columns .section_content_detail_txt {
  max-width: none;
}
@media screen and (max-width: 640px) {
  .reason5 .section_content_detail_2columns .section_content_detail_txt {
    margin-top: 30px;
  }
}
.reason5 .ul_checks {
  font-size: 18px;
}
@media screen and (max-width: 1180px) {
  .reason5 .ul_checks {
    font-size: 16px;
  }
}
.reason5 .ul_checks li + li {
  margin-top: 10px;
}

/*-------------------------------------------------------------------------
 理由6内 カラムタイトル デザイン調整
--------------------------------------------------------------------------*/
.reason6 .columnbox_headline {
  font-size: 16px;
}

/*=========================================================================
//
// エルテックスDCが選ばれる理由内 バナー記事
//
==========================================================================*/
.colorbox_article {
  /*-------------------------------------------------------------------------
   タイトルエリア
  --------------------------------------------------------------------------*/
  /*-------------------------------------------------------------------------
   section
  --------------------------------------------------------------------------*/
}
@media screen and (max-width: 1180px) {
  .colorbox_article {
    margin-top: -70px;
  }
}
.colorbox_article .article_head {
  padding: 40px 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_head {
    padding: 40px 20px 60px;
  }
}
.colorbox_article .article_tag_wrap {
  display: flex;
  flex-wrap: wrap;
}
.colorbox_article .article_tag_wrap .article_tag {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  padding: 8px 20px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_tag_wrap .article_tag {
    font-size: 14px;
  }
}
.colorbox_article .article_title_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 55px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_title_wrap {
    margin-bottom: 30px;
  }
}
.colorbox_article .article_title_wrap .article_title_before {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_title_wrap .article_title_before {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.colorbox_article .article_title_wrap .article_title {
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_title_wrap .article_title {
    font-size: 20px;
    line-height: 1.7;
  }
}
.colorbox_article .article_title_wrap::after {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  background-color: #EC6C00;
  margin-top: 10px;
}
.colorbox_article picture {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}
.colorbox_article figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}
.colorbox_article .article_summary_wrap {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_summary_wrap {
    margin-top: 20px;
  }
}
.colorbox_article .article_summary_wrap .article_summary {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 40px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_summary_wrap .article_summary {
    padding: 30px 20px;
  }
}
.colorbox_article .article_section {
  padding: 80px 40px;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_section {
    padding: 40px 20px 60px;
  }
}
.colorbox_article .article_section .article_section_title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #666;
  padding: 10px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_section .article_section_title {
    margin-bottom: 20px;
  }
}
.colorbox_article .article_section .article_section_img {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_section .article_section_img {
    margin-top: 20px;
  }
}
.colorbox_article .article_section .article_section_content {
  margin: 40px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 640px) {
  .colorbox_article .article_section .article_section_content {
    margin-top: 20px;
  }
}
.colorbox_article .article_section .article_section_content p + p {
  margin-top: 1.5em;
}
.colorbox_article .source {
  padding: 20px 40px 80px;
  text-align: right;
  font-size: 14px;
}

/*=========================================================================
//
// エルテックスDCの製品概要
//
==========================================================================*/
/*-------------------------------------------------------------------------
 メインビジュアル設定
--------------------------------------------------------------------------*/
.products_top_visual {
  padding: 72px 40px;
  background-image: url("/contents/eltexdc/img/1774197867523-l6nqht1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 20vw;
  min-height: 300px;
}
@media screen and (max-width: 1180px) {
  .products_top_visual {
    min-height: 0;
    padding: 4vw 20px;
  }
}
@media screen and (max-width: 640px) {
  .products_top_visual {
    min-height: auto;
    height: auto;
    background-size: contain;
    background-position: bottom center;
  }
}
.products_top_visual .top_visual_copy_area {
  height: 100%;
}
.products_top_visual .top_visual_copy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 650px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 40px;
}
.products_top_visual .top_visual_copy p {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 1180px) {
  .products_top_visual .top_visual_copy {
    max-width: 60%;
    padding: 1.5em;
  }
  .products_top_visual .top_visual_copy p {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 640px) {
  .products_top_visual .top_visual_copy {
    max-width: 100%;
    padding: 0;
    height: auto;
    background-color: transparent;
    padding-bottom: 20vw;
  }
  .products_top_visual .top_visual_copy p {
    font-size: 20px;
  }
}

/*-------------------------------------------------------------------------
 通販/EC統合パッケージ「eltexDC（エルテックス・ディーシー）」とは
--------------------------------------------------------------------------*/
/* h2タイトル
--------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
  .products .about h2 {
    font-size: 20px;
  }
}

/* こんなお客様に導入いただいています
--------------------------------------------------------------------------*/
.products .about .columnbox_list.row1 .columnbox_txt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .about .columnbox_list.row1 .columnbox_txt ul {
  display: inline-block;
}
.products .about .columnbox_list.row1 .columnbox_txt ul li {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .products .about .columnbox_list.row1 .columnbox_txt ul li {
    font-size: 14px;
  }
}

/* 機能1
--------------------------------------------------------------------------*/
.products .about .columnbox_list.row3 li:first-child .columnbox_txt_imgwrap {
  max-width: 218px;
  margin: 0 auto;
}

/*-------------------------------------------------------------------------
 eltexDCの機能
--------------------------------------------------------------------------*/
.products .function .section_content_block1 h3.deco_icon .icon::before { /* バックオフィス機能 */
  font-family: "FontAwesome";
  content: "\f085";
  font-weight: 400;
  line-height: 1;
  font-size: 18px;
}
.products .function .section_content_block2 h3.deco_icon { /* ECフロント機能 */
  margin-top: 130px;
}
.products .function .section_content_block2 h3.deco_icon .icon::before {
  font-family: "FontAwesome";
  content: "\f108";
  font-weight: 400;
  line-height: 1;
  font-size: 18px;
}
.products .function .columnbox_headline {
  font-size: 18px;
}

/* 主要機能一覧
--------------------------------------------------------------------------*/
.products table thead th:first-child {
  width: 190px;
}
@media screen and (max-width: 640px) {
  .products table thead th:first-child {
    width: 150px;
  }
}
.products table .cost_large {
  font-size: 21px;
  padding: 0 3px;
}
@media screen and (max-width: 640px) {
  .products .cost .section_content_detail_table {
    overflow-y: scroll;
  }
  .products .cost table th:not(:first-child) {
    width: 200px;
  }
}

/*-------------------------------------------------------------------------
 人物紹介
--------------------------------------------------------------------------*/
.section_content_detail_person_wrap {
  border: 1px solid #cbcbcb;
  padding: 40px;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_person_wrap {
    padding: 20px;
  }
}

.section_content_detail_person_title {
  padding: 40px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .section_content_detail_person_title {
    padding: 20px;
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .section_content_detail_person_title {
    font-size: 20px;
  }
}

.person .person_list {
  display: flex;
}
@media screen and (max-width: 640px) {
  .person .person_list {
    flex-direction: column;
  }
}
.person .person_list li {
  width: 50%;
  padding: 20px 40px 40px;
}
@media screen and (max-width: 1180px) {
  .person .person_list li {
    padding: 20px 20px 20px;
  }
}
@media screen and (max-width: 640px) {
  .person .person_list li {
    width: 100%;
  }
  .person .person_list li:not(:last-child) {
    border-bottom: 1px solid #cbcbcb;
  }
}
.person .person_data_wrap {
  padding: 80px 0 20px;
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 20px;
}
@media screen and (max-width: 1180px) {
  .person .person_data_wrap {
    padding-top: 20px;
  }
}
.person .person_data_wrap .person_data {
  font-weight: 700;
  padding-bottom: 20px;
}
.person .person_data_wrap .person_name {
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1180px) {
  .person .person_data_wrap .person_name {
    font-size: 20px;
  }
}
.person .person_data_wrap .person_post {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1180px) {
  .person .person_data_wrap .person_post {
    font-size: 18px;
  }
}
.person .person_data_wrap .person_intro {
  font-size: 14px;
}

/*-------------------------------------------------------------------------
 主要製品＆サービスラインナップ
--------------------------------------------------------------------------*/
.products_lineup {
  padding-top: 0;
}

/*=========================================================================
//
// エルテックスCX製品概要と関連サービス
//
==========================================================================*/
.eltexcx .section_content_img {
  max-width: 534px;
}
.eltexits .section_content_img {
  max-width: 456px;
}
.eltexsms .section_content_img {
  max-width: 510px;
}
.eltexuxd .section_content_img {
  max-width: 435px;
}

/*-------------------------------------------------------------------------
 eltexCX
--------------------------------------------------------------------------*/
.products_services .eltexcx .columnbox_txt_imgwrap {
  max-width: 220px;
  margin: 0 auto;
}

/*-------------------------------------------------------------------------
 eltexITS
--------------------------------------------------------------------------*/
.products_services .eltexits .section_content_block1 .section_content_detail_2columns .section_content_detail_txt {
  max-width: 680px;
}
.products_services .eltexits .section_content_block1 .section_content_detail_2columns .section_content_detail_img {
  text-align: center;
}
.products_services .eltexits .section_content_block1 .section_content_detail_2columns .section_content_detail_img img {
  max-width: 280px;
}
.products_services .eltexits .columnbox_index {
  background-color: #009859;
}

/*-------------------------------------------------------------------------
 eltexSMS
--------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------
 eltexUXD
--------------------------------------------------------------------------*/
.products_services .eltexuxd .section_content_detail_2columns .section_content_detail_txt {
  max-width: 780px;
}
@media screen and (max-width: 640px) {
  .products_services .eltexuxd .section_content_detail_2columns .section_content_detail_txt {
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .products_services .eltexuxd .section_content_detail_2columns {
    flex-direction: column-reverse;
  }
}

/*=========================================================================
//
// エルテックスDCの導入事例
//
==========================================================================*/
/*-------------------------------------------------------------------------
 導入企業一覧
--------------------------------------------------------------------------*/
.client_works_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 1180px) {
  .client_works_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  .client_works_list {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
}
.client_works_list .client_works_list_row {
  border: 1px solid #ccc;
}
.client_works_list .client_works_list_row a {
  display: block;
  padding: 0 5px 20px 5px;
  text-align: center;
}
.client_works_list .client_works_list_row a.no_pointer_events {
  pointer-events: none;
}
.client_works_list .client_works_list_row a:hover {
  opacity: 0.7;
}
.client_works_list .customer_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.client_works_list .customer_logo img {
  max-width: 85%;
}
.client_works_list .ayura img {
  width: 140px;
}
.client_works_list .egao img {
  width: 140px;
}
.client_works_list .kirin img {
  width: 180px;
}
.client_works_list .sammy img {
  width: 140px;
}
.client_works_list .sansho img {
  width: 180px;
}
.client_works_list .jalux img {
  width: 110px;
}
.client_works_list .jrcross img {
  width: 180px;
}
.client_works_list .jtb img {
  width: 195px;
}
.client_works_list .sns img {
  width: 212px;
}
.client_works_list .sekaibunka img {
  width: 140px;
}
.client_works_list .chojyu img {
  width: 170px;
}
.client_works_list .tepco img {
  width: 140px;
}
.client_works_list .nicorio img {
  width: 170px;
}
.client_works_list .herb img {
  width: 170px;
}
.client_works_list .sentence img {
  width: 165px;
}
.client_works_list .bnd img {
  width: 265px;
}
.client_works_list .hosokawa img {
  width: 200px;
}
.client_works_list .marutsu img {
  width: 140px;
}
.client_works_list .yamano img {
  width: 140px;
}
.client_works_list .um img {
  width: 230px;
}
.client_works_list .rankup img {
  width: 170px;
}
.client_works_list .rhc img {
  width: 235px;
}
@media screen and (max-width: 640px) {
  .client_works_list .ayura img {
    width: 100px;
  }
  .client_works_list .egao img {
    width: 100px;
  }
  .client_works_list .kirin img {
    width: 130px;
  }
  .client_works_list .sammy img {
    width: 100px;
  }
  .client_works_list .sansho img {
    width: 140px;
  }
  .client_works_list .jalux img {
    width: 80px;
  }
  .client_works_list .jrcross img {
    width: 110px;
  }
  .client_works_list .jtb img {
    width: 128px;
  }
  .client_works_list .sns img {
    width: 130px;
  }
  .client_works_list .sekaibunka img {
    width: 120px;
  }
  .client_works_list .chojyu img {
    width: 130px;
  }
  .client_works_list .tepco img {
    width: 100px;
  }
  .client_works_list .nicorio img {
    width: 130px;
  }
  .client_works_list .herb img {
    width: 130px;
  }
  .client_works_list .sentence img {
    width: 100px;
  }
  .client_works_list .bnd img {
    width: 140px;
  }
  .client_works_list .hosokawa img {
    width: 140px;
  }
  .client_works_list .marutsu img {
    width: 100px;
  }
  .client_works_list .yamano img {
    width: 100px;
  }
  .client_works_list .um img {
    width: 140px;
  }
  .client_works_list .rhc img {
    width: 140px;
  }
}
.client_works_list .customer_name {
  font-size: 12px;
}
.client_works_list .external_link::after {
  color: #EC6C00;
}

/*=========================================================================
//
// エルテックスDCの導入事例　お客様の声
//
==========================================================================*/
/*-------------------------------------------------------------------------
 タイトル
--------------------------------------------------------------------------*/
.case_study_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .case_study_title {
    font-size: 36px;
  }
}
@media screen and (max-width: 640px) {
  .case_study_title {
    font-size: 28px;
  }
}

.section_content_block h1 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px solid #333;
  margin-bottom: 60px;
}
@media screen and (max-width: 1180px) {
  .section_content_block h1 {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .section_content_block h1 {
    font-size: 20px;
    text-align: left;
  }
  .section_content_block h1 .clause {
    display: inline;
  }
}

@media screen and (min-width: 1180px) {
  .clause.client {
    padding-right: 0.5em;
  }
}
@media screen and (max-width: 1180px) {
  .clause.client {
    display: block;
  }
}

/*-------------------------------------------------------------------------
 導入事例・お客様の声
--------------------------------------------------------------------------*/
/* お客様：case_study_list
----------------------------------------------------------- */
@media screen and (max-width: 1180px) {
  .case_study_detail .case_study_list_work_row1 {
    width: 100%;
  }
}
.case_study_detail .case_study_list_work_row1 .customer_logo {
  display: inline-block;
  max-width: 300px;
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_row1 .customer_logo {
    display: flex;
    max-width: 80%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.case_study_detail .case_study_list_work_row1 .customer_logo img {
  max-width: 100%;
}
.case_study_detail .case_study_list_work_row1.um .customer_logo {
  max-width: 90%;
  width: 460px;
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_row1.um .customer_logo {
    max-width: 90%;
  }
}
@media screen and (max-width: 1180px) {
  .case_study_detail .case_study_list_work_wrap {
    flex-direction: row;
  }
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_wrap {
    flex-direction: column;
  }
}
.case_study_detail .case_study_list_work_img {
  background: none;
  width: 45%;
  min-height: unset;
}
@media screen and (max-width: 1180px) {
  .case_study_detail .case_study_list_work_img {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_img {
    width: 100%;
    min-height: unset;
  }
}
.case_study_detail .case_study_list_work_img .image {
  width: 100%;
  display: block;
  overflow: hidden;
}
.case_study_detail .case_study_list_work_img img, .case_study_detail .case_study_list_work_img source {
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: clamp(100%, 48vw, 567px);
  height: clamp(246px, 58vh, 379px);
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_img img, .case_study_detail .case_study_list_work_img source {
    -o-object-fit: unset;
       object-fit: unset;
    -o-object-position: unset;
       object-position: unset;
    height: auto;
  }
}
@media screen and (max-width: 1180px) {
  .case_study_detail .case_study_list_work_info_wrap {
    flex: none;
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_info_wrap {
    width: 100%;
  }
}
.case_study_detail .case_study_list_work_info_wrap_inner {
  max-width: 550px;
  text-align: center;
}
.case_study_detail .customer_name {
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .case_study_detail .customer_name {
    font-size: 14px;
  }
}
.case_study_detail .case_study_list_work_points li {
  font-weight: 700;
  font-size: clamp(14px, 2.1vw, 18px);
  text-align: left;
}
@media screen and (max-width: 640px) {
  .case_study_detail .case_study_list_work_points li {
    font-size: 14px;
  }
}

/* 課題：solution
----------------------------------------------------------- */
.solution {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1180px) {
  .solution {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media screen and (max-width: 1180px) {
  .solution {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (max-width: 640px) {
  .solution {
    gap: 40px 0;
  }
}
.solution dl {
  background-color: #fff;
  padding: 20px 40px;
  position: relative;
  width: calc(50% - 30px);
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .solution dl {
    padding: 20px;
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 640px) {
  .solution dl {
    width: 100%;
  }
}
.solution dl dt {
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 21px);
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.solution dl .solution_title {
  font-weight: 700;
  margin-top: 20px;
}
.solution dl ol {
  counter-reset: number;
  margin-top: 10px;
}
.solution dl ol li {
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  margin-top: 10px;
  padding-left: 1.5em;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .solution dl ol li {
    font-size: 14px;
  }
}
.solution dl ol li::before {
  background-color: #EC6C00;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 4px;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  line-height: 1.6em;
}
.solution dl.problem {
  border: 1px solid #ccc;
}
.solution dl.problem::after {
  content: "";
  display: block;
  background-color: #EC6C00;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  height: 60px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1180px) {
  .solution dl.problem::after {
    right: -32px;
  }
}
@media screen and (max-width: 640px) {
  .solution dl.problem::after {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    height: 20px;
    width: 40px;
    bottom: -32px;
    left: 50%;
    top: unset;
    transform: translate(-50%, 0);
  }
}
.solution dl.plan {
  border: 1px solid #EC6C00;
}

/* 記事：case_study_article
----------------------------------------------------------- */
.case_study_article {
  max-width: 1000px;
  margin: 100px auto 0;
}
@media screen and (max-width: 640px) {
  .case_study_article {
    margin-top: 80px;
  }
}
.case_study_article.no_mgn {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .case_study_article.no_mgn {
    margin-top: 2em;
  }
}
.case_study_article .case_study_article_inner {
  display: flex;
  flex-wrap: wrap;
}
.case_study_article .article_width_2col, .case_study_article .article_img, .case_study_article .article_txt {
  max-width: 468px;
  width: calc(50% - 32px);
}
.case_study_article .article_title {
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 2em;
  padding-bottom: 15px;
  position: relative;
}
.case_study_article .article_title::after {
  content: "";
  display: inline-block;
  border: 2px solid #cbcbcb;
  width: 56px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .case_study_article .article_txt {
    max-width: 100%;
    width: 100%;
  }
}
.case_study_article .article_txt_full {
  width: 100%;
}
.case_study_article .question {
  font-weight: 700;
  margin-bottom: 2em;
}
.case_study_article .answer {
  margin-bottom: 2em;
}
.case_study_article .answer .name {
  font-weight: 700;
}
.case_study_article:nth-child(odd) .case_study_article_inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .case_study_article:nth-child(odd) .case_study_article_inner {
    flex-direction: column;
  }
}
.case_study_article:nth-child(odd) .article_img {
  margin: 0.5em 0 30px 64px;
}
@media screen and (max-width: 640px) {
  .case_study_article:nth-child(odd) .article_img {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .case_study_article:nth-child(even) .case_study_article_inner {
    flex-direction: column;
  }
}
.case_study_article:nth-child(even) .article_img {
  margin: 0.5em 64px 30px 0;
}
@media screen and (max-width: 640px) {
  .case_study_article:nth-child(even) .article_img {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .case_study_article .article_img {
    max-width: 100%;
    width: 100%;
    order: 1;
  }
}

.article_info {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin: 0 auto;
  width: 358px;
  max-width: 100%;
}
.article_info .article_info_inner {
  background-color: #fff;
  border: 1px solid #EC6C00;
  padding: 20px 8%;
  text-align: center;
}
.article_info .article_info_title {
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.article_info .article_info_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.article_info .article_info_list li {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
.article_info .article_info_list li::before {
  content: "●";
  color: #EC6C00;
  margin-right: 0.5em;
  font-size: 0.5em;
  vertical-align: middle;
}
.article_info .article_info_list li .no_list_style {
  text-indent: 0;
}
.article_info .article_info_list li .no_list_style::before {
  content: none;
}

.case_study_detail .section_content_detail_table th {
  width: 190px;
}
@media screen and (max-width: 640px) {
  .case_study_detail .section_content_detail_table th {
    width: 45%;
  }
}
.case_study_detail .caption {
  font-size: 14px;
  margin-top: 10px;
}
.case_study_detail .enclosure {
  margin-bottom: 2em;
}
.case_study_detail .enclosure .note + .note {
  margin-top: 0.8em;
}
.case_study_detail .prologue {
  font-weight: 700;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 100px auto;
  padding: 25px 15px;
}
@media screen and (max-width: 640px) {
  .case_study_detail .prologue {
    margin: 80px auto;
    padding: 15px 0;
  }
}
.case_study_detail .source {
  font-size: 14px;
  text-align: right;
}

/* 紹介：introduction
----------------------------------------------------------- */
.introduction {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .introduction {
    margin-top: 80px;
  }
}

/* エルテックスDCの概要・その他の導入事例リンク：link_banner_area
----------------------------------------------------------- */
.link_banner_area {
  padding-top: 130px;
}

.bnr_eltexdc {
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .bnr_eltexdc {
    margin-bottom: 40px;
  }
}

/* 関連するお客様の声：related_customer
----------------------------------------------------------- */
.related_customer {
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .related_customer {
    margin-bottom: 80px;
  }
}
.related_customer .case_study_list {
  margin-bottom: 0;
}

/*=========================================================================
//
// FAQ
//
==========================================================================*/
.faq_table_wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.faq_table li {
  padding: 10px 0;
}
.faq_table li .faq_wrap {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #cbcbcb;
}
@media screen and (max-width: 640px) {
  .faq_table li .faq_wrap {
    padding: 30px 20px;
  }
}
.faq_table .faq_q {
  position: relative;
  border-bottom: 1px solid #cbcbcb;
  line-height: 1.5;
  padding-left: 56px;
  padding-bottom: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .faq_table .faq_q {
    font-size: 16px;
    padding-left: 42px;
  }
}
.faq_table .faq_q h3 {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}
.faq_table .faq_q p {
  display: flex;
  align-items: center;
  min-height: 40px;
}
@media screen and (max-width: 640px) {
  .faq_table .faq_q p {
    min-height: 30px;
  }
}
.faq_table .faq_q::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-image: url("/contents/eltexdc/img/1774197867528-h4luaum.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (max-width: 640px) {
  .faq_table .faq_q::before {
    width: 30px;
    height: 30px;
  }
}
.faq_table .faq_a {
  position: relative;
  font-size: 14px;
  padding-left: 56px;
}
@media screen and (max-width: 640px) {
  .faq_table .faq_a {
    padding-left: 42px;
  }
}
.faq_table .faq_a p {
  min-height: 40px;
}
@media screen and (max-width: 640px) {
  .faq_table .faq_a p {
    min-height: 30px;
  }
}
.faq_table .faq_a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  background-image: url("/contents/eltexdc/img/1774197867532-f1hgnrs.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (max-width: 640px) {
  .faq_table .faq_a::before {
    width: 30px;
    height: 30px;
  }
}

.faq section:last-child {
  margin-bottom: 130px;
}

/*=========================================================================
//
// 通販・EC調査＆コラム
//
==========================================================================*/
/*=========================================================================
//
// 通販・EC調査＆コラム 詳細
//
==========================================================================*/
.research_title h1 {
  font-size: 32px;
  margin-bottom: 0;
}
@media screen and (max-width: 1180px) {
  .research_title h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .research_title h1 {
    font-size: 22px;
  }
}

.research_column_detail {
  padding-bottom: 130px;
}
.research_column_detail .article_inner {
  max-width: calc(1000px + 40px * 2);
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .article_inner {
    padding: 0 20px;
  }
}
.research_column_detail .research_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 55px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_title {
    margin-bottom: 30px;
  }
}
.research_column_detail .research_title::after {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  background-color: #EC6C00;
  margin-top: 10px;
}
.research_column_detail .research_title span {
  display: block;
  font-size: 0.8em;
}
.research_column_detail section {
  padding: 80px 0 0;
}
@media screen and (max-width: 640px) {
  .research_column_detail section {
    padding: 60px 0 0;
  }
}
.research_column_detail section:nth-of-type(even), .research_column_detail section:nth-of-type(odd) {
  background-color: transparent;
}
.research_column_detail .research_entry_img {
  margin-top: 60px;
}
.research_column_detail .research_entry_img .imgwrap {
  max-width: 600px;
  margin: 0 auto;
}
.research_column_detail .research_subtitle,
.research_column_detail .research_block_headline {
  margin-top: 60px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #666;
  padding: 10px 0;
}
.research_column_detail .research_date_wrap {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 5px;
  margin-top: 20px;
}
.research_column_detail .research_date_wrap p::before {
  margin-right: 5px;
}
.research_column_detail .research_date_wrap .release_date::before {
  content: "公開日時";
}
.research_column_detail .research_date_wrap .update_date::before {
  content: "更新日時";
}
.research_column_detail .research_block {
  margin-bottom: 100px;
}
.research_column_detail .research_block_intro p {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 0;
}
.research_column_detail .research_block_intro_img {
  max-width: 600px;
  margin: 40px auto 0;
}
.research_column_detail .research_section_title h2 {
  position: relative;
  margin-top: 0;
  font-size: 20px;
}
.research_column_detail .research_section_title h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background-color: #cbcbcb;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -10px;
  left: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .research_column_detail .research_section_title h2 br.d_inline {
    display: none;
  }
}
.research_column_detail .research_section_content {
  margin-top: 60px;
}
.research_column_detail .research_section_content h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 0.5em;
}
.research_column_detail .research_section_content .research_section_content_txt:not(:first-child),
.research_column_detail .research_section_content .research_section_content_img:not(:first-child),
.research_column_detail .research_section_content .research_section_content_download_ex:not(:first-child) {
  padding-top: 40px;
}
.research_column_detail .research_section_content_download_ex {
  text-align: center;
}
.research_column_detail .research_section_content_download_ex .download_ex_lead {
  font-weight: 700;
  margin-bottom: 15px;
}
.research_column_detail .research_section_content_download_ex .download_ex_lead::before {
  content: "※";
}
.research_column_detail .research_section_content_download_ex .download_ex_detail {
  font-size: 14px;
}
.research_column_detail .research_section_content_download_ex .btn_wrap,
.research_column_detail .research_section_content_download_ex .linkwrap {
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_section_content_download_ex {
    text-align: left;
  }
}
.research_column_detail .research_summary_area {
  margin-top: 80px;
}
.research_column_detail .research_summary {
  border: 1px solid #cbcbcb;
  padding: 15px 30px 30px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_summary {
    padding: 15px 20px 20px;
  }
}
.research_column_detail .research_summary_title {
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 21px;
}
.research_column_detail .research_summary_contents {
  padding-top: 15px;
}
.research_column_detail .research_summary_table {
  font-size: 16px;
}
.research_column_detail .research_summary_table th, .research_column_detail .research_summary_table td {
  border: none;
  padding: 3px 10px;
}
.research_column_detail .research_summary_table th {
  background-color: transparent;
  color: #333;
  width: 150px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_summary_table tr {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
  }
  .research_column_detail .research_summary_table th, .research_column_detail .research_summary_table td {
    width: 100%;
    padding: 3px 0;
  }
  .research_column_detail .research_summary_table th {
    font-size: 14px;
  }
}
.research_column_detail .research_info_area {
  margin-top: 80px;
}
.research_column_detail .research_info {
  background-color: #f5f5f5;
  padding: 25px 40px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.research_column_detail .research_info > div + div {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_info {
    padding: 25px 20px 20px;
  }
}
.research_column_detail .research_info_author_title,
.research_column_detail .research_info_contact_title {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_info_author_title,
  .research_column_detail .research_info_contact_title {
    font-size: 20px;
  }
}
.research_column_detail .research_info_author_contents,
.research_column_detail .research_info_contact_contents {
  padding-top: 15px;
}
.research_column_detail .author_name {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.research_column_detail .author_ex {
  margin-top: 10px;
  font-size: 14px;
}
.research_column_detail .research_info_contact_contents .lead {
  text-align: center;
}
.research_column_detail .research_info_contact_data {
  margin-top: 10px;
  background-color: #fff;
  padding: 30px;
  font-weight: 700;
}
.research_column_detail .research_info_contact_data .tel,
.research_column_detail .research_info_contact_data .email {
  display: inline-block;
  padding-right: 20px;
}
.research_column_detail .research_info_contact_data .tel::before {
  content: "TEL：";
}
.research_column_detail .research_info_contact_data .email::before {
  content: "E-mail：";
}
@media screen and (max-width: 640px) {
  .research_column_detail .research_info_contact_data {
    padding: 20px;
  }
}
.research_column_detail .bnr_area {
  margin: 60px auto;
}
.research_column_detail .prev_next_link_area {
  max-width: calc(1240px + 40px * 2);
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .research_column_detail .prev_next_link_area {
    padding: 0 20px;
  }
}
.research_column_detail .prev_next_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
.research_column_detail .prev_next_link a {
  padding: 5px 30px;
  font-weight: 700;
  display: block;
  word-break: auto-phrase;
}
.research_column_detail .prev_next_link .prev_link {
  position: relative;
  display: flex;
  align-items: center;
}
.research_column_detail .prev_next_link .prev_link::before {
  font-family: "FontAwesome";
  content: "\f137";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 1em;
  margin-block: auto;
}
.research_column_detail .prev_next_link .prev_link + .next_link {
  border-left: 1px solid #cbcbcb;
}
.research_column_detail .prev_next_link .next_link {
  position: relative;
  display: flex;
  align-items: center;
}
.research_column_detail .prev_next_link .next_link::after {
  font-family: "FontAwesome";
  content: "\f138";
  font-weight: 400;
  line-height: 1;
  color: #EC6C00;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 1em;
  margin-block: auto;
}
@media screen and (max-width: 640px) {
  .research_column_detail .prev_next_link {
    margin-bottom: 60px;
  }
  .research_column_detail .prev_next_link a {
    padding: 5px 20px;
  }
  .research_column_detail .prev_next_link .prev_link,
  .research_column_detail .prev_next_link .next_link {
    padding: 10px 0;
  }
  .research_column_detail .prev_next_link .prev_link {
    text-indent: 0;
  }
  .research_column_detail .prev_next_link .next_link {
    border-left: none;
    text-indent: 0;
  }
}
.research_column_detail .essential_area {
  background-color: #f5f5f5;
  margin: 1.7em 0;
  padding: 20px;
}
.research_column_detail .about_inc_area {
  border: 1px solid #cbcbcb;
  margin-top: 80px;
  padding: 15px 30px 30px;
}
@media screen and (max-width: 640px) {
  .research_column_detail .about_inc_area {
    padding: 15px 20px 20px;
  }
}
.research_column_detail .about_inc_area .about_inc_title {
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
}
.research_column_detail .about_inc_area .about_inc_contents {
  font-size: 14px;
  padding-top: 15px;
}

#article .research_block01_section_img01_2025-1224 {
  width: 600px;
  height: 383px;
  margin: 95px auto -120px auto;
}

#article .research_block01_section_img02_2025-1224 {
  width: 600px;
  height: 383px;
  margin: -30px auto -100px auto;
}

@media (max-width: 684px) {
  #article .research_block01_section_img01_2025-1224,
  #article .research_block01_section_img02_2025-1224 {
    width: 100%;
    height: auto;
  }
  #article .research_block01_section_img01_2025-1224 {
    width: 100%;
    margin: 35px auto -100px auto;
  }
  #article .research_block01_section_img02_2025-1224 {
    width: 100%;
    margin: -30px auto;
  }
}
/*=========================================================================
//
// エルテックスの会社概要
//
==========================================================================*/
.txt_copy {
  font-size: 20px;
  font-weight: 700;
}

.company .section01 .section_content_detail_2columns .txt_copy {
  margin-top: 60px;
}

/*-------------------------------------------------------------------------
 会社概要
--------------------------------------------------------------------------*/
.company .section01 table.table_border th {
  width: 200px;
}
.company .section01 table.table_border .linkwrap {
  margin-top: 10px;
}
.company .section01 table.table_border .imgwrap {
  max-width: 623px;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .company .section01 table.table_border > tbody > tr {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
  }
  .company .section01 table.table_border th, .company .section01 table.table_border td {
    width: 100%;
    padding: 5px 0;
  }
  .company .section01 table.table_border th {
    width: 100%;
    font-size: 14px;
  }
}
.company .section01 table.table_simple th {
  width: 180px;
}
@media screen and (max-width: 640px) {
  .company .section01 table.table_simple th {
    width: 150px;
  }
}
.company .section01 .section_content_detail_customers_list_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .company .section01 .section_content_detail_customers_list_wrap {
    margin-top: 20px;
  }
}
.company .section01 .customers_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
}
.company .section01 .customers_list li {
  width: 50%;
  padding: 2px 10px;
}
@media screen and (max-width: 640px) {
  .company .section01 .customers_list {
    padding: 20px;
  }
  .company .section01 .customers_list li {
    width: 100%;
    padding: 2px 0;
  }
}

/*-------------------------------------------------------------------------
 企業理念
--------------------------------------------------------------------------*/
.num_columnbox_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.num_columnbox_list li {
  padding: 10px;
  flex: 1;
  counter-increment: column_number;
}
@media screen and (max-width: 640px) {
  .num_columnbox_list li {
    flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 1180px) {
  .num_columnbox_list.row4 li {
    flex: auto;
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .num_columnbox_list.row4 li {
    width: 100%;
  }
}
.num_columnbox_list .num_columnbox {
  position: relative;
  height: 100%;
  padding: 50px 30px 25px;
  background-color: #fff;
  font-size: 14px;
}
.num_columnbox_list .num_columnbox::before {
  content: counter(column_number);
  position: absolute;
  top: -10px;
  right: 0;
  bottom: auto;
  left: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #EC6C00;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
}

.gray_columnbox .num_columnbox {
  background-color: #f5f5f5;
}

/*-------------------------------------------------------------------------
 沿革
--------------------------------------------------------------------------*/
.company .section04 table.table_border th {
  width: 250px;
}
@media screen and (max-width: 640px) {
  .company .section04 table.table_border th {
    width: 100px;
  }
}

/*-------------------------------------------------------------------------
 SDGs への取り組み
--------------------------------------------------------------------------*/
.company .section05 .section_content_txt {
  max-width: 1120px;
}
.company .section05 .section_content_detail_2columns:not(.column_reverse) {
  align-items: center;
}
.company .section05 .section_content_detail_2columns:not(.column_reverse) .section_content_detail_txt {
  padding-left: 40px;
  padding-right: 0;
  max-width: none;
}
@media screen and (max-width: 640px) {
  .company .section05 .section_content_detail_2columns:not(.column_reverse) .section_content_detail_txt {
    padding-left: 0;
    margin-top: 20px;
  }
}
.company .section05 .section_content_detail_2columns.column_reverse .section_content_detail_txt {
  width: 40%;
  padding-right: 0;
}
.company .section05 .section_content_detail_2columns.column_reverse .section_content_detail_img {
  width: 60%;
  padding-left: 40px;
  max-width: none;
}
@media screen and (max-width: 640px) {
  .company .section05 .section_content_detail_2columns.column_reverse {
    margin-top: 60px;
  }
  .company .section05 .section_content_detail_2columns.column_reverse .section_content_detail_txt {
    width: 100%;
    margin-top: 20px;
  }
  .company .section05 .section_content_detail_2columns.column_reverse .section_content_detail_img {
    width: 80%;
    padding-left: 0;
    text-align: center;
  }
}
.company .section05 .section_content_detail_2columns:nth-child(2) img {
  width: 100%;
}
.company .section05 .section_content_detail_2columns:nth-child(3) img {
  width: 50%;
}
.company .section05 .section_content_detail_2columns:nth-child(4) img {
  width: 75%;
}

/*-------------------------------------------------------------------------
 アクセス
--------------------------------------------------------------------------*/
.company .section06 .map {
  height: 0;
  overflow: hidden;
  padding-bottom: 372px;
  position: relative;
}
.company .section06 iframe {
  position: absolute;
  height: 100%;
}
.company .section06 .mapinfo {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.company .section06 .mapinfo .map_address {
  font-weight: 700;
  padding-right: 40px;
}
.company .section06 .mapinfo .btn_detail {
  min-width: 260px;
}
@media screen and (max-width: 640px) {
  .company .section06 .mapinfo {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: 20px;
  }
  .company .section06 .mapinfo .map_address {
    padding-right: 0;
    margin-top: 20px;
  }
  .company .section06 .mapinfo .btn_wrap {
    width: 100%;
  }
  .company .section06 .mapinfo .btn_detail {
    max-width: 100%;
  }
}
.company .section06 .columnbox_headline {
  padding-top: 10px;
}
.company .section06 .columnbox_headline::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: #EC6C00;
  color: #fff;
  font-size: 18px;
}
.company .section06 .columnbox_list.row3 li:nth-child(1) .columnbox_headline::before {
  font-family: "FontAwesome";
  content: "\f238";
  font-weight: 400;
  line-height: 1;
}
.company .section06 .columnbox_list.row3 li:nth-child(2) .columnbox_headline::before {
  font-family: "FontAwesome";
  content: "\f1ba";
  font-weight: 400;
  line-height: 1;
}
.company .section06 .columnbox_list.row3 li:nth-child(3) .columnbox_headline::before {
  font-family: "FontAwesome";
  content: "\f072";
  font-weight: 400;
  line-height: 1;
}
.company .section06 .columnbox_list.row2 li:nth-child(1) .columnbox_headline::before {
  font-family: "FontAwesome";
  content: "\f207";
  font-weight: 400;
  line-height: 1;
}
.company .section06 .columnbox_list.row2 li:nth-child(2) .columnbox_headline::before {
  content: "P";
}

/*=========================================================================
//
// お問い合わせフロー
//
==========================================================================*/
.input_form {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px 130px;
}
@media screen and (max-width: 640px) {
  .input_form {
    padding: 0 20px 80px;
  }
}

.message {
  text-align: center;
}

#contact_thanks .message,
#doc_download_thanks .message {
  margin-top: -40px;
  margin-bottom: 40px;
  padding: 0 40px;
}
@media screen and (max-width: 640px) {
  #contact_thanks .message,
  #doc_download_thanks .message {
    padding: 0 20px;
  }
}

#contact .intro {
  padding-bottom: 0;
}

#doc_download .intro {
  padding-bottom: 40px;
}
@media screen and (max-width: 640px) {
  #doc_download .intro {
    padding-bottom: 0;
  }
}

/*=========================================================================
//
// 資料ダウンロード登録フロー
//
==========================================================================*/
#doc_download_thanks .btn_wrap {
  margin-bottom: 120px;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 10px;
}
@media screen and (max-width: 640px) {
  #doc_download_thanks .btn_wrap {
    flex-direction: column;
    align-items: center;
  }
}
#doc_download_thanks .btn_wrap li {
  padding: 10px;
  width: 50%;
}
#doc_download_thanks .btn_wrap li .note {
  max-width: 340px;
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  #doc_download_thanks .btn_wrap li {
    width: 100%;
  }
}
#doc_download_thanks .btn_wrap li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #cbcbcb;
  padding: 20px;
  height: 100%;
  transition: 0.2s;
}
#doc_download_thanks .btn_wrap li a:hover {
  opacity: 0.8;
}
#doc_download_thanks .btn_wrap li a:hover img {
  opacity: 1;
}
#doc_download_thanks .btn_wrap .btn {
  min-height: 60px;
  min-width: 340px;
}
#doc_download_thanks .btn_wrap .download_imgwrap {
  max-width: 300px;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  #doc_download_thanks .btn_wrap .download_imgwrap {
    margin-top: 15px;
    max-width: 240px;
  }
}

#doc_download_thanks + footer .footer_contact_wrap {
  display: none;
}

/*=========================================================================
//
// sitemap
//
==========================================================================*/
.sitemap_list_wrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8%;
       column-gap: 8%;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .sitemap_list_wrap {
    display: block;
  }
}

.sitemap_list_box {
  flex: 1 0 0%;
  margin-bottom: 2em;
}
.sitemap_list_box h2 {
  text-align: left;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  margin-bottom: 1em;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.sitemap_list_box h2:not(:first-child) {
  margin-top: 2em;
}
.sitemap_list_box > h3 {
  text-align: left;
  font-size: clamp(16px, 1.8vw, 18px);
}
.sitemap_list_box > h3:not(:first-child) {
  margin-top: 1em;
}
.sitemap_list_box > h3 a {
  display: block;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.sitemap_list_box > h3 a::before {
  content: "\f138";
  font-family: FontAwesome;
  color: #EC6C00;
  margin-right: 0.25em;
}
.sitemap_list_box > ul {
  margin-left: 2.25em;
}
.sitemap_list_box li {
  margin-top: 0.5em;
}
.sitemap_list_box li a {
  display: block;
  position: relative;
}
.sitemap_list_box li a::before {
  font-family: "FontAwesome";
  content: "\f105";
  color: #EC6C00;
  position: absolute;
  left: -0.75em;
}

/*=========================================================================
//
// メール配信停止
//
==========================================================================*/
#mail_cancel {
  padding: 40px 20px 80px;
}/*# sourceMappingURL=style.css.map *//* BUG-006 (2026-06-22): prod-dc から欠落していた row7 + reason5_ai_lists 用 CSS を追記。 */
/* See https://dc.eltex.co.jp/css/style.css の同名セレクタを正本として転記。  */
@media screen and (min-width: 641px) {
  .page_nav_list.row7 li {
    width: calc(100% / 7);
  }
}

@media screen and (max-width: 826px) {
  .page_nav_list.row7 {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 826px) {
  .page_nav_list.row7 li {
    width: 50%;
  }
}

@media screen and (max-width: 826px) {
  .page_nav_list.row7 li:nth-of-type(odd) {
    border-left: 1px solid #EC6C00;
  }
}

@media screen and (max-width: 826px) {
  .page_nav_list.row7 li:nth-of-type(n+3) {
    border-top: none;
  }
}

@media screen and (max-width: 826px) {
  .page_nav_list.row7 + .page_nav_list_hamburger {
    display: none;
    padding: 11px;
    height: 40px;
    width: 48px;
    position: relative;
    cursor: pointer;
  }
  .page_nav_list.fixed.row7 + .page_nav_list_hamburger {
    display: block;
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9996;
  }
  .page_nav_list.row7 li .page_nav_list_hamburger span {
    background-color: #EC6C00;
  }
  .page_nav_list.row7 li.active .page_nav_list_hamburger span {
    background-color: #fff;
  }
  .page_nav_list.row7 + .page_nav_list_hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 10px;
    transition: 0.3s;
  }
  .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(1) {
    top: 11px;
  }
  .open .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(1) {
    top: 19px;
  }
  .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(2) {
    top: 19px;
  }
  .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(3) {
    top: 27px;
  }
  .open .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(3) {
    top: 19px;
  }
  .page_nav_list_hamburger.open .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(1) {
    top: 19px;
  }
  .page_nav_list_hamburger.open .page_nav_list.row7 + .page_nav_list_hamburger span:nth-of-type(3) {
    top: 19px;
  }
  .page_nav_list_hamburger.open.not_first_menu .page_nav_list.row7 + .page_nav_list_hamburger span {
    background-color: #EC6C00;
  }
}

/* BUG-164 (2026-06-29): reason row7 fixed page nav rules were missing on dev-dc. */
@media screen and (max-width: 826px) {
  .page_nav_list.fixed.row7 {
    top: 70px;
  }
  .page_nav_list.fixed.row7.active li:not(:first-child) {
    display: block;
  }
  .page_nav_list.fixed.row7.active li:not([class=active]) {
    overflow: hidden;
    height: 0;
    border-bottom: none;
  }
  .page_nav_list.fixed.row7.active.open li {
    height: 40px;
    border-bottom: 1px solid #EC6C00;
  }
  .page_nav_list.fixed.row7.active.moving li {
    transition: 0.3s;
  }
  .page_nav_list.fixed.row7 li {
    width: 100%;
    border-left: 1px solid #EC6C00;
  }
  .page_nav_list.fixed.row7 li a {
    font-size: 16px;
    justify-content: flex-start;
    transition: 0s;
  }
  .page_nav_list.fixed.row7 li:not(:first-child) {
    display: none;
  }
  .page_nav_list.row7.open + .page_nav_list_hamburger span:nth-of-type(1),
  .page_nav_list.row7 + .page_nav_list_hamburger.open span:nth-of-type(1) {
    top: 19px;
  }
  .page_nav_list.row7.open + .page_nav_list_hamburger span:nth-of-type(3),
  .page_nav_list.row7 + .page_nav_list_hamburger.open span:nth-of-type(3) {
    top: 19px;
  }
  .page_nav_list.row7 + .page_nav_list_hamburger.open.not_first_menu span {
    background-color: #EC6C00;
  }
}

/*-------------------------------------------------------------------------
 理由5内「AI機能で次の効率へ」デザイン調整
--------------------------------------------------------------------------*/
.reason5 .reason5_ai_lists {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 48px;
}

@media screen and (max-width: 1180px) {
  .reason5 .reason5_ai_lists {
    gap: 40px;
  }
}

@media screen and (max-width: 640px) {
  .reason5 .reason5_ai_lists {
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
  }
}

.reason5 .reason5_ai_lists_col {
  width: 100%;
  max-width: 360px;
}

.reason5 .reason5_ai_lists_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .reason5 .reason5_ai_lists_title {
    margin-bottom: 16px;
  }
}

.reason5 .reason5_ai_lists_items li {
  position: relative;
  padding-left: 1em;
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 1180px) {
  .reason5 .reason5_ai_lists_items li {
    font-size: 16px;
  }
}

.reason5 .reason5_ai_lists_items li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.reason5 .reason5_ai_lists_items li + li {
  margin-top: 6px;
}

/* BUG-157/158 (2026-06-29): top reason image sizing after adding the AI reason item. */
.top_reasons .reasons_list > li a .reason_img.reason_img_ai::before {
  content: "AI";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .top_reasons .reasons_list > li a .reason_img.reason_img_ai::before {
    font-size: 14px;
  }
}

.top_reasons .reasons_list li:nth-child(5) .reason_image {
  max-width: 530px;
}

.top_reasons .reasons_list li:nth-child(6) .reason_image {
  max-width: 234px;
}

.top_reasons .reasons_list li:nth-child(7) .reason_image {
  max-width: 348px;
}
