@charset "UTF-8";

/* --------------------------------
support-nav
 -------------------------------- */
#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;
}

/* --------------------------------
addition
-------------------------------- */
#addition {
  margin-top: 570px;
  padding: 70px 16px 100px;
  background-color: #fff;
}
#addition.top-margin {
  margin-top: 120px;
}
#addition .title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-decoration: underline yellow 3px;
}
#addition .text {
  text-align: center;
  margin-bottom: 40px;
}
#addition .link {
  text-align: center;
}
#addition .link .btn {
  background-color: #00a3d2;
  color: #fff;
  padding: 10px 50px 10px 30px;
  border-radius: 40px;
  font-size: 1.125rem;
  border: 1px solid #00a3d2;
  position: relative;
}
#addition .link .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 1px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 16px;
  right: 22px;
  transition: ease 0.3s;
}
#addition .link .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
#addition .link .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg);
}

/* --------------------------------
modaal
-------------------------------- */
#info {
  display: none;
}
.add-inf-title {
  margin-bottom: 45px;
  padding-left: 15px;
}
.add-info-list {
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
}
.add-info-list .add-info-item .add-info-btn {
  display: block;
  padding: 15px 40px 15px 15px;
  border-top: 1px solid #707070;
  transition: ease 0.3s;
  position: relative;
}
.add-info-list .add-info-item .add-info-btn::after {
  content: "";
  border-top: 13px solid transparent;
  border-right: 13px solid #00a3d2;
  position: absolute;
  top: 20px;
  right: 25px;
  transform: rotate(-45deg);
}
.add-info-list .add-info-item .add-info-btn:hover {
  background-color: #00a3d2;
  color: #fff;
}
.add-info-list .add-info-item .add-info-btn:hover::after {
  border-right: 13px solid #fff;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 700px;
  border-radius: 10px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background:#666;
}

/* --------------------------------
support_products
 -------------------------------- */
#support_products {
  margin-top: 0;
  margin-bottom: 100px;
}
#support_products.top-margin {
  margin-top: 250px;
}
#support_products .link {
  text-align: center;
  margin-bottom: 60px;
}
#support_products .link .btn {
  display: inline-block;
  font-size: 1.125rem;
  padding: 10px 40px 10px 20px;
  background-color: #fff;
  border-radius: 40px;
  color: #707070;
  border: 1px solid #707070;
  position: relative;
}
#support_products .link .btn:hover {
  color: #fff;
  background-color: #707070;
}
#support_products .link .btn::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 1px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  position: absolute;
  top: 18px;
  right: 18px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#support_products .link .btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(405deg);
}
#support_products .series {
  font-size: 4.375rem;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
