/*================== import ==================*/

/*@import url(https://fonts.googleapis.com/css?family=Raleway:400,200,100,300,500,600,700,800,900);*/
/*@import url('https://fonts.googleapis.com/css?family=Lato');*/

/*================== basic  ==================*/
body {
  min-width: 320px;
  font-family: noto-sans-cjk-jp, sans-serif !important;
  font-size: 100%;
  color: #464646;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

a {
  color: #2280b6;
  text-decoration: none;
  outline: none;
  transition: 0.2s ease-out;
}
a:hover {
  color: #249dd4;
}
a:focus {
  outline: none;
}

h2 {
  line-height: 1.8;
  margin: 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 1rem 0;
}

h2 span {
  font-size: 50%;
  font-weight: normal;
  color: #c7c7c7;
  display: block;
  margin-top: -0.5rem;
}
.promo_desc h2 span {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #f1f1f1;
}
#promo_title h2 {
  border: none;
}
.colored,
h3 {
  color: #2280b6;
}

h4.group {
  font-weight: bold;
  color: #fff;
  background: #2280b6;
  padding: 0.3em;
  width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding-left: 0;
}

.wrapper {
  margin: 0 auto;
  max-width: 1500px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 99999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}
#loader .loader_img {
  font-size: 2rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  top: 45%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#loader .loader_img:before {
  width: 49%;
  position: absolute;
  top: 0;
  left: 0;
  content: "digital";
  color: #2181b3;
  text-align: right;
  -webkit-animation: load-txt1 3s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: load-txt1 3s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#loader .loader_img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  content: "signage";
  color: #333;
  margin-left: 49%;
  text-align: left;
  -webkit-animation: load-txt2 3s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: load-txt2 3s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@-webkit-keyframes load-txt1 {
  0% {
    /*top: -100px;*/
    -webkit-transform: translate(0, -100px);
    opacity: 0;
  }
  45% {
    /*top: 0;*/
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  55% {
    /*top: 0;*/
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    /*top: 100px;*/
    -webkit-transform: translate(0, 100px);
    opacity: 0;
  }
}
@keyframes load-txt1 {
  0% {
    /*top: -100px;*/
    transform: translate(0, -100px);
    opacity: 0;
  }
  45% {
    /*top: 0;*/
    transform: translate(0, 0);
    opacity: 1;
  }
  55% {
    /*top: 0;*/
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    /*top: 100px;*/
    transform: translate(0, 100px);
    opacity: 0;
  }
}
@-webkit-keyframes load-txt2 {
  0% {
    /*top: 100px;*/
    -webkit-transform: translate(0, 100px);
    opacity: 0;
  }
  45% {
    /*top: 0;*/
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  55% {
    /*top: 0;*/
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    /*top: 100px;*/
    -webkit-transform: translate(0, -100px);
    opacity: 0;
  }
}
@keyframes load-txt2 {
  0% {
    /*top: 100px;*/
    transform: translate(0, 100px);
    opacity: 0;
  }
  45% {
    /*top: 0;*/
    transform: translate(0, 0);
    opacity: 1;
  }
  55% {
    /*top: 0;*/
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    /*top: 100px;*/
    transform: translate(0, -100px);
    opacity: 0;
  }
}

/*================== header ==================*/

header {
  background-color: white;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid #dcdcdc;
  z-index: 10001;
  position: fixed;
  top: 0;
  text-align: left;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
header #disp_switch {
  display: none;
  width: 36px;
  height: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
  position: absolute;
  top: 16px;
  right: 10px;
  font-size: 23px;
}
header #disp_switch .line {
  position: absolute;
  display: block;
  width: 26px;
  height: 2px;
  background-color: #000;
  left: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -webkit-transform-origin: center;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
header #disp_switch .line.l1 {
  top: 2px;
}
header #disp_switch .line.l2 {
  top: 12px;
}
header #disp_switch .line.l3 {
  top: 22px;
}
header #disp_switch.active .line.l1 {
  top: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header #disp_switch.active .line.l2 {
  top: 12px;
  background-color: transparent;
}
header #disp_switch.active .line.l3 {
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header #header_cont {
  position: relative;
}
header #header_cont #site_id {
  margin: 0;
  padding: 0 1%;
  line-height: 65px;
  font-size: 108%;
  float: left;
  width: 24%;
}
header #header_cont #site_id img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
header #header_cont #contact {
  float: left;
  font-size: 140%;
  font-weight: normal;
  margin-top: 15px;
  margin-right: 5px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
header #header_cont #menu {
  float: left;
  margin-top: 22px;
}
header #header_cont #menu li {
  margin: 0 3px;
  display: inline-block;
  position: relative;
}
header #header_cont #menu li a {
  padding: 0;
  cursor: pointer;
  color: #464646;
  box-shadow: 0 1px 0 transparent;
  border-bottom: 2px dotted #2280b6;
}
header #header_cont #menu li a:hover {
  border-bottom: 2px solid #2280b6;
}
header #header_cont #menu #service:first-child:after {
  content: "";
  height: 0;
  width: 0;
  border: 4px solid transparent;
  border-top-color: #cdcdcd;
  position: absolute;
  bottom: 6px;
  right: -10px;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
header #header_cont #menu #service.active:first-child:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  transform-origin: center center;
  bottom: 11px;
}
header #header_cont #mb_menu {
  position: absolute;
  right: 10px;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*================== sub_menu ==================*/

#sub_menu {
  z-index: 10000;
  width: 100%;
  position: fixed;
  top: 0;
  -webkit-transform: translate(0, -440px);
  transform: translate(0, -440px);
  left: 0;
  background-color: rgba(240, 240, 240, 0.95);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#sub_menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#sub_menu li {
  margin: 0 8px;
  font-size: 75%;
  width: 12%;
}
#sub_menu li a {
  color: #464646;
  box-shadow: none;
  line-height: 1.3;
  padding: 10% 15% 1rem;
  box-sizing: border-box;
  display: block;
  text-align: center;
}
#sub_menu li a span {
  box-shadow: 0 1px 0 transparent;
  white-space: nowrap;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding-bottom: 0.95rem;
}
#sub_menu li a:hover {
  text-decoration: none;
}
#sub_menu li a:hover span {
  text-decoration: underline;
}
#sub_menu.active {
  opacity: 1;
  -webkit-transform: translate(0, 65px);
  transform: translate(0, 65px);
}

