/* ==========================================
   リセットCSS ここから
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, 
h1, 
h2, 
h3, 
h4, 
p, 
figure, 
blockquote, 
dl, 
dd {
    margin: 0;
  }
  
body {
    font-size: 16px;
    color: #333333;
    font-family: 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    line-height: 1.8;
    font-feature-settings: "palt";
    margin: 0 !important;
    background-color: #F9F9FB;
    height: 100%; /* ページ全体の高さを指定 */
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    counter-reset: number 0;/* number のカウンタを 0 にセット */
  }

  ul, 
  ol[role="list"] {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  a{
    text-decoration: none;
    color: #000;
  }
  
  html:focus-within {
    scroll-behavior: smooth;
  }
  
  img, 
  picture {
    max-width: 100%;
    display: block;
    pointer-events: none;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
  }
  
  input, 
  button, 
  textarea, 
  select {
    font: inherit;
  }
  
  input[type="submit"] {
    cursor: pointer;
  }
  
  video {
    width: 100%;
  }

@media screen and (min-width : 768px) {
  body{
    font-size: 18px;
    letter-spacing: 2.4px;
  }
}
/* ==========================================
   リセットCSS ここまで
========================================== */





/* ==========================================
   共通スタイル ここから
========================================== */
/* 表示切替 */
.hide_sp{
  display: none;
}

/* フォント */
.Oswald_text{
  font-family: 'Oswald', sans-serif;
}

/* フォントサイズ */
.text_huge {
    font-size: 24px;
}
h2,
.text_large {
    font-size: 20px;
}
.text_big {
    font-size: 18px;
}
p,
.text_normal {
    font-size: 16px;
}
.text_small {
    font-size: 14px;
}
.text_little {
    font-size: 12px;
}

/* アンカー */
a.anchor {
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}

/* 背景 */
.bg_blak{
  background-color: #000;
  opacity: 0.4;
}
.bg_lightgray{
  background-color: #f5f5f5;
}

/* テキストカラー */
.text_white{
  color: #fff;
}
.text_gray{
  color: #828282;
}

/* 太文字 */
.text_bold{
  font-weight: bold;
}

/* 文字中央 */
.text_center{
  text-align: center;
}

/* アンダーライン */
.marker_yellow{
  background: linear-gradient(transparent 60%, #ffd700 60%);
  line-height: 1;
}


/* .decoration{
  font-size: 12px;
  margin: 0 10px;
} */

/* YouTube */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.emphasis{
  font-size: 24px!important;
}

/* .border-bottom{
  border-bottom: 1px solid #333333;
  padding: 0 10px 3px;
} */

/* ボタン */
.BTN div{
  background-color: #000;
  padding: 10px 0;
}
.BTN h3{
  text-align: center;
}

section > img,
#installation ul{
  display: flex;
  margin: 15px 0;
}

/* ヘッダー */
header .inner{
  padding: 15px 0;
  width: 90%;
  margin: 0 auto;
}
header .inner h1{
  width: 150px;
  margin: 0;
}
header a div{
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 0;
  background-color: #ffd700;
}
header a div p:before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 17px;
  background-image: url(../img/contactBTN.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}
header .header_text{
  font-weight: bolder;
  margin: 15px 0 0;
}

/* フッター */
footer{
  padding: 10px 0 50px;
  background-color: #333333;
}
footer img{
  width: 100px;
  margin: 0 auto;
}

/* 背景ロゴ */
.bg_logo{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: .1;
  z-index: -1;
  width: 240px;
}

/* セクション */
section:not(#mainvisual):not(#potential):not(#deployment_size){
  margin: 80px auto;
}
section .bg_img{
  padding: 30px 0;
}

/* 見出し・表題 */
.heading{
  text-align: center;
  margin: 0 0 15px;
  line-height: 1.5;
}

/* 見出しの補足・記事の要約 */
.lead{
  margin: 10px 0;
}

@media screen and (min-width: 500px){
  /* ボタン */
  .BTN {
    margin: 30px auto 0;
    width: 300px;
  }

  /* ヘッダー */
  header a div{
    width: 240px;
    bottom: auto;
    right: 10px;
    top: 10px;
    padding: 5px 0;
    border-radius: 50px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  }
  header a div .hide_sp{
    display: block;
  }
  header a div  .hide_pc{
    display: none;
  }
  header a div p:before {
    display: none;
  }

  /* フッター */
  footer{
    padding: 10px 0;
  }
  footer img {
    width: 130px;
  }

  /* 背景ロゴ */
  .bg_logo{
    width: 400px;
  }
}

@media screen and (min-width: 768px){
  /* 表示切替 */
  .hide_sp{
    display: block;
  }
  .hide_pc{
    display: none;
  }

  /* フォントサイズ */
  .text_huge {
    font-size: 32px;
  }
  h2,
  .text_large {
      font-size: 24px;
  }
  .text_big {
      font-size: 20px;
  }
  p,
  .text_normal {
      font-size: 18px;
  }
  .text_small {
      font-size: 16px;
  }
  .text_little {
      font-size: 14px;
  }

  /* 強調 */
  .emphasis{
    font-size: 40px!important;
  }

  /* ボタン */
  .BTN{
    width: 350px;
  }
  .BTN div{
    padding: 15px 0;
  }

  /* ヘッダー */
  header .inner {
    padding: 17px 0;
  }
  header .inner h1{
    width: 200px;
  }

  .bg_logo {
    width: 560px;
  }

  /* 見出し・表題 */
  .heading {
    margin: 0 0 30px;
  }

  /* 見出しの補足・記事の要約 */
  .lead{
    margin: 15px 0;
  }
}

@media screen and (min-width: 1024px){
  /* ヘッダー */
  header .inner h1{
    margin: 0 auto;
  }
  header a div{
    width: 240px;
  }
  header .header_text{
    text-align: center;
  }

  /* セクション */
  section:not(#mainvisual):not(#potential) {
    margin: 100px 0;
    width: 1000px;
  }
  /* section .inner{
    width: 900px;
  } */
  section .bg_img{
    padding: 50px 0;
  }
}

@media screen and (min-width: 1366px){
  /* ボタン */
  .BTN{
    width: 500px;
  }

  /* セクション */
  section:not(#mainvisual):not(#potential) {
    margin: 150px 0;
  }
  /* section .inner{
    width: 1024px;
  } */
}

/* ==========================================
   共通スタイル ここまで
========================================== */




/* メインビジュアル ここから */
#mainvisual{
  position: relative;
  background-color: #333333;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* height: 345px; */
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
#mainvisual .wrapper{
  position: relative;
  background-color: rgba(0,0,0,0.2);
  height: 57vw;
}
#mainvisual .wrapper > div{
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  z-index: 10;
}
#mainvisual .wrapper > div h2{
  text-align: center;
}
#mainvisual #mainvisual_video {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
  right: 0;
  top: 0;
  min-width: 100%;
  height: 100%;
  width: auto;
  z-index: 1;
}
#mainvisual .wrapper > img{
  position: absolute;
  width: 200px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10
}
/* メインビジュアル ここまで */

