﻿@charset "utf-8";
/* ************************************************** 
Name: add_manufacture.css
Description: Main CSS
Create: 2025.1.27
***************************************************** */
/* ================================================== 
BreakPoint
-994
-767
-579
-399
===================================================== */
/* 汎用
/////////////////////////////////////////////////////////////////////////////////////*/
.border-box {
  border: 1px solid;
}
.border-gray {
  border-color: #bbb;
  padding: 16px;
}
.flexblock {
  display: flex;
}
@media screen and (max-width: 579px) {
  .flexblockClear {
    display: block;
  }
}
.flexwrap {
  flex-wrap: wrap;
}
.flexJustify-Center {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 579px) {
  .flexJustify-Center {
    gap: 10px;
  }
  #BlockCta-Top.flexJustify-Center {
    display: block;
  }
  .BlockCta-Top_Catalog {
    margin-top: 25px;
  }
}
[class$="__heading"] {
  font-weight: bold;
  margin-bottom: 24px;
}
.imageLink a:hover {
  opacity: 0.7;
}

/* ダウンロードブロック
-------------------------------------------------------------------------------------*/
.hst-catalog-download.flexblock {
  gap: 16px;
  margin-bottom: 30px;
}
.hst-catalog-download__heading {
  font-size: 1.25rem;
}
@media screen and (max-width: 579px) {
  .hst-catalog-download__heading {
    font-size: 90%;
  }
}
.hs-catalog-download__pdf {
  font-size: 0.75rem;
}
.hst-catalog-download .flexblock {
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
}
.BlockCta-fix a.productsForm {
  margin: 0 auto;
}
@media screen and (max-width: 579px) {
  .BlockCta-Inquiry, .BlockCta-Download {
    padding: 0 10px;
    font-size: 80%;
  }
}
.BlockCta-fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 1rem 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  transition: .4s;
  transform: translateY(100%);
  z-index: 98;
}
.BlockCta-fix_Text {
  margin-bottom: 10px;
  font-size: 90%;
  color: #fff;
  text-align: center;
}
.js-fixed {
  opacity: 1;
  transform: translateY(0);
}
/*　fixボタン　*/
#BlockCta-Top a.productsForm, .BlockCta-fix a.productsForm {
  margin: 0 auto;
}

/* お問い合わせ
-------------------------------------------------------------------------------------*/
.SolutionInquiry {
  background-color: #353434;
}
.SolutionInquiry, .ProductsInquiry, .catalogDownload {
  color: #fff;
  padding: 30px;
  text-align: center;
  & h2 {
    border: none;
  }
}
@media screen and (max-width: 994px) {
  .SolutionInquiry {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 579px) {
  .SolutionInquiry {
    padding: 10%;
  }
}
.AreaSolutionInquiry {
  background-color: #605f5f;
}
a.narrow {
  width: auto;
}
a.catalogBtn,
a.downloadBtn {
  box-sizing: border-box;
  background-color: #ffa816;
  color: #000;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
  border-radius: 50px;
}
a.catalogBtn{
  font-size: 1.0rem;
  padding: 16px 32px;
}
a.downloadBtn {
  font-size: 90%;
  padding: 12px 16px;
  width: 210px;
}
a:hover.catalogBtn,
a:hover.downloadBtn {
  background-color: #eb9c19;
}
a.catalogBtn span::before,
a.downloadBtn span::before {
  background: url(../../image/jp/r1/icon/icon_doc_black_hd.png) no-repeat 50% 50%;
  background-size: 97%;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  height: 25px;
  padding: 0;
  margin-right: 5px;
  width: 25px;
  vertical-align: middle;
}
@media screen and (max-width: 579px) {
  a.catalogBtn {
    font-size: 100%;
    padding: 16px 16px;
  }
  a.downloadBtn {
    font-size: 90%;
    width: 170px;
    padding: 10px;
  }
  a.catalogBtn span::before,
  a.productsForm span::before {
    display: none;
  }
}
.catalogDownload a.catalogBtn {
  font-size: 1.0rem;
  padding: 16px 32px;
  border-radius: 50px;
  margin: 30px auto;
}

/* Q％A
-------------------------------------------------------------------------------------*/
.Accordion {
  margin-bottom: 60px;
  font-size: 90%;
}

.Acc-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  border: solid #ccc 1px;
}
.Acc-header::before, .Acc-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}
.Acc-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.Acc-header.active::after {
  transform: rotate(0deg);
}