/*================== promotion ==================*/

#promotion {
  width: 100%;
  padding-top: 50px;
  background-color: #333;
  position: relative;
  overflow: hidden;
}
#promotion h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
#promotion p {
  text-align: center;
  margin: 0;
  font-size: 1.2rem;
}
.sp_br {
  display: none;
}
#promotion .slide {
  overflow: hidden;
  opacity: 0.5;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  float: left;
  background: url(../../common/images/dot.png) left top;
}
#promotion .slick-active {
  opacity: 1;
}
#promotion img {
  width: 100%;
}
.promo_wrapper h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 0;
  border: none;
  padding: 0;
}
#promotion .promo_main {
  padding: 20px;
  background: linear-gradient(45deg, rgba(82, 12, 85, 0.7), #16a5d0a6, rgb(0 171 171 / 70%));
  background-size: 600% 600%;
  display: block;
  max-width: 565px;
  margin-left: auto;
  margin-right: auto;
  animation: promo_bg_anim 10s ease infinite;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
#promotion .promo_desc {
  width: 60%;
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(45deg, rgba(82, 12, 85, 0.7), #16a5d0a6, rgb(0 171 171 / 70%));
  background-size: 600% 600%;
  padding: 1rem;
  animation: promo_bg_anim 10s ease infinite;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
@keyframes promo_bg_anim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#promotion .promo_img {
  margin-top: -66%;
  width: 40%;
  height: 66%;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#promotion .promo_img_label {
  margin-top: -4%;
  width: 52%;
}
#promotion .promo_img .img_changer {
  overflow: hidden;
}
#promotion .promo_img img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#promotion .promo_img img.img_base {
  z-index: 0;
}

#promotion #mv.promo_bg {
  background-image: url(../../common/images/bg01g.jpg);
  background-position: 15% 15%;
  background-size: cover;
}

.slick-prev,
.slick-next {
  width: 80px;
  height: 80px;
  border: none;
  /*border-bottom: 1px solid #fff;*/
  position: absolute;
  color: #fff;
  font-size: 78%;
  top: calc(50% - 40px);
  background-color: transparent;
  letter-spacing: 0;
  text-shadow: 0 0 2px #000;
  z-index: 2;
}
#site_top #promotion .slick-prev::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 32px #2280b6 solid;
  border-left: 32px #2280b6 solid;
  border-bottom: 32px transparent solid;
  border-right: 32px transparent solid;
  position: absolute;
  top: 8px;
  left: 28px;
  transform: rotate(-45deg);
  z-index: -1;
}
#site_top #promotion .slick-next::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 32px #2280b6 solid;
  border-left: 32px #2280b6 solid;
  border-bottom: 32px transparent solid;
  border-right: 32px transparent solid;
  position: absolute;
  top: 8px;
  right: 28px;
  transform: rotate(135deg);
  z-index: -1;
}
.slick-prev {
  left: -12px;
  text-indent: -0.4rem;
}
.slick-next {
  right: -12px;
  text-indent: -0.1rem;
}
.slick-prev:focus,
.slick-next:focus {
  outline: none;
}
#scroll_txt {
  position: fixed;
  width: 100%;
  text-align: center;
  z-index: 5;
  display: none;
}
#scroll_txt div {
  width: 16px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 10px;
  margin: 26px auto 0;
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 2px #000;
  text-indent: -9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
}
#scroll_txt div:after {
  content: "";
  width: 6px;
  height: 8px;
  background-color: #fff;
  border-radius: 4px;
  display: block;
  margin-left: 5px;
  margin-top: 3px;
  -webkit-animation: scroll-anim 1s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: scroll-anim 1s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@-webkit-keyframes scroll-anim {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
  }
}
@keyframes scroll-anim {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
  }
}

#contents {
  background-color: #fff;
  z-index: 10;
  font-size: 1.1rem;
}
#promo_area .promo_bg,
#promotion .slick-active .promo_bg {
  -webkit-animation: bg-anim 12s cubic-bezier(0.19, 1, 0.22, 1);
  animation: bg-anim 12s cubic-bezier(0.19, 1, 0.22, 1);
}
@-webkit-keyframes bg-anim {
  0% {
    /*-webkit-transform: scale(1.1);
		transform: scale(1.1);*/
    filter: brightness(200%);
  }
  100% {
    /*-webkit-transform: scale(1.0);
		transform: scale(1.0);*/
    filter: brightness(100%);
  }
}
@keyframes bg-anim {
  0% {
    /*-webkit-transform: scale(1.1);
		transform: scale(1.1);*/
    filter: brightness(200%);
  }
  100% {
    /*-webkit-transform: scale(1.0);
		transform: scale(1.0);*/
    filter: brightness(100%);
  }
}

/*================== footer ==================*/

footer {
  position: fixed;
  color: white;
  background-color: #333;
  width: 100%;
  /*height: 54px;
	height: 65px;*/
  z-index: 8000;
  /*bottom: -38px;*/
  /*position: absolute;*/
  bottom: 0;
}
footer .wrapper {
  max-width: none;
  padding: 0 10px;
}
footer.active {
  bottom: 0;
}
footer p {
  margin: 0.2rem 0;
  font-size: 77%;
}
footer .pagetop a {
  display: block;
  height: 0;
  margin-bottom: 0;
  padding: 0;
  background-color: #424242;
  overflow: hidden;
  -webkit-transform: translate(0, 165px);
  transform: translate(0, 165px);
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  opacity: 0;
}
footer.active .pagetop a.active {
  padding: 4px 0 0;
  height: 28px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
footer #footer_menu {
  float: right;
}
footer #footer_menu a {
  color: #ffffff;
}
footer #footer_menu a:before {
  content: "|";
  margin-right: 1rem;
}
footer #footer_menu a:after {
  content: "|";
  margin-left: 1rem;
}
footer #copy {
  float: left;
  text-align: left;
  font-size: 65%;
  line-height: 1rem;
}

/*================== common_parts ==================*/

.section {
  padding: 0 0 40px;
}

