@charset "UTF-8";

/* --------------------------------
font
--------------------------------- */
p {
  font-size: 1rem;
}
h3 {
  font-size: 1.5rem;
}
h2 {
  font-size: 2rem;
}


/* --------------------------------
wrapper
--------------------------------- */
.sup-wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .sup-wrapper {
    max-width: 500px;
  }
}





/* --------------------------------
サポートTOP画像
 -------------------------------- */
#top-img {
  padding-top: 120px;
  margin-bottom: 60px;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  #top-img {
    padding-top: 60px;
  }
}

/* --------------------------------
サポートへようこそ
 -------------------------------- */
.sup-top {
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}



/* ----------------------
ページ内リンク - ボタン
---------------------- */
.sup-jump {
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
}

.suptop-link .jump-item {
  display: flex;
  width: 32%;
}
/*
.jump-item :hover {
  color: #fff;
  background-color:#00A3D2;
  transition: ease 0.1s;
}
*/

.sup-btn {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 5px 20px;
  transition: none;

  font-size: 1.5rem;
  font-weight: bold;
  
  border-radius: 10px;
  background-color:#fff;
  filter:drop-shadow(0 3px 6px #00000029);
}
.sup-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;

  color: #00A3D2;
  background-color:#E1F8FF;

  flex-shrink: 0;
  margin-right: 8px;   
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .suptop-link .jump-item {
    width: 100%;
  }
  .sup-btn {
  font-size: 1.2rem;
  }
}



/* --------------------------------
電話/メール/動画
 -------------------------------- */
.modal-sup {
  margin-bottom: 100px;
}