section .inner,
#installation ul,
#deployment_size ul{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

#campaign .inner .heading:before{
  content: 'New!';
  font-size: 14px;
  color: #ff0000;
  font-family: 'Cantarell', sans-serif;
  margin: 0 15px 0 0;
}

#campaign .bg_img{
  position: relative;
  background-image: url(../img/bg_campaign.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

#campaign h3,
#potential .inner li h3,
#best_seller .inner li h3{
  font-size: 18px;
  line-height: 1;
}

#campaign h3 span,
#potential .inner li h3 span,
#best_seller .inner li h3 span{
  font-size: 32px;
  margin: 0 5px 0 0;
}

#campaign .emphasis{
  text-align: center;
  border-bottom: 2px solid #fff;
  width: 150px;
  line-height: 1.5;
  margin: 0 auto;
}

#campaign .bg_img .heading{
  display: flex;
  align-items: center;
  justify-content: center;
}

#campaign ul,
#installation ul,
#deployment_size ul{
  margin: 15px auto;
  padding: 15px 0
}

#campaign ul li h2,
#campaign ul li p{
  text-align: center;
}

#campaign ul li:not(:last-child){
  margin: 0 0 10px;
}

#campaign ul li .price_before{
  margin: 10px 0;
}

#campaign ul li h2{
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 0;
}

#campaign ul li h2:before{
  background-image: url(../img/arrow.png);
  content: '';
  display: inline-block;
  width: 40px;
  height: 20px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin: 0 5px 0 0;
}

#campaign ul li img{
  width: 300px;
  margin: 0 auto;
}

#campaign .BTN {
  margin: 10px auto 0;
}

#potential {
  position: relative;
  background-image: url(../img/bg_potential.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 1000px;
  margin: 10px auto;
}

#potential .inner{
  position: relative;
  z-index: 2;
}

/* #potential .inner ul{
  margin: 80px 0 10px 0;
} */

#potential .inner ul,
#best_seller .inner ul{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#potential .inner li:nth-child(2),
#potential .inner li:nth-child(4),
#best_seller .inner li:nth-child(2),
#best_seller .inner li:nth-child(4){
  margin: 0 15px;
}

#potential .inner li p,
#best_seller .inner li p{
  font-weight: bold;
}

#potential .inner ul + p{
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 0;
}

#potential .inner ul + p:before{
  content: '※';
  display: block;
}

#potential .bg_blak{
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

#installation li{
  width: 250px;
  margin: 0 auto;
}

#installation li p{
  text-align: center;
}

#deployment_size li:not(:last-child){
  margin: 0 0 10px;
}

#best_seller {
  position: relative;
  background-image: url(../img/bg_best.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
}

#best_seller .inner{
  position: relative;
  z-index: 2;
}

#best_seller ul{
  margin: 15px 0;
}

#best_seller .bg_map{
  position: absolute;
  background-image: url(../img/map.png);
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  height: 140px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.5;
  z-index: 1;
}