.img_block_wrapper {
  margin: auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.fancybox-skin {
  border-radius: 0;
}

.btn {
  padding: 0.5rem 2rem;
  line-height: 36px;
  display: inline-block;
  background-color: #2280b6;
  color: white !important;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.btn:hover {
  background-color: #249dd4;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
}
.w_btn {
  padding: 1rem;
  display: inline-block;
  background-color: #2280b6;
  color: white !important;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0);
}
.w_btn:hover {
  background-color: #249dd4;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
}
.w_btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.2);
}
.icon {
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0rem 0.2rem;
}
.icon_tel {
  background-image: url(../../common/images/icon_tel.svg);
}
.icon_mail {
  background-image: url(../../common/images/icon_mail.svg);
}
.pagetop img {
  width: 32px;
  height: 18px;
}

.img_block_3col ul li {
  width: 28%;
  margin: 0 2%;
  position: relative;
  display: inline-block;
  font-size: 85%;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}
.img_block_3col ul li:first-child {
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.img_block_3col ul li:last-child {
  -webkit-transition: 1.5s ease-out;
  transition: 1.5s ease-out;
}
.img_block_3col ul li.active {
  /*opacity: 1;*/
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.img_block_left .img_block_txt {
  margin: 0 2%;
  width: 45%;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.img_block_left .img_block_img {
  margin: 0 2%;
  width: 45%;
  display: inline-block;
  /*text-align: right;*/
  vertical-align: middle;
}
.img_block_right .img_block_txt {
  margin: 0 2%;
  width: 45%;
  display: inline-block;
  text-align: left;
}
.img_block_right .img_block_img {
  margin: 0 2%;
  width: 45%;
  display: inline-block;
  /*text-align: left;*/
  vertical-align: top;
}

#service_con {
  padding: 0;
}
#service_con #service_block_top {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
#service_con #service_block_top .service_block_wrapper {
  position: relative;
  max-width: 1500px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 0;
  justify-content: flex-start;
}
#service_con #service_block_top .service_block_wrapper .service_link {
  width: 31.3%;
  margin: 1rem 1% 0;
  padding: 1rem;
  background-size: cover;
  background-position: center center;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  position: relative;
  border: 1px solid #dcdcdc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.new_mark {
  display: flex;
  border-radius: 100px;
  position: absolute;
  top: -16px;
  left: -16px;
  color: #fff;
  font-weight: bold;
  background-color: #6ac8ff;
  width: 84px;
  height: 84px;
  align-items: center;
  justify-content: center;
}
#service_con #service_block_top .service_block_wrapper .w_btn {
  width: 72%;
  margin: 2rem 0;
}
#service_con #shelf_link {
  background-image: url(../../common/images/menu03.jpg);
}
#service_con #media_link {
  background-image: url(../../common/images/menu04.jpg);
}
#service_con #multi_link {
  background-image: url(../../common/images/menu05.jpg);
}
#service_con #coupon_link {
  background-image: url(../../common/images/menu06.jpg);
}

#service_con #service_block_top .service_block_wrapper.active {
  opacity: 1;
  top: 0;
  background-color: #000;
  overflow: hidden;
}
#service_con #service_block_top .service_block_wrapper #case_link {
  width: 100%;
  height: 150px;
  clear: both;
}
#service_con #service_block_top .service_block_wrapper #case_link p {
  margin-top: 48px;
}

.service_link_img {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20%;
}
.service_link h3 {
  margin: 0;
  width: 100%;
}
.service_link p {
  margin-top: 0;
  width: 100%;
}

#news {
  background-color: #f1f1f1;
}

#news #news_block_top div.news_block_wrapper {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  position: relative;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  max-width: 1500px;
  margin: auto;
  vertical-align: top;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
}
#news #news_block_top div.news_box {
  width: 23%;
  margin: 10px 1%;
  display: inline-block;
  vertical-align: top;
}
#news #news_block_top div.news_box a {
  margin: auto;
  display: block;
  padding: 0 0 2px;
  width: 100%;
  background-color: white;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  text-align: left;
}
#news #news_block_top div.news_box p {
  padding: 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: initial;
}
#news #news_block_top div.news_box a:hover {
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
}
#news #news_block_top div.news_box .news_img {
  position: relative;
  overflow: hidden;
}
#news #news_block_top div.news_box .news_img img {
  vertical-align: bottom;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -wekit-transform: scale(1);
  transform: scale(1);
}
#news #news_block_top div.news_box a:hover .news_img img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
#news #news_block_top div.news_box .cat {
  color: white;
  width: 5rem;
  padding: 20px 10px 2px;
  margin: 0;
  display: inline-block;
  font-size: 85%;
  position: absolute;
  top: -8px;
  left: -36px;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#news #news_block_top div.news_box .cat1 {
  background-color: #6be2de;
}
#news #news_block_top div.news_box .cat2 {
  background-color: #f77a9a;
}
#news #news_block_top div.news_box .cat3 {
  background-color: #b3dd59;
}
#news #news_block_top div.news_box .cat4 {
  background-color: #e3b73f;
}
#news #news_block_top div.news_box .date {
  color: #464646;
  margin: 0 5px;
  display: block;
}
#news #news_block_top div.news_block_wrapper.active {
  margin-top: 20px;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#news #news_block_top p.more {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  position: relative;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
#news #news_block_top p.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#case .case_wrapper {
  max-width: 1500px;
  margin: 20px auto;
}
#contact_block {
  background-color: #121212;
}
#contact_block_top {
  margin: auto;
  max-width: 1500px;
  background: url(../../common/images/contact.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 10rem;
  color: #ffffff;
}
#contact_block_top a {
  color: #ffffff;
}
#contact_block_top h2 {
  margin-top: 0;
  padding: 6rem 0 0;
  background-size: cover;
  color: white;
  border: none;
}
#contact_block_top ul li {
  margin: 0 1%;
  font-size: 130%;
}
#contact_block_top ul li:first-child {
  font-size: 200%;
  margin-bottom: 10px;
}
#contact_block_top ul li span {
  color: #b0e2ff;
}
.news_text {
  padding: 2rem;
}

.beyondcast h2 {
  border: none;
}