/*--- ボタン ---*/
.test-btn{
  text-align: center;
}
.t-btn-list {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.t-btn {
  filter:drop-shadow(0 3px 6px #00000029);
  text-align: center;
  width: 32%;
}
/*--- sp ---*/
@media screen and (max-width: 799px) {

  .t-btn-list {
    justify-content: center;
    gap: 20px;
  }
  .t-btn {
    width: 100%;
    max-width: 250px;
  }
}

/*-- Modal --*/
.modal-toggle {
  display: none;
}
.modal-toggle:checked + .modal {/* 開いたら表示 */
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.modal-content {
  background: #fff;
  border-radius: 8px;
  width: 85%;
  max-width: 800px;
  max-height: 90vh; /* 画面の80%まで */
  overflow: hidden;  /* 角丸保護 */
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.modal-body {
  padding: 30px 45px;
  overflow-y: auto; /* スクロール */
  max-height: 90vh;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .modal-body {
    padding: 25px 30px;
  }
}

/*-- 閉じるボタン --*/
.close-btn {
  position: absolute; /* 絶対配置 */
  top: 20px;          /* 上から10px */
  right: 20px;        /* 右から20px */
  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;           /* ボタンの幅 */
  height: 30px;          /* ボタンの高さ */
  color: #fff;
  background-color: #00A3D2;
  border: none;
  border-radius: 50%;

  font-size: 20px;
  cursor: pointer;
}
.close-btn:hover {
  color: #00A3D2;
  background-color: #E1F8FF;
}



/* --------------------------------
Modal　本文
-------------------------------- */
.modal-body{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.modal-body .sup-title h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.modal-text p{
  font-size: 0.8rem;
}
.modal-body .attention{
  color: #FF0000;
}

/* ----------------------
電話サポート　Modal
---------------------- */
.sup-time {
  margin: 15px 0;
  justify-content: space-around;
  align-items: center;
  display: flex;

  gap: 10px;
  width: 100%;
  max-width: 350px;
  padding: 10px 20px;
  
  border-radius: 10px;
  background-color:#F6F6F6;
}
.sup-time img {
  width: 30%;
}
.time span {
  font-size: clamp(1.3rem, 5vw, 1.5rem);
  font-weight: bold;
}

.number {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.phone-link {
  border-right: 3px dotted #424242;
  padding: 20px;
  width: 50%;
}
.phone-link:last-child {
  border-right: none;
  border-bottom: none;
}
.num-btn {
  text-align: center;
  margin-top: 10px;
}
.num-btn a {
  display: inline-block;    /* 幅を中身に合わせる */
  background-color: #FF7700;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;

  padding: 5px 35px;
  border-radius: 2rem;
  text-decoration: none;
}
.num-btn a:hover {
  opacity: 1;
  background-color: #ff5e00; /* 少し濃く */
  transform: translateY(-2px); /* ホバーでちょっと浮く */
  box-shadow: 0 3px 6px #00000025; /* ふんわり影 */
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .phone-link {
  border-bottom: 3px dotted #424242;
  border-right: none;
  width: 100%;
}
}

/* ----------------------
電話サポート　混雑状況
---------------------- */
.peak-time {
  width: 100%;
  max-width: 600px;
}
.peak-time h3 {
  margin: 20px 0;
}
.icon-list {
  justify-content: center;
  display: flex;
  gap: 10px;
}
.icon-list .icon {
  width: 24%;
  padding: 8px;
  border-radius: 1rem;
}
.icon-list .icon p {
  font-size: 0.8rem;
}
.icon-list .icon img {
  width: 70%;
  max-width: 50px;
}
.peak-attention {
  margin-top: 20px;
  text-align: left;
}

/*--- 表 ---*/
.table{
  margin-top: 20px;
  background-color: #DCD7D0;
}
.table table{
  width: 100%;
}

.table th,
.table td {
  padding: 5px 10px;
  text-align: center;
}
.table th.time {
  padding-left: clamp(10px, 2.5vw, 25px);
  padding-right: clamp(10px, 2.5vw, 25px);
}
.table td img {
  width: 100%;
  max-width: 50px;
}

/*--- 背景色 ---*/
.table th {
  background-color: #EFEDE9;
}
.poor {
  background-color: #FFBCA2;
}
.fair {
  background-color: #FFFDE1;
}
.good {
  background-color: #FFFDE1;
}
.great {
  background-color: #E4EBF4;
}
/*
.fair {
  background-color: #FDE8E8;
}
*/

/* ----------------------
メールサポート　Modal
---------------------- */
.modal-mail {
  margin-top: 20px;
  gap: 20px;

  display: flex;           /* Flexboxを使う */
  flex-direction: column;  /* 上下方向に並べる */
  align-items: center;     /* 横方向中央揃え */
}
.modal-mail img {
  width: 100%;
  max-width: 350px;
}

/* ----------------------
動画サポート　Modal
---------------------- */
.modal-mov {
  margin-top: 20px;
}



/* --------------------------------
タイトル見出し
-------------------------------- */
/*--- 文字だけ ---*/
.top-title {
  text-align: center;
  margin-bottom: 30px;
}

/*--- 横棒あり ---*/
.product-title {
  text-align: center;
  margin-bottom: 30px;
}

.product-title h2 {
  display: inline-block;
  position: relative;
  padding: 0 2.5em;
}
.product-title h2::before,
.product-title h2::after  {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 45px;
  height: 3px;
  background-color: black;
}

.product-title h2::before {
  left:0;
}
.product-title h2::after {
  right:0;
}

/*--- 下線あり ---*/
.sup-title {
  text-align: center;
  margin-bottom: 30px;
}

.sup-title h2 {
  position: relative;
  display: inline-block;
}

.sup-title :after {
content: "";
display: block;
width: 60px; /* 線の長さ */
height: 3px; /* 線の太さ */
background-color: #00A3D2; /* 線の色 */
margin: 8px auto 0; /* 上の余白と中央寄せ */
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .product-title h2 {
    font-size: 1.5rem;
  }
}



/* --------------------------------
シリーズ一覧
-------------------------------- */
#series-btn {
  padding-top: 250px;
  margin-bottom: 100px;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  #series-btn {
    padding-top: 140px;
  }
}


/* ----------------------
シリーズ一覧 - ボタン
---------------------- */
#series-btn .jump-list {
  gap: 20px 2.6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
#series-btn .item {
  display: flex;
  width: 23%;
}
.jump :hover {
  color: #fff;
  background-color:#00A3D2;
  transition: ease 0.1s;
}

.qa-btn {
  justify-content: space-between;
  align-items: center;
  display: flex;

  font-size: 1.5rem;
  color: #00A3D2;

  border: 2px solid #00A3D2;
  border-radius: 2rem;
  width: 100%;
  padding: 5px 20px;
  transition: none;
}
#series-btn .qa-btn span:first-child::after{
  font-size: 1rem;
  content: "シリーズ";
  padding-left: 0.3rem;
}

/* トップへ戻る */
#top-link {
  margin-bottom: 160px;
}
#top-link .jump-list {
  gap: 20px 2.6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#top-link .to-top { 
  display: flex;
  width: 280px;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

#series-btn .item {
    width: 48%;
  }
#top-link .to-top {
    max-width: 100%;
  }
}



/* --------------------------------
動画で設定方法を見る
-------------------------------- */
.sup-text {
  text-align: center;
  margin-bottom: 40px;
}

#video {
  margin-bottom: 100px;
}

#video .youtube {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
#video .video {
  width: 49%;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 27.5%;
  overflow: hidden;
}
#video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* YouTubeチャンネルへ移動 */
.video-btn {
  text-align: center;
  margin-top: 30px;
}
.video-btn a {
  display: inline-block;    /* 幅を中身に合わせる */
  background-color: #EE2B2B;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;

  padding: 12px 35px;
  border-radius: 10px;
  text-decoration: none;

  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 3px 6px #00000025; /* ふんわり影 */
}
.video-btn a:hover {
  opacity: 1;
  background-color: #ce2525; /* 少し濃く */
  transform: translateY(-2px); /* ホバーでちょっと浮く */
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  #video .video {
    width: 100%;
    position: relative;
    margin-bottom: 10%;
    padding-bottom: 56%;
    overflow: hidden;
  }
  #video .shorts {
    width: 50%;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 90%;
    overflow: hidden;
  }
}



