/* ===================================================================
CSS information
 file name  :  common.css
 style info :  common
=================================================================== */
/*-----------------------------------------------------------------

common

-----------------------------------------------------------------*/
.m-list {
}
.m-list-parent {
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .m-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .m-list-parent {
    width: calc(100% - 80px) !important;
  }
  .acbtn {
    display: flex;
    width: 85px;
    height: auto;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 8px;
    right: 20px;
    cursor: pointer;
  }
  .acbtn::after {
    content: "";
    display: inline-block;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #c13b40;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
  }
}
@media only screen and (min-width: 1119px) {
  .m-list:hover .m-menu {
    opacity: 1;
    visibility: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.m-list .m-list-parent {
  position: relative;
}

.m-list .m-list-parent::after {
  display: none;
}
@media only screen and (min-width: 1119px) {
  .m-list:hover .m-list-parent::before {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 66px;
    left: calc(50% - 8px);
    z-index: 2;
    -webkit-transition: none !important;
    transition: none !important;
  }

  .m-list:hover .m-list-parent::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #c13b40;
    top: 63px;
    left: calc(50% - 10px);
    z-index: 1;
    width: auto !important;
    height: 0 !important;
    background-color: transparent !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

.m-menu {
  position: absolute;
  top: 72px;
  left: 15%;
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  background-color: #fff;
  padding: 25px 40px;
  gap: 40px;
  width: 70%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 2px solid #c13b40;
  border-radius: 8px;
  transition: 0.6s;
}
@media only screen and (max-width: 1200px) {
  .m-menu {
    padding: 25px;
  }
}

.m-menu_title {
  color: #c13b40;
  text-align: center;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.m-menu_title a {
  color: #c13b40;
  text-align: center;
}

.m-menu_title::before,
.m-menu_title::after {
  border-top: 1px solid;
  content: "";
  width: 30px;
}

.m-menu_title::before {
  margin-right: 8px;
}

.m-menu_title::after {
  margin-left: 6px;
}

.m-menu .innflex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.m-menu_left_item {
  width: calc(50% - 15px);
}
@media only screen and (max-width: 690px) {
  .m-menu_left_item {
    width: 100%;
  }
  .acbtn {
    width: 65px;
  }
}

.m-menu_item_list {
  height: auto !important;
  display: block !important;
  padding-left: 20px !important;
}

.m-menu_item_list li {
  height: auto !important;
  list-style: disc !important;
  color: #c13b40;
  margin-right: 0 !important;
}

.m-menu_item_list li span {
  color: #333;
}

.m-menu_item_list li a {
  padding: 4px 0 !important;
  font-weight: normal !important;
  color: #333 !important;
  text-decoration: none !important;
}

.m-menu_item_list li a:hover {
  color: #c13b40 !important;
}

.m-menu_item_list li a:hover::after {
  display: none !important;
}

.m-menu_item_title {
  color: #c13b40;
}

.m-menu_item_title a {
  color: #c13b40;
  font-weight: normal !important;
  display: inline-block !important;
}
@media only screen and (max-width: 1200px) {
  .m-menu_item_title a {
    padding: 10px 0 !important;
  }
}
/* .m-menu_left .m-menu_right*/
@media only screen and (min-width: 1119px) {
  .m-menu_left {
    flex: 1;
  }
  .m-menu_right {
    width: 38%;
  }
}
@media only screen and (max-width: 1200px) {
  .m-menu_right {
    margin-top: 30px;
  }
}

.m-menu_right_content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
}

.m-menu_right_item {
  width: calc(50% - 15px);
}
@media only screen and (max-width: 1200px) {
  .m-menu_right_item {
    /* width: calc(25% - 23px); */
  }
}
.m-menu_right_item a {
  padding: 0 !important;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.m-menu_right_item a:hover {
  opacity: 0.8;
}
.m-menu_right_item a:hover img {
  opacity: 1;
}
.m-menu_right_item .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 90%;
  font-size: 1.35rem;
  line-height: 1.2;
}
.m-menu_right_item .txt .-sub {
  font-size: 1rem;
}
@media only screen and (max-width: 690px) {
  .m-menu_right_content {
    gap: 20px;
  }
  .m-menu_right_item {
    width: calc(50% - 10px);
  }
  .m-menu_right_item a {
    padding: 0 !important;
    height: auto !important;
    display: block !important;
  }
}

.m-menu_right_item img {
  width: 100%;
  max-width: 100%;
}

.m-menu_right_item a:hover::after {
  display: none !important;
}

@media only screen and (max-width: 1470px) {
  .m-menu {
    left: 8%;
    width: 84%;
  }
}

@media only screen and (max-width: 1200px) {
  .m-menu {
    position: static;
    display: none;
    width: 96%;
    opacity: 1;
    visibility: visible;
    /* margin: 0 auto 20px; */
    transition: auto;
  }
}

header.template_c2 .gnavi_area ul li.main_current a::after {
  background-color: #fff;
}
/*# sourceMappingURL=common.css.map */

#main .catelist a {
  background: #ffe2e2 !important;
  margin-left: 20px;
}
#main .taglist a {
  background: #c8c8c8 !important;
}
.page_main_about span.marker,
.cvn_page_concept span.marker {
  background-color: #fff799 !important;
}

#main h1 {
  font-size: 28px !important;
  line-height: 1.5em !important;
}