#promo_area {
  text-shadow: 0 0 2px #000;
  color: white;
  width: 100%;
  height: 550px;
  padding-top: 50px;
  z-index: 1;
  background: url(../../common/images/dot.png) left top;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#promo_area .promo_desc {
  display: inline-block;
  vertical-align: middle;
  padding: 12px;
  background: linear-gradient(45deg, rgba(82, 12, 85, 0.7), rgba(204, 100, 7, 0.7), rgba(0, 125, 171, 0.7));
  background-size: 600% 600%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  -web-kit-animation: promo_bg_anim 10s ease infinite;
  animation: promo_bg_anim 10s ease infinite;
}
#promo_area .promo_desc h2 span {
  color: #fff;
}
#promo_area .promo_img {
  margin-top: -136px;
  width: 268px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  right: 0;
}
#promo_area .promo_img img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#promo_area .promo_img img.img_base {
  z-index: 0;
}
#promo_area .promo_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 550px;
}

#fullpage {
  width: 100%;
  height: 550px;
}

#modal {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 19999;
  position: fixed;
  top: 0;
  left: 0;
}
#modal_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#modal_content {
  padding: 1rem;
}
/*#modal_content video{
	width: 90%;
	height: auto;
}*/

/*================== label_signage ==================*/

.label_signage p.anim {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  position: relative;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.label_signage p.anim.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.label_signage #about strong {
  font-size: 120%;
  border: 1px solid #cdcdcd;
  padding: 5px 11px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  display: block;
  width: 80%;
  margin: auto;
  text-align: center;
}
.label_signage #motion2 ul {
  width: 90%;
  padding: 40px 28px 13px;
  text-align: left;
  background-color: #f1f1f1;
  max-width: 800px;
  margin: -28px auto 0;
}
.label_signage #motion2 ul li {
  margin-bottom: 15px;
}
.label_signage #motion img,
.label_signage #motion .img_caption {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.label_signage #motion .img_caption li {
  width: 26%;
  display: inline-block;
  height: 8rem;
  vertical-align: top;
  position: relative;
  border: 1px solid #cdcdcd;
  box-sizing: border-box;
  padding: 1% 2%;
}
.label_signage #motion .img_caption strong {
  border: none;
  box-shadow: none;
}
.label_signage #motion .img_caption li:after {
  position: absolute;
  left: 65px;
  bottom: -11px;
  width: 10px;
  height: 20px;
  border-left: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  display: inline-block;
  content: "";
  background-color: #ffffff;
  -webkit-transform: rotate(-45deg) skewY(-45deg);
  -moz-transform: rotate(-45deg) skewY(-45deg);
  transform: rotate(-45deg) skewY(-45deg);
}
.label_signage #data .img_block_left {
  max-width: 1200px;
  margin: auto;
}
.label_signage #data ul {
  width: 90%;
  margin: auto;
  padding: 28px 28px 13px;
  text-align: left;
  background-color: #f1f1f1;
}
.label_signage #data ul li {
  margin-bottom: 15px;
}
.label_signage #cms {
  background-color: #f1f1f1;
}
.label_signage #cms .img_block_left {
  max-width: 1200px;
  margin: auto;
}
.label_signage #cms .img_block_left h4 {
  margin-top: -36px;
  text-shadow: 5px 5px 5px #f1f1f1, -5px -5px 5px #f1f1f1, 5px -5px 5px #f1f1f1, -5px 5px 5px #f1f1f1;
}
.label_signage #cms .img_block_left img {
  width: 100%;
  margin: auto;
}
.label_signage #cms .feature {
  color: #ffffff;
  margin-right: 10px;
  padding: 3px 10px;
  font-size: 85%;
  background-color: #2280b6;
}
.label_signage #cms ul {
  width: 90%;
  margin: auto;
  padding: 28px 28px 13px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.5);
}
.label_signage #cms ul li {
  margin-bottom: 15px;
}
.label_signage #cms strong {
  background-color: rgba(221, 225, 226, 0.78) !important;
}
.label_signage #contents_image {
  background: url(../../common/images/label_signage/bg_imgs05.jpg) no-repeat center center;
  background-size: cover;
}
.label_signage #contents_image .img_block_3col {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.label_signage #contents_image .img_block_3col li img {
  border-left: 12px solid #121212;
  border-right: 12px solid #121212;
  border-top: 5px solid #121212;
  border-bottom: 5px solid #121212;
}
.label_signage #contents_image .img_block_3col li.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.label_signage #contents_image .contents_image_box {
  overflow: hidden;
}
.label_signage #original {
}
.label_signage #about,
.label_signage #original {
  background-color: #f1f1f1;
}
#point01,
#point02,
#point03 {
  cursor: pointer;
  width: 28%;
  display: inline-block;
  vertical-align: top;
  /*  */
  text-align: left;
  padding: 0 1%;
}
#point01 img {
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 1;
  /* -webkit-transform: translate(0,20px); */
  /* transform: translate(0,20px); */
}
#point02 img {
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0.5s;
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0.5s;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
}
#point03 img {
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
}
#point01.active img,
#point02.active img,
#point03.active img,
#point01 img.active,
#point02 img.active,
#point03 img.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.cycle {
  border: 8px solid #2280b6;
  border-radius: 30px;
  position: absolute;
  bottom: 15px;
  width: 90%;
  height: 47%;
  z-index: 0;
  margin: auto 5%;
  box-sizing: border-box;
}
.cycle:before {
  z-index: 100;
  content: "";
  height: 0;
  width: 0;
  border: 24px solid transparent;
  border-bottom-color: #2280b6;
  position: absolute;
  top: 20px;
  left: -29px;
}
.cycle:after {
  z-index: 100;
  content: "";
  height: 0;
  width: 0;
  border: 24px solid transparent;
  border-top-color: #2280b6;
  position: absolute;
  bottom: 20px;
  right: -29px;
}

.label_signage #about .style_section {
  max-width: 1500px;
  margin: auto;
}

/*================== fukuoka_media ==================*/

.media p.anim {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  position: relative;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.media p.anim.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.media #about {
  background: url(../../common/images/media/bg_imgs02.jpg) no-repeat right bottom;
  background-size: cover;
}
.media #products,
.media #term,
.coupon_signage #function {
  background-color: #f6f6f6;
}
.media #document {
  /*background: url(../../common/images/media/bg_inquiry.gif) left top;*/
  background: url(../../common/images/document.jpg) center center;
  background-size: cover;
}
.media .img_block_3col {
  max-width: 1200px;
  margin: auto;
}
.media .img_block_left {
  max-width: 1350px;
  margin: auto;
}

