@charset "UTF-8";
/*--ふくおかBizのページで使用されているメディアクエリのまとめです。scssで利用してください。cssでは使えません！！
@mixin pc_screen_under {
  @media screen and (max-width: 1230px){
    @content;
  }
}
@mixin pc_middle_under {
  @media screen and (max-width: 1200px){
    @content;
  }
}
@mixin pc_to_tablet {
  @media screen and (min-width: 768px) and (max-width: 1199px){
    @content;
  }
}
@mixin tablet_over {
  @media screen and (min-width: 768px){
    @content;
  }
}
@mixin tablet_under {
  @media screen and (max-width: 768px){
    @content;
  }
}
@mixin tablet_to_sp {
  @media screen and (min-width: 599px) and (max-width: 767px) {
    @content;
  }
}
@mixin sp_under {
  @media screen and (max-width: 599px){
    @content;
  }
}


呼び出し方（tablet_underのメディアクエリを呼び出す場合）
@include tablet_under(){
これだけ！この中にcssかいてください
}
-----------------------------------------------------*/
.kr_contact_con {
  padding: 9em 9em 0;
}
.kr_contact_con .kr_contact_ttl {
  margin-bottom: 1em;
  font-size: 28px;
  font-family: Verdana, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #232323;
  text-align: center;
}
.kr_contact_con .kr_contact_box label, .kr_contact_con .kr_contact_box .wpcf7-form-control-wrap {
  display: block;
}
.kr_contact_con .kr_contact_box label input {
  width: 100%;
}
.kr_contact_con .kr_contact_box input[type=submit] {
  display: block;
  margin: 0 auto;
  background: #01bea2;
}

@media screen and (max-width: 599px) {
  .kr_contact_con {
    padding: 0;
  }
}
img {
  width: 100%;
  height: auto;
  display: block;
}

p {
  text-align: justify;
}

/*********font colpor***********/
.color_red {
  color: #ff1515;
}

.color_blue {
  color: #5350ff;
}

/*********font colpor***********/
.wrapper {
  background-color: #fff;
}

.eyecatch {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/875;
  background-image: url(../img/digitalsignage/eyecatch.jpg);
  background-position: center right;
  background-size: contain;
  margin-top: 60px;
}
.eyecatch .title-area {
  position: absolute;
  left: 0;
  top: 40%;
}
.eyecatch .title-area > h1 {
  background-color: #fff;
  font-size: 1.5vw;
  padding: 5px 20px;
  font-weight: bold;
}
.eyecatch .title-area h1.sub {
  margin-bottom: 1em;
  display: block;
  width: auto;
  position: absolute;
  top: -70px;
}
.eyecatch .title-area h1.ds_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.3vw;
  font-weight: bold;
}
.eyecatch .title-area h1.ds_title span.title-logo {
  display: inline-block;
  width: 200px;
}

@media screen and (max-width: 599px) {
  .eyecatch {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: top right;
    background-position-x: -400px;
    border-bottom: 1px solid #ccc;
  }
}
@media (476px < width < 599px) {
  .eyecatch {
    background-position-x: right;
  }
}
@media screen and (max-width: 599px) {
  .eyecatch .title-area {
    top: unset;
    bottom: 3%;
    left: 2%;
  }
}
@media screen and (max-width: 599px) {
  .eyecatch .title-area > h1 {
    border: 2px solid royalblue;
  }
}
@media screen and (max-width: 599px) {
  .eyecatch .title-area h1.sub {
    top: -80px;
    font-size: 1em;
  }
}
@media screen and (max-width: 599px) {
  .eyecatch .title-area h1.ds_title {
    font-size: 4.2vw;
    padding: 10px 10px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 599px) {
  .eyecatch .title-area h1.ds_title span.title-logo {
    width: 180px;
  }
}
/*******コンテンツ部分のブロック*******/
.ds-con-wrap {
  width: 100%;
}

.ds-con {
  width: 85%;
  max-width: 1500px;
  margin: auto;
}

/*******コンテンツ部分のブロック*******/
/*******content 1 *******/
.content1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .content1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.con1-box {
  width: 45%;
}
.con1-box .con1-box-h2 {
  font-size: 1.5em;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .con1-box {
    width: 100%;
  }
}
/*******content 1 end*******/
/*******content 2 *******/
.bg-navy {
  background-color: #394A80;
}

.content2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .content2 {
    gap: 20px;
  }
}
.hr_triangle {
  position: relative;
  margin-bottom: 140px;
  width: 100%;
}
.hr_triangle::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  border-top: 140px solid #394A80;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 599px) {
  .hr_triangle {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .hr_triangle::after {
    border-top: 100px solid #394A80;
  }
}
.con2-box-h2 {
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 30px 0;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .con2-box-h2 {
    margin: 0px;
  }
}
.con2-box {
  width: 20%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: start;
  align-content: start;
  padding: 10px 20px;
}
.con2-box img {
  width: 100%;
}
.con2-box dl {
  width: 100%;
}
.con2-box dl dt, .con2-box dl dd {
  width: 100%;
  text-align: justify;
}
.con2-box dl dt {
  font-weight: bold;
  text-align: center;
  font-size: 1.3em;
}