#support_products .series:first-of-type {
  margin-top: 0;
}
#support_products .series span {
  font-size: 2.5rem;
  margin-left: 5px;
}
#support_products .other-products {
    font-size: 2.5rem;
}
#support_products .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#support_products .list .item {
  width: 22%;
  margin-bottom: 30px;
  border: 1px solid #DAE8F8;
  border-radius: 10px;
  margin-right: 30px;
  padding: 10px 10px 0 10px;
}
#support_products .list .item.margin-0 {
  margin-right: 0;
}
#support_products .list .item:nth-child(4n) {
  margin-right: 0;
}
#support_products .list .item .item-img {
  text-align: center;
}
#support_products .list .item .item-img img {
  height: 126px;
  object-fit: contain;
  object-position: center;
}
#support_products .list .item .item-title {
  font-size: 1.125rem;
  margin: 10px 0 4px;
}
#support_products .list .item .item-desc {
  font-size: 0.875rem;
}
#support_products .list .item .btn {
  margin: 20px 0;
  text-align: center;
  line-height: 40px;
}
#support_products .list .item .btn .d-btn {
  font-size: 1rem;
  border: 1px solid #00a3d2;
  border-radius: 40px;
  padding: 8px 30px 8px 18px;
  transition: 0.5s;
  background-color: #fff;
  color: #00a3d2;
  position: relative;
}
#support_products .list .item .btn .d-btn:after {
  content: "";
  border-top: 10px solid transparent;
  border-right: 10px solid #00a3d2;
  position: absolute;
  transform: rotate(-45deg);
  top: 14px;
  right: 16px;
  transition: ease 0.3s;
}
#support_products .list .item .btn .d-btn:hover {
  color: #fff;
  background-color: #00a3d2;
}
#support_products .list .item .btn .d-btn:hover::after {
  right: 12px;
  border-right: 10px solid #fff;
}
#support_products .list .item .btn .d-btn-2 {
  font-size: 1rem;
  border: 1px solid #00a3d2;
  border-radius: 40px;
  padding: 8px 30px 8px 18px;
  transition: 0.5s;
  background-color: #fff;
  color: #00a3d2;
  position: relative;
}
#support_products .list .item .btn .d-btn-2 .fa-solid {
  position: absolute;
  top: 12px;
  right: 11px;
  font-size: 0.9rem;
  transition: ease 0.3s;
}
#support_products .list .item .btn .d-btn-2:hover {
  color: #fff;
  background-color: #00a3d2;
}
#support_products .list .item .sp-br {
  display: none;
}
#support_products .list .item .btn .d-btn-2:hover .fa-solid {
  top: 15px;
  color: #fff;
}
#support_products .other {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 60px;
  color: #00a3d2;
  position: relative;
}
#support_products .other::before, 
#support_products .other::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid #00a3d2;
  position: absolute;
  top: 54%;
}
#support_products .other::before {
  left: 25%;
}
#support_products .other::after {
  right: 25%;
}
#support_products .other span {
  font-size: 1.85rem;
}
#support_products .shop {
  text-align: center;
}
#support_products .shop .btn {
  display: inline-block;
  font-size: 1.125rem;
  color: #00a3d2;
  border: 1px solid #00a3d2;
  border-radius: 40px;
  padding: 8px 40px 8px 20px;
  position: relative;
}
#support_products .shop .btn::after {
  content: "";
  border-top: 10px solid transparent;
  border-right: 10px solid #00a3d2;
  position: absolute;
  transform: rotate(-45deg);
  top: 16px;
  right: 20px;
  transition: ease 0.3s;
}
#support_products .shop .btn:hover {
  color: #fff;
  border: 1px solid #00a3d2;
  background-color: #00a3d2;
}
#support_products .shop .btn:hover::after {
  border-right: 10px solid #fff;
  right: 12px;
}
#support_products .footer-link {
  margin-top: 80px;
}
#support_products .other-products .text {
  font-size: 1.125rem;
  font-weight: normal;
  margin-top: 20px;
  padding: 0 50px;
}
#support_products .list .item .fa-regular {
  font-size: 1.1rem;
}

/* --------------------------------
end-products-list
 -------------------------------- */
#end-products-list {
  margin-top: 0;
  margin-bottom: 100px;
}
#end-products-list.top-margin {
  margin-top: 250px;
}
#end-products-list .link {
  text-align: center;
  margin-bottom: 60px;
}
#end-products-list .link .btn {
  display: inline-block;
  font-size: 1.125rem;
  padding: 10px 40px 10px 20px;
  background-color: #fff;
  border-radius: 40px;
  color: #707070;
  border: 1px solid #707070;
  position: relative;
}
#end-products-list .link .btn:hover {
  color: #fff;
  background-color: #707070;
}
#end-products-list .link .btn::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 1px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  position: absolute;
  top: 18px;
  right: 18px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#end-products-list .link .btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(405deg);
}
#end-products-list .sec-title .service {
  text-align: center;
  margin: 30px 0;
  line-height: 30px;
  font-size: 1.125rem;
  font-weight: normal;
}
#end-products-list .day {
  font-size: 0.875rem;
  font-weight: normal;
  text-align: right;
  text-decoration: underline;
  margin-top: 20px;
}
#end-products-list .caution {
  text-align: center;
}
#end-products-list .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  border-top: 1px solid #d3d3d3;
}
#end-products-list .list .bold {
  font-weight: bold;
}
#end-products-list .list dt {
  width: 18%;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #d3d3d3;
}
#end-products-list .list dt:nth-child(odd) {
  background-color: #f9f9f9;
}
#end-products-list .list dd {
  padding: 10px;
  border-bottom: 1px solid #d3d3d3;
}
#end-products-list .list dd.m-number {
  width: 18%;
}
#end-products-list .list dd.m-number:nth-child(even) {
  background-color: #f9f9f9;
}
#end-products-list .list dd.p-name {
  width: 64%;
}
#end-products-list .list dd.p-name:nth-child(odd) {
  background-color: #f9f9f9;
}
#end-products-list .sp-br {
  display: none;
}