/*================== touch_signage ==================*/

.touch_signage #feature {
  background: url(../../common/images/touch_signage/bg_imgs02.jpg) no-repeat center bottom;
  background-size: cover;
}
.touch_signage #contents_image {
  background: url(../../common/images/touch_signage/bg_imgs03.jpg) no-repeat right top;
  background-size: cover;
}
.touch_signage #case {
  background-color: #ffffff;
}

/* coupon_signage */
.case_study #promo_img img,
.news #promo_img img {
  width: 100%;
}
.coupon_signage #communication {
  background-size: cover;
}

.news_text h2 {
  line-height: 1.3;
}
.case_image,
#case_image {
  width: 70%;
  padding: 0 15%;
  overflow: hidden;
  max-width: none;
  background-color: #000;
  position: relative;
  max-height: 400px;
}
#case_image a,
.case_image a {
  display: block;
  float: left;
  width: 33.3%;
}
.case_image a img,
#case_image a img {
  width: 100%;
  vertical-align: bottom;
  /*margin-top: -95px;*/
}
.case_image .slick-prev,
#case_image .slick-prev {
  width: 15%;
  height: 100%;
  left: 0;
  top: 0;
  border-bottom: none;
}
.case_image .slick-prev:after,
#case_image .slick-prev:after {
  content: "";
  width: 18%;
  position: absolute;
  top: 54%;
  left: 40%;
  border-top: 1px solid #fff;
}
.case_image .slick-next,
#case_image .slick-next {
  width: 15%;
  height: 100%;
  right: 0;
  top: 0;
  border-bottom: none;
}
.case_image .slick-next:after,
#case_image .slick-next:after {
  content: "";
  width: 18%;
  position: absolute;
  top: 54%;
  right: 40%;
  border-top: 1px solid #fff;
}
.case_image .slick-slide,
#case_image .slick-slide {
  opacity: 0.3;
}
.case_image .slick-active,
#case_image .slick-active {
  opacity: 1;
}
.device {
  width: 300px;
  margin: 0 auto 20px;
  padding: 18px;
  text-align: left;
  background-color: #f1f1f1;
  border: 6px solid #e4e4e4;
}
.line {
  margin: 40px 0;
  padding: 0;
  width: 100%;
  height: 1px;
  background-color: #e8e8e8;
  clear: both;
}
#tocible {
  right: -200px;
  left: auto !important;
  position: fixed !important;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-align: left;
  font-size: 75%;
  max-width: 200px;
  height: 100%;
  overflow: hidden;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
#tocible.active {
  right: 20px;
}
#tocible ul {
  margin: 0;
  padding-top: 16px;
  overflow: hidden;
}
#tocible ul li a {
  padding: 0.5rem 1rem;
  display: block;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
#tocible ul li a:hover {
  background-color: #2280b6;
  color: #ffffff;
}
#tocible ul li.toc_scrolled a {
  background-color: #b0e2ff;
}
#tocible ul li.tocible_subheading a {
  text-indent: 1rem;
}
#nav_switch {
  display: none;
  position: fixed;
  width: 20px;
  height: 110%;
  top: 0;
  right: 0;
  background-color: #2280b6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-indent: 1rem;
  cursor: pointer;
}
#nav_switch span {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 46%;
  right: -89px;
  width: 200px;
  color: #fff;
  margin: auto;
  display: inline-block;
  font-size: 80%;
}
.case_study #label h2,
.case_study #touch h2,
.case_study #media h2,
.case_study #coupon h2 {
  border: 1px solid #cdcdcd;
  padding: 18px 11px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  display: block;
  width: 80%;
  margin: 30px auto 0;
}

#case .style_section {
  padding: 3rem 0 0;
}

p.point strong {
  padding: 1rem;
  border-radius: 24px;
  background-color: #dde1e2;
  border: none;
  box-shadow: none;
  font-size: 1.8rem;
  display: block;
  width: 80%;
  margin: auto;
  text-align: center;
  max-width: 1500px;
  box-sizing: border-box;
}

/* signagemedia */
.signage_media #about {
  padding: 0;
}
.signage_media #about h2 {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
}
#media_about {
  margin: auto;
  padding-bottom: 20rem;
  max-width: 1500px;
  background: url(../../common/images/bg08.jpg) no-repeat right bottom;
  background-size: contain;
}
#media_about p {
  width: 70%;
}
.logo_img {
  margin: 0;
  padding: 5rem;
  max-width: 600px;
}
#prod {
  padding-bottom: 0;
}
.prod_wrapper {
  margin: auto;
  padding: 2rem;
  max-width: 1200px;
  box-sizing: border-box;
}
#prod .style_section {
  background-color: #f5fbff;
}
.prod_lg {
  margin-bottom: 4rem;
  box-sizing: border-box;
  padding: 4rem;
  background-color: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
}
.prod_lg,
.img_area {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prod_lg h3 {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 2rem;
}
.prod_lg p {
  margin-top: 1rem;
  width: 100%;
  font-size: 1.4rem;
}
.img_prod_l,
.img_prod_r {
  width: 46%;
  border-radius: 1.4rem;
  background-color: #b7e4ff;
}
.img_prod_l img,
.img_prod_r img {
  margin-top: -15%;
  padding-bottom: 1rem;
  max-width: 75%;
  height: auto;
}
.img_cross {
  margin: 0 -10%;
  width: 20%;
  position: relative;
  z-index: 5;
}
#prod_sns {
  background-color: #e0a6e9;
}
#prod_present {
  background-color: #ff9cbb;
}
#prod_sampling {
  background-color: #6ad5be;
}
.contents_wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1500px;
  margin: auto;
}
.contents_lg {
  margin: 0.5rem;
  padding: 1rem;
  border: 1px solid #cdcdcd;
  width: calc(33.3% - 2rem);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  align-content: start;
}
.contents_lg h3 {
  width: 100%;
}
.contents_bottom {
  width: 100%;
}
.contents_desc {
  text-align: left;
}
.contents_sozai {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  width: 100%;
  background-color: #ececec;
}
.contents_price {
  margin: auto 0 0.5rem;
  padding: 0.5rem 0;
  border: 1px solid #cdcdcd;
  width: 100%;
  box-sizing: border-box;
}
.contents_img {
  margin: auto;
  width: 60%;
}