/* --------------------------------
お知らせ
-------------------------------- */
#news {
  margin-bottom: 100px;
}
.news-title {
  border-bottom: 2px solid #00A3D2;
}
.news-title h2 {
  display: inline-block;
  background-color: #00A3D2;
  color: #fff;
  padding: 8px 35px;

  border-top-left-radius: 6px; /* 背景上の角丸 */
  border-top-right-radius: 6px;
  font-size: 1.5rem;
  margin: 0;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px dotted #ccc;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.news-list li a:hover {
  opacity: 1;
  background-color: #eefbff; /* ホバー時の薄い水色 */
}

/* --- 日付 --- */
.news-date {
  color: #555;
  min-width: 90px;
}
/* --- ラベル --- */
.news-imp,
.news-info,
.news-new {
display: inline-block;
width: 70px;
text-align: center;
font-size: 0.8rem;
font-weight: bold;
padding: 3px 0;
border-radius: 12px;
flex-shrink: 0;
}
.news-imp {
  background-color: #FDE7E7;
  color: #C44;
}
.news-info {
  background-color: #E1F8FF;
  color: #00A3D2;
}
.news-new {
  background-color: #faffcc;
  color: #ff9914;
}

/* お知らせ　さらに詳しく見る */
.news-btn {
  text-align: center;
  margin-top: 30px;
}
.news-btn a {
  display: inline-block;    /* 幅を中身に合わせる */
  background-color: #00A3D2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;

  padding: 12px 35px;
  border-radius: 10px;
  text-decoration: none;

  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 3px 6px #00000025; /* ふんわり影 */
}
.news-btn a:hover {
  opacity: 1;
  background-color: #0090b8; /* 少し濃く */
  transform: translateY(-2px); /* ホバーでちょっと浮く */
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .news-list li a {
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
  }
}



/* --------------------------------
その他
 -------------------------------- */
.other {
  background-color: #F9F9F9;
  padding-top: 100px;
}

/* ボタン　※デザインは「ページ内リンク - ボタン」共通 */
.other .jump-item {
  display: flex;
  width: 49%;
}
/*--- sp ---*/
@media screen and (max-width: 799px) {

  .other .jump-item {
    width: 100%;
  }
}



/* --------------------------------
ダウンロードする際の注意
 -------------------------------- */
.dl-attention .top-title {
  color: #ff0000;
}
.dl-attention .text {
  text-align: center;
  margin-bottom: 20px;
}

.dl-attention .img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}
.dl-attention img {/* スクショ画像 */
  max-width: 25%;
}
.dl-attention .img .fa-solid {
  color: #00a3d2;
  border-radius: 5px;
  font-size: 2rem;
}
.dl-attention .end-text {
  margin-top: 15px;
  text-align: left;
  font-size: 1rem;
}
.dl-attention .end-text span {
  color: #DC3545;
  font-weight: bold;
}
.dl-attention .end-text p {
  font-size: 0.8rem;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .dl-attention .top-title h2 {
    font-size: 1.8rem;
  }
  .dl-attention .img {
    flex-direction: column;
    gap: 10px;
  }
  .dl-attention img {/* スクショ画像 */
    max-width: 80%;
  }
  .dl-attention .fa-solid {
    transform: rotate(90deg);
  }
}



/* --------------------------------
設置工事 / 補助金
 -------------------------------- */
.topic {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 100px;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .topic {
    gap: 10px;
    margin-bottom: 60px;
  }
}



/* --------------------------------
パンくず部分
 -------------------------------- */
#support-nav {
  background-color: #F1F1F1;
  height: 50px;
  line-height: 50px;
  position: fixed;
  top: 120px;
  right: 0;
  left: 0;
  z-index: 10;
}
#support-nav .list {
  display: flex;
}
#support-nav .list .item {
  margin-right: 10px;
}
#support-nav .list .item:last-child {
  margin-right: 0;
}
#support-nav .list .item.gray a {
  color: #707070;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  #support-nav {
    top: 60px;
    background-color: #F1F1F1;
    height: 40px;
    line-height: 40px;
  }
  #support-nav .list .item {
    margin-right: 8px;
    font-size: 0.85rem;
  }
}



/* --------------------------------
各商品リンク
-------------------------------- */
.sup-link {
  margin-bottom: 100px;
}

.sup-link .cam-list {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.sup-link .item {
  text-align: center;
  display: flex;
  width: 49%;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .sup-link .cam-list {
    text-align: center;
    column-count: none;
  }
  .sup-link .item {
    width: 100%;
  }
}



/* --------------------------------
ページ内リンク　位置調整とか
--------------------------------- */
html {scroll-behavior: smooth;}

.anchor {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}

/*--- sp ---*/
@media screen and (max-width: 799px) {

  .anchor {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
  }
}