/* --------------------------------
各製品のサポートページ共通
-------------------------------- */
.product-sec-title {
  text-align: center;
  margin-bottom: 70px;
}
.product-sec-title .en {
  font-weight: normal;
  display: block;
  color: #00a3d2;
  margin-bottom: 15px;
}
.product-sec-title .ja {
  display: block;
  font-size: 2rem;
}

/* --------------------------------
product-top
-------------------------------- */
#product-top {
  margin-top: 250px;
  display: flex;
  justify-content: center;
}
#product-top .img {
  width: 45%;
  text-align: center;
  margin-right: 50px;
}
#product-top .product-desc {
  width: 45%;
  font-size: 1.125rem;
}
#product-top .product-desc .product-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
#product-top .product-desc .m-number {
  margin-bottom: 30px;
  margin-top: 10px;
  text-decoration: underline yellow 3px;
}
#product-top .c-red {
  font-size: 1rem;
  color: #DC3545;
  margin-top: 10px;
}
#product-top .btn a {
  display: inline-block;
  color: #00a3d2;
  border: solid 1px #00a3d2;
  border-radius: 30px;
  padding: 10px;
  margin-top: 10px;
  opacity: 1;
}
#product-top .btn a:hover {
  color: #fff;
  background-color: #00a3d2;
  border-radius: 30px;
  padding: 10px;
  transition: ease 0.3s;
}

/* --------------------------------
#manual-download
-------------------------------- */
#manual-download {
  margin-top: 160px;
  padding-bottom: 40px;
}
#manual-download .manual-list {
  display: flex;
  justify-content: center;
}
#manual-download .manual-list .manual-item {
  text-align: center;
  margin-right: 40px;
  font-size: 1rem;
  width: 28%;
}
#manual-download .manual-list .manual-item .btn {
  display: block;
  border: 1px solid #00a3d2;
  border-radius: 15px;
  padding: 23px 15px;
  transition: ease 0.3s;
  position: relative;
}
#manual-download .manual-list .manual-item .btn .fa-regular.fa-file-pdf {
  position: absolute;
  right: 10px;
  bottom: 33px;
  transition: ease 0.3s;
  font-size: 1.5rem;
}
#manual-download .manual-list .manual-item .btn .fa-solid.fa-angles-down {
  position: absolute;
  right: 12px;
  bottom: 15px;
  transition: ease 0.3s;
}
#manual-download .manual-list .manual-item .btn:hover .fa-regular.fa-file-pdf {
  bottom: 26px;
  color: #fff;
}
#manual-download .manual-list .manual-item .btn:hover .fa-solid.fa-angles-down {
  bottom: 10px;
  color: #fff;
}
#manual-download .manual-list .manual-item .btn:hover {
  background-color: #00a3d2;
  color: #fff;
}
#manual-download .manual-list .manual-item .btn:hover .icon i {
  color: #fff;
}
#manual-download .manual-list .manual-item .btn:hover p {
  color: #fff;
}
#manual-download .manual-list .manual-item:last-child {
  margin-right: 0;
}
#manual-download .manual-list .manual-item .icon i {
  font-size: 5rem;
  margin-bottom: 25px;
  color: #00a3d2;
}
#manual-download .manual-list .manual-item .text .fa-regular {
  font-size: 1.4rem;
  margin-left: 3px;
}
#manual-download .manual-list .manual-item span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #DC3545;
  padding: 0 10px;
}
#manual-download .faq-btn {
  text-align: center;
  margin-top: 50px;
}
#manual-download .faq-btn .btn {
  background-color: #00a3d2;
  color: #fff;
  padding: 12px 40px 12px 20px;
  border-radius: 40px;
  border: 1px solid #00a3d2;
  transition: ease 0.3s;
  position: relative;
  padding-bottom: 15px;
}
#manual-download .faq-btn .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 1px;
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  right: 17px;
  transition: ease 0.3s;
}
#manual-download .faq-btn .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
#manual-download .faq-btn .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg);
}
/* --------------------------------
soft-download
-------------------------------- */
#soft-download {
  margin-top: 100px;
}
#soft-download .soft-list {
  display: flex;
}
#soft-download .soft-list .app {
  width: 48%;
  margin-right: 10px;
}
#soft-download .soft-list .app-img {
  width: 100px;
  margin: 0 auto;
}
#soft-download .soft-list .app .app-text {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.125rem;
}
#soft-download .soft-list .app .app-download {
  display: flex;
  justify-content: space-around;
}
#soft-download .soft-list .app .app-download .ios {
  width: 47%;
}
#soft-download .soft-list .app .app-download .ios .ios-qr {
  width: 150px;
  margin: 0 auto;
}
#soft-download .soft-list .app .app-download .android {
  width: 47%;
}
#soft-download .soft-list .app .app-download .android .android-qr {
  width: 150px;
  margin: 15px auto 0;
}
#soft-download .soft-list .app .app-download .d-link {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
#soft-download .soft-list .app .app-download .d-link .btn {
  display: inline-block;
  padding: 7px 30px 7px 15px;
  background-color: #00a3d2;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  position: relative;
  border: 1px solid #00a3d2;
}
#soft-download .soft-list .app .app-download .d-link .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 2px;
  position: absolute;
  top: 15px;
  right: 14px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#soft-download .soft-list .app .app-download .d-link .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