.task_img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.task_img img {
  width: 33.3%;
  padding: 1rem;
  box-sizing: border-box;
}
.strengths {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.strengths_block {
  margin: 1rem 3%;
  width: 44%;
  text-align: left;
}
.strengths_block .colored {
  position: relative;
  color: #5ec5ff;
}
.strengths_block .colored:before {
  content: "";
  width: 10rem;
  height: 10rem;
  border: 1px solid #bde7ff;
  border-radius: 10rem;
  position: absolute;
  top: -4.2rem;
  left: -3.5rem;
  z-index: -1;
}
.strengths_block .colored:after {
  content: "";
  width: 10rem;
  height: 0;
  border-top: 1px solid #5ec5ff;
  position: absolute;
  top: 0.75rem;
  left: 5rem;
  z-index: -1;
}

.strengths_desc {
  margin: 1rem 2%;
  width: 96%;
  text-align: left;
}
.strengths_img {
  margin: 0;
}
.strengths_img img {
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 33px 33px 65px #d9d9d9, -33px -33px 65px #ffffff;
}

.task_img {
  padding: 0 8rem;
}
.strengths {
  padding: 1rem 8rem;
}

.pc_main {
  display: block;
}
.sp_main {
  display: none;
}

.mail_link {
  font-size: 152%;
  color: #121212;
  font-weight: bold;
}
.tel_link a {
  font-size: 172%;
  color: #121212;
  font-weight: bold;
}
.tel_link .icon_tel {
  vertical-align: sub;
}
.tel_br {
  display: none;
}

#promotion .promo_wrapper.promo_main_bc {
  max-width: 76%;
  margin-top: -100px;
}
#promotion .promo_wrapper.promo_main_bc p {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
  font-size: 1.8rem;
}
#promotion .promo_wrapper.promo_main_bc p a {
  padding: 1rem 1.8rem;
}

/*================== media_quries ==================*/
/* for tablet (landscape) */
@media screen and (max-width: 1280px) {
  .case_image a img,
  #case_image a img {
    /*margin-top: 0;*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 440px;
  }
  .wrapper {
    max-width: 1200px;
  }
}
/* for tablet */
@media screen and (max-width: 1280px) {
  .mail_link {
    font-size: 110%;
  }
  .tel_link a {
    font-size: 110%;
  }
  .prod_lg {
    padding: 2rem;
  }
  header .icon,
  header .follow-me a::before {
    width: 18px;
    height: 18px;
    line-height: 18px;
  }
  /*header #header_cont #contact {
		font-size: 100%;
		margin-top: 23px;
	}*/
  header #header_cont #menu {
    font-size: 68%;
    margin-top: 26px;
  }
  header #header_cont #contact {
    font-size: 80%;
    margin-top: 18px;
  }
  #promotion .promo_main,
  #promotion .promo_desc {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    width: 64%;
  }
  .line {
    margin: 20px 0;
  }
  .task_img {
    padding: 0;
  }
  .strengths {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 960px) {
  #sub_menu ul {
    justify-content: start;
  }
  .logo_img {
    padding: 2rem;
  }
  .prod_wrapper {
    padding: 1rem;
  }
  .prod_lg {
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .prod_lg h3 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
  .prod_lg p {
    font-size: 1rem;
  }
  #media_about p {
    width: 90%;
    margin: auto;
  }
  #promotion .promo_img {
    margin-left: -11%;
  }
  #promotion #mv.promo_bg {
    background-image: url(../../common/images/bg01g.jpg), url(../../common/images/bg01g.jpg);
    background-position: left top, right bottom;
    background-size: 188%, 200%;
  }
  header #header_cont #site_id img {
    width: 74%;
  }
  #service_con #service_block_top .service_block_wrapper .service_link {
    width: 46%;
    margin: 1rem 2% 0;
  }
  .signage_media #promo_area .promo_desc,
  .label_signage #promo_area .promo_desc,
  .touch_signage #promo_area .promo_desc,
  .media #promo_area .promo_desc,
  .coupon_signage #promo_area .promo_desc {
    margin-top: 150px;
    display: block;
    position: relative;
    z-index: 5;
  }
  .promo_wrapper h2 {
    font-size: 1.6rem;
  }
  #promo_area .promo_img {
    width: 164px;
    margin-top: -80px;
  }
  #service_con #service_block_top .service_block_wrapper .w_btn {
    margin: 1rem 0;
  }
  header #header_cont #menu #service:first-child:after {
    position: absolute;
    top: 21px;
    right: 20px;
    margin-left: 2rem;
  }
  header #header_cont #mb_menu {
    display: none;
    position: static;
    right: auto;
  }
  header #header_cont #mb_menu.active {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    position: fixed;
    top: 66px;
    flex-wrap: wrap;
    justify-content: center;
    align-content: start;
  }
  header #header_cont #mb_menu.active #menu {
    float: none;
    margin-top: 0;
    margin-right: 0;
    width: 100%;
  }
  header #header_cont #mb_menu.active #menu li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  header #header_cont #mb_menu.active #menu li a {
    display: block;
    padding: 16px 0;
    box-shadow: 0 1px 0 rgb(245, 245, 245);
    font-size: 1rem;
  }
  /*header #header_cont #mb_menu.active #contact{
		float: none;
		position: fixed;
		width: 100%;
		margin: 0;
		text-align: center;
		font-size: 100%;
	}*/
  header #disp_switch {
    display: block;
    cursor: pointer;
  }
  header #header_cont #site_id {
    width: 80%;
  }
  #sub_menu {
    display: none;
  }
  #sub_menu.active {
    height: auto;
    z-index: 10010;
    display: block;
    -webkit-transform: translate(0, 295px);
    transform: translate(0, 295px);
  }
  #sub_menu.active li {
    width: calc(50% - 16px);
    padding: 0;
    font-size: 100%;
  }
  #sub_menu.active li a span {
    white-space: normal;
  }
  #sub_menu.active li a:hover {
    box-shadow: none;
  }
  #contact_block_top ul li {
    font-size: 150%;
  }
  #contact_block_top h2 {
    padding: 3rem 0;
  }
  .media .img_block_left .img_block_img {
    width: 80%;
  }
  .media .img_block_left .img_block_txt {
    width: 90%;
    font-size: 85%;
  }
  #news #news_block_top div.news_box {
    width: 48%;
  }
  .label_signage #motion .img_caption li {
    font-size: 90%;
  }
  .line {
    margin: 5px 0;
  }
  .news #promo_title,
  .case_study #promo_title {
    padding: 16% 0 5%;
  }
  .news #promo_img,
  .case_study #promo_img {
    top: 20px;
  }
}
/* for smartphone */
@media screen and (max-width: 600px) {
  #promotion .promo_wrapper.promo_main_bc p {
    bottom: -35px;
  }
  .pc_main {
    display: none;
  }
  .sp_main {
    display: block;
  }
  .contents_lg {
    width: calc(100% - 4rem);
  }
  .strengths_block,
  .strengths_desc {
    width: 96%;
  }
  .task_img img {
    width: 72%;
    margin: auto;
  }
  p.point strong {
    width: 94%;
  }
  #media_about {
    background-size: 140%;
  }
  .sp_br {
    display: block;
  }
  #promotion .promo_wrapper {
    position: relative;
    flex-wrap: wrap-reverse;
  }
  #promotion .promo_desc h2 {
    margin-bottom: 0;
  }
  #promotion .promo_main,
  #promotion .promo_desc {
    width: 90vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 3;
    position: relative;
    margin-top: 80%;
  }
  #promotion .promo_img_label {
    width: 100%;
  }
  #promotion .lead {
    display: none;
  }

  #news #news_block_top div.news_box {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  #service_con #service_block_top .service_block_wrapper .service_link {
    width: 92%;
    margin: 1rem 4% 0;
  }
  #service_con #service_block_top ul li {
    font-size: 85%;
  }
  #service_con #service_block_top ul li {
    width: 45%;
  }
  body {
    font-size: 90%;
  }
  table.signageLocation {
    width: 100% !important;
  }
  .news_text {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 80%;
  }
  #promotion .promo_desc + p {
    display: none;
  }
  #news_block_top,
  .news_text {
    margin: 0 3% !important;
  }
  #service_con #service_block_top .service_block_wrapper .w_btn {
    margin: 0.5rem 0;
  }
  #service_block_top,
  #contact_block_top {
    margin: 0 !important;
  }
  .news #promo_title {
    padding: 70px 0 5%;
  }
  #scroll_txt {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  #point01,
  #point02,
  #point03 {
    width: 80%;
    display: block;
    margin: auto;
  }
  .label_signage .cycle {
    height: 80%;
  }
  .label_signage #motion2 ul {
    width: 88%;
    padding: 40px 2% 13px;
  }
  .label_signage #motion .img_caption li {
    width: 88%;
    margin-bottom: 14px;
    height: 5.5rem;
  }
  .line {
    margin: 1px 0;
  }
  .img_block_left .img_block_img,
  .img_block_left .img_block_txt {
    width: 88% !important;
  }
  .label_signage #cms .img_block_left h4 {
    margin-top: -15px;
  }
  .label_signage #data ul {
    width: auto;
  }
  .img_block_3col ul li {
    width: 68%;
  }

  footer #copy {
    letter-spacing: -0.5px;
  }
  .news #promo_title,
  .case_study #promo_title {
    padding: 20% 0 5%;
  }
  /*#news #news_block_top div.news_box p {
		height: 10rem;
	}*/
}