@media screen and (max-width: 599px) {
  .con2-box {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .con2-box img {
    padding: 20px;
  }
}
/*******content 2 end*******/
/*******content 3 *******/
.ds-con3-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2vw;
  font-weight: bold;
  padding-top: 50px;
}
.ds-con3-title span.title-logo {
  display: inline-block;
  width: 360px;
}

@media screen and (max-width: 599px) {
  .ds-con3-title {
    font-size: 0.9em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .ds-con3-title span.title-logo {
    width: 320px;
  }
}
.content3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .content3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.con3-box-h2 {
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 30px 0;
  color: #fff;
}

.con3-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 60px;
}
.con3-box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.con3-box .con3-text {
  width: 50%;
}
.con3-box .con3-text h3 {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5em;
}
.con3-box .con3-text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 25px;
  font-size: 2rem;
  color: deepskyblue;
  letter-spacing: 0.05em;
}
.con3-box .con3-text a:hover {
  text-decoration: underline;
}
.con3-box .con3-img {
  width: 50%;
}
.con3-box .con3-img img {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .con3-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 599px) {
  .con3-box:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 599px) {
  .con3-box .con3-text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .con3-box .con3-text h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .con3-box .con3-img {
    width: 100%;
  }
}
/*******content 3 end*******/
/*******content 4 *******/
.bg-img {
  background: url(https://e-fukuoka.co.jp/wp-content/themes/efukuoka/asset/img/digitalsignage/background.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 50px;
}

.content4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .content4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.con4-box-h2 {
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
  color: #fff;
}

.con4-box {
  width: 30%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: start;
  align-content: start;
  padding: 10px 20px;
}
.con4-box img {
  width: 100%;
  margin-bottom: 10px;
}
.con4-box dl {
  width: 100%;
}
.con4-box dl dt, .con4-box dl dd {
  width: 100%;
}
.con4-box dl dt {
  font-weight: bold;
  text-align: center;
  font-size: 1.3em;
}

@media screen and (max-width: 599px) {
  .con4-box {
    width: 100%;
  }
}
/*******content 4 end*******/
/*******content 5 *******/
.content5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-block: 50px;
}