#soft-download .soft-list .app .app-download .d-link .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg);
}
#soft-download .soft-list .pc {
  width: 48%;
}
#soft-download .soft-list .pc .fa-solid.fa-desktop{
  text-align: center;
  font-size: 5rem;
  display: block;
  color: #00a3d2;
  margin-bottom: 23px;
}
#soft-download .soft-list .pc .title {
  font-size: 1.2rem;
  margin: 0 0 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}
#soft-download .soft-list .pc .link {
  display: flex;
  justify-content: center;
}
#soft-download .soft-list .pc .link .btn {
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #00a3d2;
  padding: 13px 0 20px;
  margin-right: 15px;
  width: 45%;
  position: relative;
  transition: ease 0.3s;
}
#soft-download .soft-list .pc .link .btn:last-child {
  margin-right: 0;
}
#soft-download .soft-list .pc .link .btn .fa-regular,
#soft-download .soft-list .pc .link .btn .fa-solid {
  font-size: 4.5rem;
  margin-bottom: 5px;
  transition: ease 0.3s;
}
#soft-download .soft-list .pc .link .btn .fa-regular.fa-circle-play {
  height: 80px;
}
#soft-download .soft-list .pc .link .btn .fa-regular.fa-file-zipper {
  font-size: 1.5rem;
  position: absolute;
  right: 8px;
  bottom: 16px;
  color: #212529;
}
#soft-download .soft-list .pc .link .btn .fa-solid.fa-angles-down {
  font-size: 1rem;
  position: absolute;
  right: 10px;
  bottom: -1px;
  color: #212529;
}
#soft-download .soft-list .pc .link .btn:hover {
  background-color: #00a3d2;
  color: #fff;
}
#soft-download .soft-list .pc .link .btn:hover .fa-regular,
#soft-download .soft-list .pc .link .btn:hover .fa-solid {
  color: #fff;
}
#soft-download .soft-list .pc .link .btn:hover .fa-regular.fa-file-zipper {
  bottom: 9px;
}
#soft-download .soft-list .pc .link .btn:hover .fa-solid.fa-angles-down {
  bottom: -6px;
}
#soft-download .soft-list .pc .link .btn .img {
  margin: 0 auto;
  width: 100px;
  object-fit: contain;
}
#soft-download .soft-list .pc .link .btn .img img {
  height: 80px;
  object-fit: contain;
  object-position: center;
}
#soft-download .soft-list .pc .pc-text {
  display: block;
  margin-top: 10px;
  padding: 0 20px;
  font-size: 0.9rem;
}
#soft-download .soft-list.none-flex {
  flex-direction: column;
  align-items: center;
}
#soft-download .soft-list.none-flex .app {
  width: 50%;
  margin-right: 0;
}
#soft-download .pcsoft-list {
  display: flex;
}
#soft-download .pcsoft-list .pc {
  width: 100%;
}
#soft-download .pcsoft-list .pc .fa-solid.fa-desktop{
  text-align: center;
  font-size: 5rem;
  display: block;
  color: #00a3d2;
  margin-bottom: 23px;
}
#soft-download .pcsoft-list .pc .title {
  font-size: 1.2rem;
  margin: 0 0 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}