.follow-me {
  margin-top: 20px;
  padding: 0;
  display: inline-block;
}
.follow-me a::before {
  background-color: #55acee;
  -webkit-border-radius: 2px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  height: 28px; /* Button height */
  line-height: 28px; /* Button height */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  width: 28px; /* Button width */
}
.follow-me a:hover::before {
  color: #fff;
}
.follow-me a[href*="twitter.com"]::before {
  content: "\f099";
}
.follow-me a[href*="twitter.com"]:hover::before {
  background-color: #2280b6;
}

.slick-dots {
  margin: auto;
  padding-top: 0.5rem;
  display: flex;
  position: absolute;
  bottom: 15px;
  width: 44%;
  left: 28%;
  border-radius: 20px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
}
.slick-dots li button {
  text-indent: -9999px;
  color: transparent;
  border-radius: 100%;
  border: none;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0.2rem;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.slick-dots li.slick-active button {
  background-color: #2280b6;
}

header #header_cont #contact {
  font-size: 85%;
}
header #header_cont #contact .btn {
  padding: 0.1rem 0.8rem;
}
@media screen and (max-width: 768px) {
  .mail_link,
  .tel_link {
    width: 100%;
  }
  header #header_cont #contact {
    font-size: 140%;
    width: 100%;
    text-align: center;
  }
  header #header_cont #contact .btn {
    padding: 0.5rem 2rem;
  }
  .tel_br {
    display: block;
  }
}