@media screen and (max-width: 599px) {
  .content5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.flex_ard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_ard h3 {
  color: #000;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.flex_ard .con5-text {
  width: 50%;
  text-align: center;
  margin-bottom: 10px;
}
.flex_ard .con5-text p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .flex_ard .con5-text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .flex_ard .con5-text p {
    font-size: 1em;
  }
}
.con5-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.con5-box .con5-img {
  width: 50%;
}
.con5-box .con5-img img {
  width: 90%;
  margin-inline: 0 auto;
}
.con5-box h3 {
  color: #000;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.con5-box .con5-text {
  width: 50%;
  text-align: center;
  margin-bottom: 10px;
}
.con5-box .con5-text p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .con5-box .con5-img {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .con5-box .con5-img img {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .con5-box .con5-text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .con5-box .con5-text p {
    font-size: 1em;
  }
}
/*******content 5 end*******/
/*******content 6 *******/
.content6 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.content6 > h2 {
  font-size: max(2vw, 17px);
  font-weight: bold;
  display: block;
  text-align: center;
}

.shop_link_list {
  font-size: 1.2em;
  text-align: center;
}
.shop_link_list a {
  color: #5350ff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: solid 1px #fff;
}
.shop_link_list a:hover {
  border-bottom: solid 1px #5350ff;
}

.shop_btn {
  display: block;
  width: 350px;
  font-weight: bold;
  margin-right: auto;
  margin-left: auto;
  background-color: #394a80;
  border: solid 1px #394a80;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100vh;
  text-align: center;
  padding: 10px 0;
}
.shop_btn:hover {
  color: #000;
  border: solid 1px #394a80;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .shop_btn {
    width: 250px;
    font-size: 0.9em;
  }
}
.signage-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}
.signage-img figure {
  width: 45%;
  max-width: 370px;
}

/*******content 6 end*******/
.carousel-wrapper {
  position: relative;
  text-align: center;
  overflow-x: auto;
  margin-bottom: 2em;
}

.sig-mv-ytb h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(27px, 2vw);
  font-weight: bold;
  padding-top: 65px;
  color: #000;
  margin-bottom: 80px;
}
.sig-mv-ytb .sig-mv-ytb_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 3020px;
  height: auto;
  margin: 2em auto 1em;
}
.sig-mv-ytb .sig-mv-ytb_box_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 2810px;
  height: auto;
  margin: 2em auto 1em;
}

.signage-caution p {
  font-size: var(--semi-fontsize);
  text-align: center;
  color: #e00010;
}

@media screen and (max-width: 768px) {
  .sig-mv-ytb h2 {
    margin-bottom: 10px;
  }
}
.sig-mv-ytb_cal_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sig-mv-ytb_cal_2 .sig-mv-ytb_fig {
  width: 48%;
  max-width: 400px;
}
.sig-mv-ytb_cal_2 .sig-mv-ytb_fig iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.sig-mv-ytb_cal_2 .sig-mv-ytb_txt {
  width: 48%;
}
.sig-mv-ytb_cal_2 .sig-mv-ytb_txt a {
  margin-top: 20px;
  text-decoration: none;
  color: deepskyblue;
  font-size: 1.2em;
  display: block;
  width: 100%;
  text-align: center;
}
.sig-mv-ytb_cal_2 .sig-mv-ytb_txt a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .sig-mv-ytb_cal_2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .sig-mv-ytb_cal_2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sig-mv-ytb_cal_2 .sig-mv-ytb_fig {
    width: 90%;
  }
  .sig-mv-ytb_cal_2 .sig-mv-ytb_txt {
    width: 100%;
  }
}
.sig-mv-ytb_item {
  width: 160px;
  display: block;
}
.sig-mv-ytb_item figure {
  position: relative;
}
.sig-mv-ytb_item figure iframe.youtube_frame {
  position: absolute;
  top: 7px;
  left: 9px;
  width: 142px;
  aspect-ratio: 9/16;
}
.sig-mv-ytb_item > p {
  text-align: center;
  color: #000;
  font-size: 0.8em;
}

@media screen and (max-width: 1200px) {
  .sig-mv-ytb_item {
    width: 164px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sig-mv-ytb_item {
    width: 125px;
  }
}
@media screen and (max-width: 768px) {
  .sig-mv-ytb_item {
    width: 180px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .sig-mv-ytb_item figure iframe.youtube_frame {
    width: 146px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sig-mv-ytb_item figure iframe.youtube_frame {
    width: 112px;
    top: 6px;
    left: 7px;
  }
}
@media screen and (max-width: 768px) {
  .sig-mv-ytb_item figure iframe.youtube_frame {
    width: 163px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sig-mv-ytb_item > p {
    height: 3.5em;
  }
}
.owl-nav {
  width: 100%;
  right: 0;
}

.owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

button.owl-prev {
  left: -20px !important;
}
button.owl-next {
  right: -20px !important;
}

/*# sourceMappingURL=digitalsignage.css.map */