#soft-download .pcsoft-list .pc .link {
  display: flex;
  justify-content: center;
}
#soft-download .pcsoft-list .pc .link .btn {
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #00a3d2;
  padding: 13px 0 20px;
  margin-right: 15px;
  width: 45%;
  position: relative;
  transition: ease 0.3s;
}
#soft-download .pcsoft-list .pc .link .btn:last-child {
  margin-right: 0;
}
#soft-download .pcsoft-list .pc .link .btn .fa-regular,
#soft-download .pcsoft-list .pc .link .btn .fa-solid {
  font-size: 4.5rem;
  margin-bottom: 5px;
  transition: ease 0.3s;
}
#soft-download .pcsoft-list .pc .link .btn .fa-regular.fa-circle-play {
  height: 80px;
}
#soft-download .pcsoft-list .pc .link .btn .fa-regular.fa-file-zipper {
  font-size: 1.5rem;
  position: absolute;
  right: 8px;
  bottom: 16px;
  color: #212529;
}
#soft-download .pcsoft-list .pc .link .btn .fa-solid.fa-angles-down {
  font-size: 1rem;
  position: absolute;
  right: 10px;
  bottom: -1px;
  color: #212529;
}
#soft-download .pcsoft-list .pc .link .btn:hover {
  background-color: #00a3d2;
  color: #fff;
}
#soft-download .pcsoft-list .pc .link .btn:hover .fa-regular,
#soft-download .pcsoft-list .pc .link .btn:hover .fa-solid {
  color: #fff;
}
#soft-download .pcsoft-list .pc .link .btn:hover .fa-regular.fa-file-zipper {
  bottom: 9px;
}
#soft-download .pcsoft-list .pc .link .btn:hover .fa-solid.fa-angles-down {
  bottom: -6px;
}
#soft-download .pcsoft-list .pc .link .btn .img {
  margin: 0 auto;
  width: 100px;
  object-fit: contain;
}
#soft-download .pcsoft-list .pc .link .btn .img img {
  height: 80px;
  object-fit: contain;
  object-position: center;
}
#soft-download .pcsoft-list .pc .pc-text {
  display: block;
  margin-top: 10px;
  padding: 0 20px;
  font-size: 0.9rem;
}
#soft-download .pcsoft-list.none-flex {
  flex-direction: column;
  align-items: center;
}
#soft-download .pcsoft-list.none-flex .app {
  width: 50%;
  margin-right: 0;
}
#soft-download .nx-app-img {
  width: 100px;
  margin: 0 auto 20px;
}
#soft-download .nx-app-text {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 30px;
  font-weight: bold;
}
#soft-download .nx-app-download {
  margin-bottom: 70px;
}
#soft-download .nx-app-download .img-google-play {
  width: 228px;
  margin: 0 auto;
}
#soft-download .nx-app-download .d-link {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
#soft-download .nx-app-download .d-link .btn {
  display: inline-block;
  padding: 7px 30px 7px 15px;
  background-color: #00a3d2;
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  position: relative;
  border: 1px solid #00a3d2;
}
#soft-download .nx-app-download .d-link .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
#soft-download .nx-app-download .d-link .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 2px;
  position: absolute;
  top: 14px;
  right: 14px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#soft-download .nx-app-download .d-link .btn:hover::after {
  transform: rotate(405deg);  
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
}
#soft-download .nx-pc {
  text-align: center;
}
#soft-download .nx-pc .fa-solid.fa-desktop {
  font-size: 5rem;
  display: block;
  color: #00a3d2;
  margin-bottom: 23px;
}
#soft-download .nx-pc .title {
  font-size: 1.125rem;
  margin-bottom: 30px;
  font-weight: bold;
}
#soft-download .nx-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#soft-download .nx-link .btn {
  /* width: 23%; */
  width: 230px;
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #00a3d2;
  padding: 25px 0 40px;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
#soft-download .nx-link .btn:hover {
  background-color: #00a3d2;
  color: #fff;
}
#soft-download .nx-link .btn .fa-regular.fa-file-zipper {
  font-size: 1.5rem;
  position: absolute;
  right: 8px;
  bottom: 22px;
  color: #212529;
  transition: ease 0.3s;
}
#soft-download .nx-link .btn:hover .fa-regular.fa-file-zipper {
  color: #fff;
  bottom: 16px;
}
#soft-download .nx-link .btn .fa-solid.fa-angles-down {
  font-size: 1rem;
  position: absolute;
  right: 10px;
  bottom: 5px;
  color: #212529;
  transition: ease 0.3s;
}
#soft-download .nx-link .btn:hover .fa-solid.fa-angles-down {
  color: #fff;
  bottom: 0;
}
#soft-download .nx-link .img img {
  height: 80px;
}
#soft-download .nx-link .fa-regular.fa-download,
#soft-download .nx-link .fas.fa-regular.fa-sd-card {
  font-size: 4.5rem;
  margin-bottom: 10px;
}