#company .BTN{
  margin: 10px auto;
}

#company iframe{
  width: 100%;
  height: 300px;
  margin: 30px 0 10px;
  filter: grayscale(.6);
}

#company ul li:not(:last-child){
  margin-bottom: 5px;
}

#company ul li .tel_btn,
#company ul li .mail_btn{
  display: inline-block;
}

#company ul li .tel_btn span,
#company ul li .mail_btn span{
  border-bottom: 1px solid #000;
  cursor: pointer;
}

@media screen and (min-width: 500px){
  #campaign ul{
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 768px){
  section > img,
  #installation .inner ul{
    margin: 30px 0;
  }

  #campaign .emphasis{
    width: 250px;
  }

  #campaign .inner .heading:before{
    font-size: 16px;
  }

  #campaign ul,
  #installation ul,
  #deployment_size ul{
    padding: 30px 0;
  }

  #campaign .BTN{
    margin: 30px auto 0;
  }

  #potential .inner ul {
    margin: 100px 0 20px 0;
  }

  #potential .inner ul li{
    display: flex;
    align-items: flex-end;
  }

  #potential .inner ul li p{
    margin: 0 10px 0 0;
  }

  #potential .inner li h3,
  #best_seller .inner li h3{
    font-size: 32px;
  }

  #potential .inner li h3 span,
  #best_seller .inner li h3 span{
    font-size: 64px;
  }

  #potential .inner ul + p{
    justify-content: center;
  }

  /* #potential .bg_blak{
    height: 150px;
  } */

  #deployment_size .inner > img{
    margin: 30px 0;
  }

  #best_seller{
    display: flex;
    align-items: center;
    height: 350px;
  }

  #best_seller .bg_map{
    height: 300px;
  }

  #best_seller ul + p{
    width: 600px;
    margin: 0 auto;
  }

  #company .BTN{
    margin: 30px auto;
  }
}

@media screen and (min-width: 1024px){
  #campaign ul li h2{
    font-size: 32px
  }

  /* #potential .inner ul {
    margin: 250px 0 20px 0;
  } */

  #potential .inner li:nth-child(2),
  #potential .inner li:nth-child(4),
  #best_seller .inner li:nth-child(2),
  #best_seller .inner li:nth-child(4) {
    margin: 0 30px;
  }

  /* #potential .bg_blak {
    height: 180px;
  } */

  #best_seller{
    height: 450px;
  }
}

/* @media screen and (min-width: 1366px){
  #company ul{
    display: flex;
    justify-content: space-between;
  }

  #company ul li:not(:last-child){
    margin: 0 10px 0 0;
  }

  #company ul p{
    font-size: 16px;
  }
} */

@media screen and (min-width: 1500px){
  #mainvisual .wrapper{
    height: 750px;
  }

  /* section:not(#mainvisual){
    width: 1300px;
    margin: 100px auto;
  } */

  /* section .inner,
  #installation ul,
  #deployment_size ul{
    width: 1024px;
  } */
}





/* ==========================================
   20250120更新 ここから
========================================== */
#deployment_size{
  margin: 30px auto 0;
}

#deployment_size .heading{
  text-align: left;
}

#deployment_size .heading span{
  border-bottom: none;
}

#deployment_size .size_list{
  display: block;
}

#deployment_size .size_list li{
  width: 100%;
}

#video_display dl{
  margin: 30px 0;
}

#video_display dl dt:not(:first-of-type){
  margin-top: 15px;
}

#video_display ul li:not(:first-child){
  margin-top: 10px;
}

#video_display ul li img{
  margin-bottom: 10px;
}

#video_display ul li .video-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}

#video_display ul li .video-container video,
#video_display ul li .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video_display ul li .comparison-table {
  max-width: 800px;
  margin: 30px auto 0;
}
  
#video_display ul li .comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

#video_display ul li .comparison-table th,
#video_display ul li .comparison-table td {
  font-size: 12px;
  line-height: 1.3;
  padding: 10px;
  text-align: center;
  border: 1px solid #f5f5f5;
}

#video_display ul li .comparison-table th {
  background-color: #1e90ff;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

#video_display ul li .comparison-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

#video_display ul li .comparison-table .highlight {
  background-color: #e0ffff; /* 自社商品の背景色 */
  font-weight: bold;
}

.slick-slider {
  width: 100vw;
  margin: 80px calc(50% - 50vw);
  max-width: none;
  overflow: hidden;
}

.slick-slider li{
  margin: 0 5px;
}

.slick-slider li img {
  width: 120px; /* ロゴの幅 */
  height: auto; /* 縦横比を保持 */
  margin: 0 auto;
}

@media screen and (min-width: 768px){
  #deployment_size{
    margin: 50px auto 0;
  }
  
  #video_display ul li:not(:first-child){
    margin-top: 15px;
  }

  #video_display ul li .comparison-table th,
  #video_display ul li .comparison-table td {
    font-size: 14px;
  }

  .slick-slider li img {
    width: 160px;
  }
}
/* ==========================================
   20250120更新 ここまで
========================================== */