.Acc-content {
  display: none;
  background-color: #FFF;
  padding: 12px 20px 10px;
  border: solid 1px #ccc;
  border-top: none;
  
	ul li:first-child {
	  margin-bottom: 10px;
	}
}

.Acc-content ul, .Acc-header span, .Acc-content span {
  padding-left: 25px;
  position: relative;
}
.Acc-header span::before {
  position: absolute;
  content: "Q";
  top: 2px;
  left: 0;
  color: #575757;
  font-size: 1.2rem;
  line-height: 90%;
  font-weight: bold;
}
.Acc-content ul::before, .Acc-content span::before {
  position: absolute;
  content: "A";
  top: 3px;
  left: 0;
  color: #575757;
  font-size: 1.2rem;
  line-height: 90%;
  font-weight: bold;
}

/* hover */
.active, .Acc-header:hover {
  background-color: #F2F2F2;
}
.active {
  border-bottom: none;
}



/* security top
/////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 994px) {
  .JS .securityLinks {
    min-width: 290px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .JS body {
    background-color: #e5e5e5;
  }
}
@media screen and (max-width: 579px) {
  .JS table.TableNarrowSP2 th, .JS table.TableNarrowSP2 td {
    padding: 4px;
  }
  .vertical-rl {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.topListMenu01 {
  & .box {
    margin-bottom: 10px;
    & .inner {
      background-color: #fff;
    }
  }
}
.topBlockMv .catch {
  font-size: 200%;
}


/* 見出し
-------------------------------------------------------------------------------------*/
h2.prod_titleLv1 {
  font-size: 160%;
  border-bottom: solid 1px #ccc;
  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: bold;
  background-image: none;
}
h2.prod_titleLv1::after {
  position: relative;
  top: 11px;
  display: block;
  width: 180px;
  content: '';
  border-bottom: 1px solid #42425a;
}
@media screen and (max-width: 767px) {
  .JS h2.prod_titleLv1 {
    margin: 0;
  }
}

/*　上部お問い合わせボタン　
-------------------------------------------------------------------------------------*/
#BlockCta-Top {
  background-color: #ececec;
  padding: 24px 40px;
  text-align: center;
  margin-bottom: 30px;
  gap: 40px;
}
@media screen and (max-width: 579px) {
  #BlockCta-Top {
    padding: 20px 12px;
  }
}
#BlockCta-Top .TextStyle1 {
  font-weight: bold;
}


/* security assistance
/////////////////////////////////////////////////////////////////////////////////////*/

.assitanceLayout {
  display: flex;
  flex-direction: row;
  gap: 20px;
  
  h3 {
    padding: 10px;
    border-radius: 5px;
    color: #fff;
  }
  
  .LayoutBlock {
    width: 48%;
    box-sizing: border-box;
	
    dl.ListStyle1 dd {
      margin: 0 0 4px;
    }
  }
  
 .LayoutBlock:nth-of-type(1) h3 {
    background-color: #1B54AB;
  }
  
  .LayoutBlock:nth-of-type(2) {
    order: 3;
	
     h3 {
      background-color: #41853E;
    }
  }
  
  .LayoutBlock:nth-of-type(3) {
    order: 2;
    h3 {
      background-color: #8F6945;
    }
  }
  
  .LayoutBlock:nth-of-type(4) {
    order: 4;
    h3 {
      background-color: #7030A0;
    }
  }
}

@media screen and (max-width: 579px) {
  .assitanceLayout, .assitanceLayout .LayoutBlock {
    width: 100%;
  }
  .assitanceLayout .LayoutBlock:nth-of-type(3) {
    order: 3;
  }
}

.AddNotesStyle_square {
  border: solid #7030A0 1px;
  padding: 10px 10px 0;
  border-radius: 10px;
}