/* --------------------------------
application
-------------------------------- */
#application {
  margin-top: 100px;
}
#application .app-img {
  width: 70%;
  margin: 0 auto;
}

/* --------------------------------
video
-------------------------------- */
#video {
  margin-top: 100px;
}
#video .youtube-video {
  text-align: center;
  width: 100%;
  aspect-ratio: 16 / 9;
}
#video .youtube-video iframe {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

/* --------------------------------
specification
-------------------------------- */
#specification {
  margin-top: 100px;
  margin-bottom: 160px;
}
#specification .table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 70%;
  margin: 0 auto 30px;
}
#specification .table:last-child {
  margin-bottom: 0;
}
#specification .table td {
  padding: 4px 3px 4px 15px;
  border: 1px solid #707070;
}
#specification .table td:nth-child(odd) {
  background-color: #DAE8F8;
}

/* --------------------------------
tb
-------------------------------- */
@media screen and (max-width: 999px) {
  /* --------------------------------
  support_products
  -------------------------------- */
  #support_products .other::before {
    left: 20%;
  }
  #support_products .other::after {
    right: 20%;
  }
}

/* --------------------------------
tb
-------------------------------- */
@media screen and (max-width: 899px) {
  /* --------------------------------
  support_products
  -------------------------------- */
  #support_products .list .item .btn .d-btn.small {
    font-size: 0.85rem;
  }
  #support_products .list .item .btn .d-btn.small:after {
    top: 13px;
  }
}

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

  /* --------------------------------
  support-nav
  -------------------------------- */
  #support-nav {
    top: 60px;
  }

  /* --------------------------------
  #manual-download
  -------------------------------- */
  #manual-download .manual-list .manual-item .btn .text {
    font-size: 0.9rem;
  }

  /* --------------------------------
  soft-download
  -------------------------------- */
  #soft-download .soft-list {
    flex-direction: column;
  }
  #soft-download .soft-list .app {
    width: 80%;
    margin: 0 auto 30px;
  }
  #soft-download .soft-list .pc {
    width: 80%;
    margin: 0 auto;
  }
  #soft-download .soft-list.none-flex .app {
    width: 80%;
    margin: 0 auto;
  }




  /* --------------------------------
  support_products
  -------------------------------- */
  #support_products .other::before {
    left: 15%;
  }
  #support_products .other::after {
    right: 15%;
  }
  #support_products .list .item .btn .d-btn {
    font-size: 0.9rem;
  }

  #support_products .list .item .btn .d-btn.small {
    font-size: 0.65rem;
  }
  #support_products .list .item .btn .d-btn.small:after {
    top: 10px;
  }
  /* --------------------------------
  end-products-list
  -------------------------------- */
  #end-products-list.top-margin {
    margin-top: 170px;
  }

  /* --------------------------------
  product-top
  -------------------------------- */
  #product-top {
    margin-top: 140px;
  }
}

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

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

  /* --------------------------------
  addition
  -------------------------------- */
  #addition {
    padding: 70px 16px 75px;
  }
  #addition.top-margin {
    margin-top: 70px;
  }
  #addition .link .btn {
    font-size: 1rem;
    padding: 10px 40px 10px 20px;
  }

  /* --------------------------------
  modaal
  -------------------------------- */
  .add-inf-title {
    margin-bottom: 25px;
    padding-left: 0;
    font-size: 1.2rem;
    text-align: center;
  }
  .add-info-list .add-info-item .add-info-btn {
    padding: 10px 30px 10px 10px;
    font-size: 0.9rem;
  }
  .add-info-list .add-info-item .add-info-btn::after {
    right: 10px;
  }

  /* --------------------------------
  support_products
  -------------------------------- */
  #support_products {
    margin-top: 0;
    margin-bottom: 40px;
  }
  #support_products.top-margin {
    margin-top: 150px;
  }
  #support_products .link .btn {
    font-size: 0.95rem;
  }
  #support_products .link .btn::after {
    content: "";
    width: 9px;
    height: 9px;
  }
  #support_products .series {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 2.7rem;
  }
  #support_products .series span {
    font-size: 2rem;
  }
  #support_products .other::before {
    display: none;
  }
  #support_products .other::after {
    display: none;
  }
  #support_products .other-products {
    font-size: 1.5rem;
    line-height: 40px;
  }
  #support_products .list {
    justify-content: space-around;
  }
  #support_products .list .item {
    width: 48%;
    margin-right: 3px;
    margin-bottom: 3px;
    padding: 5px 5px 0 5px;
  }
  #support_products .list .item .sp-br {
  display: block;
}
  #support_products .list .item:nth-child(2n) {
    margin-right: 0;
  }
  #support_products .list .item .item-title {
    font-size: 1rem;
  }
  #support_products .list .item .btn {
    margin: 10px 0;
  }
  #support_products .list .item .btn .d-btn {
    font-size: 0.875rem;
    padding: 6px 20px 6px 10px;
  }
  #support_products .list .item .btn .d-btn.small {
    font-size: 0.65rem;
    padding: 8px 23px 8px 13px;
  }
  #support_products .list .item .btn .d-btn:after {
    border-top: 8px solid transparent;
    border-right: 8px solid #00a3d2;
    top: 12px;
    right: 10px;
  }
  #support_products .list .item .btn .d-btn.small:after {
    top: 11px;
  }
  #support_products .list .item .btn .d-btn:hover::after {
    right: 10px;
    border-right: 8px solid #fff;
  }
  #support_products .list .item .btn .d-btn-2 {
    font-size: 0.875rem;
    padding: 6px 25px 6px 10px;
  }
  #support_products .list .item .btn .d-btn-2 .fa-solid {
    top: 10px;
    right: 9px;
    font-size: 0.7rem;
  }
  #support_products .shop .btn {
    font-size: 0.9rem;
    padding: 8px 30px 8px 16px;
  }
  #support_products .shop .btn::after {
    top: 15px;
    right: 17px;
    transition: ease 0.3s;
  }
  #support_products .shop .btn:hover::after {
    right: 17px;
  }
  #support_products .other-products .text {
    font-size: 0.9rem;
    padding: 0;
    line-height: 25px;
  }

  /* --------------------------------
  end-products-list
  -------------------------------- */
  #end-products-list .link .btn {
    font-size: 1rem;
    padding: 8px 33px 8px 18px;
  }
  #end-products-list .link .btn::after {
    content: "";
    width: 9px;
    height: 9px;
    top: 17px;
  }
  #end-products-list .sec-title .service {
    font-size: 0.9rem;
    line-height: 25px;
  }
  #end-products-list .caution {
    font-size: 0.9rem;
  }
  #end-products-list .list {
    font-size: 0.9rem;
  }
  #end-products-list .list dt {
    padding: 8px 0 8px 5px;
    width: 30%;
  }
  #end-products-list .list dd {
    padding: 8px 0;
  }
  #end-products-list .list dd.m-number {
    width: 30%;
  }
  #end-products-list .list dd.p-name {
    width: 40%;
  }
  #end-products-list .sp-br {
  display: block;
  }

  /* --------------------------------
  各製品のサポートページ共通
  -------------------------------- */
  .product-sec-title {
    text-align: center;
    margin-bottom: 50px;
  }
  .product-sec-title .en {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .product-sec-title .ja {
    font-size: 1.5rem;
  }

  /* --------------------------------
  product-top
  -------------------------------- */
  #product-top {
    flex-direction: column;
  }
  #product-top .img {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  #product-top .product-desc {
    width: 100%;
    font-size: 1rem;
    margin-top: 20px;
  }

  /* --------------------------------
  #manual-download
  -------------------------------- */
  #manual-download {
    margin-top: 80px;
    padding-bottom: 40px;
  }
  #manual-download .manual-list {
    flex-direction: column;
    align-items: center;
  }
  #manual-download .manual-list .manual-item {
    width: 80%;
    margin: 0 0 10px 0;
  }

  /* --------------------------------
  soft-download
  -------------------------------- */
  #soft-download {
    margin-top: 80px;
  }
  #soft-download .soft-list .app {
    width: 100%;
    margin-bottom: 60px;
  }
  #soft-download .soft-list .app .app-download {
    flex-direction: column;
    align-items: center;
  }
  #soft-download .soft-list .app .app-download .ios {
    width: 70%;
    margin-bottom: 10px;
  }
  #soft-download .soft-list .app .app-download .android {
    width: 70%;
  }
  #soft-download .soft-list .app .app-download .ios-qr,
  #soft-download .soft-list .app .app-download .android-qr {
    display: none;
  }
  #soft-download .soft-list .pc {
    width: 100%;
  }
  #soft-download .soft-list .pc .link .btn{
    width: 80%;
  }
  #soft-download .soft-list .pc .link {
    flex-direction: column;
    align-items: center;
  }
  #soft-download .soft-list .pc .link .btn {
    margin: 0 0 10px 0;
  }
  #soft-download .soft-list .pc .link .btn:last-child {
    margin-bottom: 0;
  }

  #soft-download .nx-link {
    flex-direction: column;
    align-items: center;
  }
  #soft-download .nx-link .btn {
    width: 85%;
    margin-right: 0;
  }



  /* --------------------------------
  application
  -------------------------------- */
  #application {
    margin-top: 80px;
  }
  #application .app-img {
    width: 100%;
  }

  /* --------------------------------
  video
  -------------------------------- */
  #video {
    margin-top: 80px;
  }

  /* --------------------------------
  specification
  -------------------------------- */
  #specification {
    margin-top: 80px;
    margin-bottom: 100px;
  }
  #specification .table {
    width: 100%;
    font-size: 0.9rem;
  }
}

  /* --------------------------------
  sp
  -------------------------------- */
  @media screen and (max-width: 399px) {
  /*--------------------------------
  SP-none
  ----------------------------------*/
  .sp-none{
    display: none;
  }
  
  /* --------------------------------
  support-nav
  -------------------------------- */
  #support-nav .list .item {
    margin-right: 4px;
    font-size: 0.7rem;
  }

  /* --------------------------------
  #manual-download
  -------------------------------- */
  #manual-download .manual-list .manual-item .btn .text {
    font-size: 0.9rem;
  }
  #manual-download .manual-list .manual-item {
    width: 100%;
  }
  #soft-download .soft-list .app .app-download .ios,
  #soft-download .soft-list .app .app-download .android {
    width: 100%;
  }
  #soft-download .soft-list .pc .link .btn{
    width: 100%;
  }

  /* --------------------------------
  specification
  -------------------------------- */

  #specification .table td {
    padding: 2px 3px 2px 3px;
  }
}