/* signagemedia new */
.signage_media_new #about {
  text-align: left;
  padding: 8rem 0 4rem;
  background-color: #f1f3f5;
}
.signage_media_new .wrapper {
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 2rem;
}
.signage_media_new h2 {
  display: inline-block;
  border: none;
  position: relative;
}
.signage_media_new #contents h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5rem;
  height: 5px;
  background-color: #2181b3;
}
.signage_media_new #contents #contact_block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  background-color: #2181b3;
}
.signage_media_new .about_box {
  display: flex;
  flex-wrap: wrap;
}
.signage_media_new .about_text {
  width: 48%;
}
.signage_media_new .about_text p {
  padding-right: 2rem;
  line-height: 2rem;
}
.signage_media_new .about_img {
  width: 52%;
}
.signage_media_new .about_img img {
  width: 100%;
}
.signage_media_new .catch {
  font-weight: bold;
  font-size: 5rem;
}
.signage_media_new #info .style_section,
.signage_media_new #map .style_section,
.signage_media_new #sns .style_section,
.signage_media_new #media .style_section,
.signage_media_new #prod .style_section {
  background-color: #fff;
  text-align: left;
}
.signage_media_new .lineup_set,
.signage_media_new .media_set,
.signage_media_new .point_set {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5% 4rem;
}
.signage_media_new .lineup_set {
  margin-bottom: 0;
}
.signage_media_new .lineup,
.signage_media_new .point {
  margin: 0 1.5% 4rem;
  width: 30%;
  display: flex;
  flex-direction: column;
}
.signage_media_new .point strong {
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  font-size: 1.8rem;
}
.signage_media_new .point strong span {
  font-size: 5rem;
}
/*.signage_media_new #contact_block_top {
  padding: 8rem 0;
}*/
.signage_media_new #contact_block_top .btn {
  padding: 1rem 2rem;
}
.signage_media_new .media_unit {
  margin: 0 1.5%;
  width: 22%;
  width: 30%;
  text-align: center;
}
.signage_media_new .media_unit span {
  display: block;
}
.signage_media_new .lineup img,
.signage_media_new .media_unit img {
  box-shadow: 0 4px 8px rgb(0 0 0 / 15%);
}
.signage_media_new .point .btn,
.signage_media_new .media_unit .btn {
  background-color: #232323;
  line-height: 24px;
  margin-top: 0.6rem;
  min-width: 48%;
}
.signage_media_new .point .btn:hover,
.signage_media_new .media_unit .btn:hover {
  background-color: #464646;
}
.signage_media_new .point .btn {
  display: block;
  width: 100%;
  margin: auto auto 0;
  box-sizing: border-box;
}
.media_promo_img .img_base {
  box-shadow: 0 6px 18px rgb(0 0 0 / 15%);
}
.signage_media_new #media_promo_area {
  position: relative;
}
.signage_media_new.news #media_promo_area {
  background-color: #f1f1f1;
}
.signage_media_new.news #news #news_block_top div.news_block_wrapper.active {
  margin-top: 0;
}
.signage_media_new .media_promo_bg {
  background: #2280b6;
  width: 100%;
  height: 80%;
  position: absolute;
  z-index: 0;
}
.signage_media_new .media_promo_desc {
  position: absolute;
  top: calc(50% - 2.4rem);
  left: 25px;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}
.signage_media_new .media_promo_desc::after {
  content: "";
  width: 160%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -60%;
  bottom: 0;
}
.media_promo_img {
  padding-top: 0;
  margin-right: 0;
  z-index: 1;
}
.media_promo_img .img_base {
  visibility: hidden;
  width: 350px;
}
.media_promo_wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .signage_media_new .wrapper {
    padding: 0;
  }
  .signage_media_new .media_promo_desc {
    top: calc(2rem + 100px);
    left: calc(50% - 600px);
    font-size: 2rem;
  }
  .media_promo_img {
    padding-top: 100px;
    margin-right: -40px;
  }
}
.signage_media_new .media_desc {
  padding: 1rem 2rem;
  text-align: left;
}
.signage_media_new .media_download .btn {
  background-color: #232323;
  line-height: 72px;
  margin-top: 0.6rem;
  min-width: 40%;
}
.signage_media_new .media_download .btn:hover {
  background-color: #464646;
}
.signage_media_new .lineup p span {
  border-bottom: 1px solid #464646;
  padding-bottom: 0.4rem;
}
.signage_media_new .media_table {
  margin: 0 auto 4rem;
  width: 80%;
  text-align: center;
  border-right: 2px solid #2181b3;
  border-bottom: 2px solid #2181b3;
}
.signage_media_new .media_table th {
  width: 25%;
  padding: 0.5rem 0.8rem;
  border-left: 2px solid #2181b3;
  border-top: 2px solid #2181b3;
  box-sizing: border-box;
  background-color: #96e1ff;
}
.signage_media_new .media_table td {
  width: 25%;
  padding: 1.5rem 0.8rem;
  border-left: 2px solid #2181b3;
  border-top: 2px solid #2181b3;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .signage_media_new .media_desc {
    padding: 0;
    text-align: left;
  }
  .signage_media_new .lineup p span {
    padding-bottom: 0;
  }
  .signage_media_new .lineup,
  .signage_media_new .media_unit,
  .signage_media_new .point {
    margin: 0 1.5% 1rem;
    width: 97%;
  }
  .signage_media_new .media_table {
    width: 100%;
  }
  .signage_media_new .about_text p {
    padding-right: 0;
  }
  .signage_media_new .about_text,
  .signage_media_new .about_img {
    width: 100%;
  }
  .signage_media_new #about {
    padding: 6rem 0 4rem;
  }
  .media_promo_img .img_base {
    visibility: hidden;
  }
}
.twitter_area {
  margin: 2rem auto;
  max-width: 1000px;
  height: 500px;
  overflow-y: scroll;
}
.twitter_area_inner {
  padding: 0.5rem;
}
.twitter_area::-webkit-scrollbar {
  width: 10px;
  margin-left: 5px;
}
.twitter_area::-webkit-scrollbar-track {
  border-radius: 10px;
}
.twitter_area::-webkit-scrollbar-thumb {
  background-color: #4181da;
  border-radius: 10px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.info_unit a {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #cdcdcd;
  padding: 1rem;
  box-sizing: border-box;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4), 0 0 0 0 #e2e2e2 inset;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.info_unit a:hover {
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4), 0 0 0 5px #e2e2e2 inset;
}
.info_img {
  width: 35%;
  padding-right: 1rem;
  box-sizing: border-box;
}
.info_txt {
  width: 65%;
}
.info_txt p {
  margin: 10px 0 0;
  font-size: 80%;
}
.info_txt h2 {
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  .info_img {
    width: 100%;
  }
  .info_txt {
    width: 100%;
  }
}

#menu li a {
  position: relative;
}
#menu .new {
  color: #ff0000;
  font-size: 0.5rem;
  position: absolute;
  top: -0.6rem;
  left: -0.3rem;
}
@media screen and (max-width: 960px) {
  #menu .new {
    position: static;
    margin-right: 0.2rem;
  }
}

#media_radar {
  position: fixed;
  bottom: 60px;
  right: 1rem;
  z-index: 8001;
}
#media_radar a img {
  width: 60vw;
  box-shadow: 0 2px 6px rgb(0 0 0 / 30%);
}
@media screen and (min-width: 768px) {
  #media_radar a img {
    width: auto;
  }
}