/*  */
.-ad-name {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.3rem;
  text-align: center;
  /* padding-left: 180px; */
}
@media (max-width: 840px) {
  .-ad-name {
    /* padding-left: 180px; */
  }
}
@media (max-width: 767px) {
  .-ad-name {
    /* padding-left: 0; */
  }
}

.-flex-set-c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec-bar {
  background: #c13b40;
}

.sec-bar .inner {
  display: flex;
}
.-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.img {
  width: 100%;
}

.-right {
  width: 60%;
  margin-left: 20px;
  text-align: center;
}
.bar-ttl {
  font-size: 26px;
  color: #fff;
  text-align: left;
}
.bar-sub {
  font-size: 16px;
  color: #fff;
  text-align: left;
}
.-right a {
  text-decoration: none;
}
.bar-btn {
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  position: relative;
  display: inline-block;
  background-color: #fff;
  font-size: 24px;
  color: #c13b40;
  width: 360px;
  padding: 5px 30px 5px 20px;
  border-radius: 50px;
  border: #c13b40 solid 2px;
  transition: 0.5s;
}
.bar-btn:hover {
  color: #fff;
  background-color: #c13b40;
  border: #fff solid 3px;
}
.bar-btn:hover::after {
  border-top: #fff solid 3px;
  border-right: #fff solid 3px;
}
.bar-btn::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: #c13b40 solid 3px;
  border-right: #c13b40 solid 3px;
  transform: rotate(45deg);
  top: calc(50% - 5px);
  right: 15px;
}
@media only screen and (max-width: 670px) {
  .sec-bar .inner {
    flex-direction: column;
  }
  .-right,
  .-left {
    width: 100%;
  }
  .-left {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .-right {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 400px) {
  .-right,
  .-left,
  .bar-btn {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .bar-ttl,
  .bar-sub {
    text-align: center;
  }
  .bar-btn {
    width: 90%;
    font-size: 18px;
    padding: 5px 20px 5px 10px;
  }
}
.dlb_media_right .dlb_media_title {
  -webkit-line-clamp: 5 !important;
  font-size: 16px !important;
}
.dlb_media_title {
  font-size: 16px;
}
#pagetitle.template_c2 .kv-bg_cfview {
  background: url(/dcms_media/image/cfview-pc.png) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media only screen and (max-width: 420px) {
  /* adi-mo */
  #pagetitle.template_c2 .kv-bg_adimo {
    background: url(/dcms_media/image/adi-mo-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  /* pos */
  #pagetitle.template_c2 .kv-bg_pos {
    background: url(/dcms_media/image/pos-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_rfid {
    background: url(/dcms_media/image/rfid-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_tn {
    background: url(/dcms_media/image/timenav-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_ec {
    background: url(/dcms_media/image/ec-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_fc {
    background: url(/dcms_media/image/fassioncoco-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_lcv {
    background: url(/dcms_media/image/lcv-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_cvss {
    background: url(/dcms_media/image/cvss-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_cvn {
    background: url(/dcms_media/image/cv-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
  #pagetitle.template_c2 .kv-bg_cfview {
    background: url(/dcms_media/image/cfview-sp.png) no-repeat;
    /* background-position: 50% 50%; */
    background-size: cover;
  }
}
.dlb_media_01_area .dlb_media_cate {
  position: unset !important;
  margin-top: 0;
  margin-bottom: 10px;
}
.dlb_media_01_area .dlb_media_right .dlb_media_cate {
  display: inline-block;
}
.dlb_media_01_area .slick-next {
  right: 0px;
}
.dlb_media_01_area .slick-prev {
  left: 0px;
}
.bl-top_case-customer {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.dlb_media_01_area .dlb_media_right {
  padding-top: 16px;
  /* border-bottom: solid 1px #ccc; */
}
.dlb_media_01_area .slick-list {
  position: relative;
  overflow: visible;
  display: block;
  margin: 0;
  padding: 0;
}

.dlb_media_01_area .dlb_media_block {
  padding: 0 1px !important;
  position: relative;
  display: block;
  box-shadow: 0 0px 10px 0 rgb(0 0 0 / 10%);
}

/* 2022-0616 */
.sec-jumpoer {
  width: 100%;
}

.-jumper {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}
.-jumper a {
  text-decoration: none;
}
.jump-con {
  margin-right: auto;
  width: auto;
  position: relative;
  font-size: 22px;
  border-bottom: solid 1px #c13b40;
  transition: 0.6s;
}
.jump-con::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid #333 3px;
  border-right: solid #333 3px;
  transform: rotate(45deg);
  transition: 0.2s;
  top: calc(50% - 5px);
  right: -25px;
}
.jump-con:hover::after {
  transform: rotate(135deg);
}
@media only screen and (max-width: 980px) {
  .-jumper {
    flex-wrap: wrap;
  }
  .jump-con {
    margin-left: auto;
    width: 400px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 890px) {
  .jump-con {
    width: 41%;
  }
}
@media only screen and (max-width: 690px) {
  .jump-con {
    width: 41%;
  }
  .-jumper {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 560px) {
  .-jumper {
    flex-direction: column;
    padding: 0 20px 0 0;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0px;
  }
  .jump-con {
    width: 90%;
    margin-bottom: 20px;
  }
}

.-pro-box {
  background-color: #fff5f5;
  padding: 50px 10px;
  width: 100%;
  display: flex;
  counter-reset: number 0;
}
.-pro-con {
  background-color: #fff;
  position: relative;
  padding: 15px 20px;
  width: 230px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 8px;
}
.-pro-con::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background: #e85298;
  border-radius: 100px;
  top: -30px;
  left: -20px;
}

.-pro-con::before {
  counter-increment: number 1;
  content: "課題" counter(number) " ";
  font-size: 14px;
  color: #fff;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.-pro-con::after {
  content: "";
  position: absolute;
  margin: 0;
  bottom: -30px;
  right: 30px;
  width: 0;
  height: 0;
  border-top: 40px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  transform: rotate(-30deg);
}

.-pro-p {
  position: relative;
  font-size: 16px;
  z-index: 10;
}

@media only screen and (max-width: 980px) {
  .-pro-box {
    flex-wrap: wrap;
    padding: 15px 50px;
  }
  .-pro-con {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 330px;
  }
}
.-pro-utxt {
  color: #c13b40;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 10;
  font-weight: 600;
  width: 100%;
}
.-pro-under {
  padding: 60px 10px;
}
.-pro-utxt::before {
  content: "";
  position: absolute;
  transform: rotate(90deg);
  border-left: 85px solid #c13b40;
  opacity: 0.3;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  height: 0;
  width: 0;
  /*  */
  top: 0;
  right: calc(50% - 45px);
}
.page-subttl {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.--inline {
  border: 1px #dcdcdc solid;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.sec-bar.--none {
  background: unset;
}
.sec-bar .inner.--blog {
  background: #c13b40;
  padding: 10px 20px;
  display: flex;
  max-width: 710px;
}
article#main .sec-bar .inner .-right a {
  text-decoration: none;
}
article#main a.bar-btn {
  color: #c13b40;
}

article#main a.bar-btn:hover {
  color: #fff;
}
@media only screen and (max-width: 979px) {
  .sec-bar .inner.--blog {
    padding: 10px 30px;
    max-width: 930px;
  }
}
@media only screen and (max-width: 670px) {
  .sec-bar .inner.--blog {
    padding: 20px 10px;
  }
}
/*  */
/*  */
/*  */

/* margin */
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mt-40 {
  margin-top: 40px;
}
/* color */
.u-back__gray {
  background: #f7f7f7;
  overflow: hidden;
}
/* ttl-txt */
.l-newapa-ttl_h3 {
  font-size: 18px;
  width: 70%;
  margin-left: 0;
  border-bottom: #c13b40 solid 1px;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 10px;
}
.l-newapa-ttl_h3_bold {
  font-size: 24px;
  font-weight: bold;
}
.l-newapa-inttl {
  text-align: center;
  font-size: 24px;
}
.l-newapa-subttl {
  text-align: center;
  font-size: 16px;
}
/*  */
.l-newapa-colpad {
  padding-top: 40px;
  padding-bottom: 40px;
}
.l-newapa-txt {
  font-size: 16px;
}
.l-newapa-imgjump {
  font-size: 10px;
  cursor: pointer;
}

/* col area */
.l-newapa-item {
  width: 97%;
  margin-right: auto;
  margin-left: auto;
}
.l-newapa-item_col {
  display: flex;
  margin-bottom: 44px;
}
.l-newapa-item_col .img {
  width: 210px;
  opacity: 0.9;
}
.l-newapa-itemtop {
  width: 620px;
  margin-right: auto;
  margin-left: auto;
}
.l-newapa-item_txt {
  font-size: 16px;
  width: 100%;
  padding-left: 10px;
  font-weight: 300;
}
/* l-newapa-backred */
.l-newapa-backred {
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
}
/*  */
/*  */
.l-newapa-btnarea {
  width: 100%;
  text-align: center;
}
.l-newapa-backred_txt {
  padding-left: 30px;
  width: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-newapa-backred .img {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  position: relative;
}
#contents.inner .l-newapa-backred img {
  width: 338px;
  z-index: 1;
}
.l-newapa-backred .img::before {
  position: absolute;
  content: "";
  height: 280px;
  width: 2000px;
  background: #fddddd;
  right: 100px;
  top: 0;
  z-index: 0;
}
.l-newapa-backred_txt p + p {
  margin-top: 20px;
}
/* -rev */
.l-newapa-backred.-rev {
  flex-direction: row-reverse;
}
.l-newapa-backred.-rev .img::before {
  left: 100px;
  bottom: 0;
  top: unset;
}
.l-newapa-backred.-rev .l-newapa-backred_txt {
  padding-left: 0px;
  padding-right: 30px;
}
/*  */
.l-btn__red {
  min-width: 400px;
  background: #c13b40;
  border: solid 1px #c13b40;
  padding: 10px 10px 10px 0;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  transform: 0.6s;
  text-decoration: none;
  cursor: pointer;
}
.l-btn__red::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  right: 20px;
  top: calc(50% - 3px);
}
.l-btn__red:hover {
  background: #fff;
  color: #c13b40;
  text-decoration: none;
}
.l-btn__red:hover::before {
  border-top: solid 1px #c13b40;
  border-right: solid 1px #c13b40;
}

@media only screen and (max-width: 690px) {
  .l-newapa-itemtop {
    width: 100%;
  }
  .l-newapa-item_col {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .l-newapa-item_col .img {
    width: 350px;
    margin: 20px auto 20px;
  }
  /* col ver02 */
  .l-newapa-backred,
  .l-newapa-backred.-rev {
    flex-direction: column;
  }
  .l-newapa-backred .img,
  .l-newapa-backred .l-newapa-backred_txt {
    width: 100%;
  }
  .l-newapa-backred .img {
    min-height: unset;
    padding: 30px 0 10px;
    margin-bottom: 20px;
  }
  .l-newapa-backred .l-newapa-backred_txt,
  .l-newapa-backred.-rev .l-newapa-backred_txt {
    padding-left: 0px;
    padding-right: 0px;
  }
  .l-newapa-ttl_h3 {
    width: 100%;
  }
}
.sp-none {
  display: block;
}
@media only screen and (max-width: 480px) {
  .l-newapa-item_col .img {
    width: 100%;
  }
  .l-newapa-backred {
    margin-top: 0;
  }
  .sp-none {
    display: none;
  }
  .l-btn__red {
    min-width: unset;
    width: 95%;
    padding-right: 0;
  }
  /*  */
}
header.template_c2 .gnavi_area ul li {
  margin-right: 1.2em;
  list-style: none;
  height: 100%;
}
header.template_c2 #header_area {
  width: auto;
}
.page_button a {
  cursor: pointer;
}