/* --------------------------------
sp
-------------------------------- */
@media screen and (max-width: 319px) {
  /* --------------------------------
  support-nav
  -------------------------------- */
  #support-nav .list .item {
    font-size: 0.5rem;
  }

  /* --------------------------------
  end-products-list
  -------------------------------- */
  #end-products-list .list {
    font-size: 0.8rem;
  }
  /* --------------------------------
  specification
  -------------------------------- */
  #specification .table {
    font-size: 0.7rem;
  }
}


 /* --------------------------------
  アコーディオン
  -------------------------------- */
details {
  border: 1px solid #ccc;
}
details:not(:last-child) {
  margin-bottom: 2px;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
  list-style: none;
  cursor: pointer;
  padding: 10px;
  background: #e4e4e4;
  color: #242323;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}
/**
 * Font Awesomeのプラスアイコン使用
**/
details summary::before {
  font-family: FontAwesome;
  content: '\f067';
  margin-right: 10px;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::before {
  content: '\f068';
}

details p {
  margin: 0;
  padding: 10px;
}
 /* --------------------------------
  アコーディオン　ここまで
  -------------------------------- */

 /* --------------------------------
  タブ
  -------------------------------- */
  .cp_tab *, .cp_tab *:before, .cp_tab *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cp_tab {
    margin: 1em auto;
  }
  .cp_tab > input[type='radio'] {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
    -webkit-appearance: none;
            appearance: none;
    display: none;
  }
  .cp_tab .cp_tabpanel {
    display: none;
  }
  .cp_tab > input:first-child:checked ~ .cp_tabpanels > .cp_tabpanel:first-child,
  .cp_tab > input:nth-child(3):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(2),
  .cp_tab > input:nth-child(5):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(3),
  .cp_tab > input:nth-child(7):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(4),
  .cp_tab > input:nth-child(9):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(5),
  .cp_tab > input:nth-child(11):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(6) {
    display: block;
  }
  .cp_tab > label {
    position: relative;
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: 0;
  }
  .cp_tab > label:hover,
  .cp_tab > input:focus + label {
    color: #0066cc;
  }
  .cp_tab > input:checked + label {
    margin-bottom: -1px;
    border-color: #cccccc;
    border-bottom: 1px solid #ffffff;
    border-radius: 6px 6px 0 0;
  }
  .cp_tab .cp_tabpanel {
    padding: 0.5em 1em;
    border-top: 1px solid #cccccc;
  }
  @media (max-width: 100px) {
    .cp_tab {
      width: 100%;
      font-size: 0.5em;
    }
    .cp_tab label {
      padding: 0.5em;
    }
  }
   /* --------------------------------
  タブ　ここまで
  -------------------------------- */