/* security ot
/////////////////////////////////////////////////////////////////////////////////////*/
.otlist li {
  width: calc(100%/5);
  padding: 0 7px;
      & img {
  width: 100%;
　}  
}
.ottable img {
  width: 120px;
}
@media screen and (max-width: 579px) {
  .otlist {
    flex-wrap: wrap;
  }
  .otlist li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
      & img {
    width: 50%;
  }
  }
}


/* security cylance_piso
/////////////////////////////////////////////////////////////////////////////////////*/
.CPLineup {
  gap: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 579px) {
  .CPLineup {
    display: block;
  }
}
.ProductBlock {
  width: calc(700px/3);
  padding: 0 5px;
}
@media screen and (max-width: 579px) {
  .ProductBlock {
    width: 100%;
  }
}
.ProductBlock img {
  width: 220px;
}
.ProductBlock .arrow img {
  width: 80px;
}
.ProductBlock .textbox {
  padding: 10px;
  border: solid 2px #ccc;
  border-radius: 10px;
  margin: -6px auto;
  width: 220px;
  box-sizing: border-box;
  font-size: 80%;
}
.ProductBlock:nth-of-type(1) .textbox {
  border-color: #92D050;
}
.ProductBlock:nth-of-type(2) .textbox {
  border-color: #00B0F0;
}
.ProductBlock:nth-of-type(3) .textbox {
  border-color: #FFC000;
}
@media screen and (max-width: 579px) {
  .ProductBlock .textbox {
    margin: 0 auto 20px;
  }
}

/* security Iot
/////////////////////////////////////////////////////////////////////////////////////*/
.LayoutFeature {
  background-color: #0070C0;
  color: #fff;
  padding: 20px 23px 5px;
  width: 96%;
  margin: 0 auto 23px;
  box-sizing: border-box;
}

/* security embedded
/////////////////////////////////////////////////////////////////////////////////////*/
.LayoutMerit .title {
  text-align: center;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  color: #575757;
  font-size: 100%;
}
.LayoutMerit .flexblock,
.LayoutFlow .flexblock {
  gap: 10px;
}
@media screen and (max-width: 579px) {
  .LayoutMerit .flexblock,
  .LayoutFlow .flexblock {
    display: block;
  }
  .LayoutFlow .flexblock .TextStyle1 {
    margin-left: 30px;
  }
}


/* builtin testautomation
/////////////////////////////////////////////////////////////////////////////////////*/
.LayoutStep {
  display: flex;
  gap: 20px;
  
    h4 {
	  white-space: nowrap;
	  padding: 16px 16px 50px;
	  display: block;
	  
 	 &.step01 {
	  background: url(../../../solutions/builtin/testautomation/image/fig_arrow01.png) no-repeat bottom;
	  background-color: #d0c2da;
	}
 	 &.step02 {
	  background: url(../../../solutions/builtin/testautomation/image/fig_arrow02.png) no-repeat bottom;
	  background-color: #b8d0b8;
	}
	 &.step03 {
	  background: url(../../../solutions/builtin/testautomation/image/fig_arrow03.png) no-repeat bottom;
	  background-color: #dfb3ac;
	}
}
}

@media screen and (max-width: 579px) {
  .LayoutStep h4 {
    padding: 35px 6px 50px;
    font-size: 80%;
  }
}

.StepContents {
  padding-bottom: 50px;
  .flexblock {
    gap: 50px;
	
    .flexblock-first {
      flex-shrink: 2;
    }
    img {
      margin-top: 10px;
    }
  }
  .textStyle {
    margin-bottom: 20px;
	
    dd {
      font-size: 90%;
      table {
        font-size: 100%;
      }
    }
    ul {
      font-size: 100%;
    }
  }
}
@media screen and (max-width: 579px) {
  .StepContents .flexblock {
    display: block;
  }
}

.icon-Box {
  display: inline-block;
  padding: 0 0 0 20px;
  background-image: url(../../../hst_images/jp/r1/solution/icon-Box.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px 16px;
  -moz-background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  -o-background-size: 16px 16px;
  -ms-background-size: 16px 16px;
}


/*
/////////////////////////////////////////////////////////////////////////////////////*/
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}