/* ================================
  product
================================ */
#product {
  position: relative;
}
.offerBanner {
  position: fixed;
  z-index: 999;
  transition: all 0.5s ease;
}
.offerBanner a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  color: rgb(255, 255, 255);
  height: 60px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.467) 0px 0px 3px;
  background: linear-gradient(120deg, rgb(88, 7, 19) 0%, rgb(190, 13, 39) 100%) 0% 50% / 400%;
  background-position: 0% 50%;
  border-radius: 60px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-image: initial;
  text-decoration: none;
}
#js-header.UpMove + .offerBanner {
  top: 40px;
  right: 40px;
}
#js-header + .offerBanner, #js-header.DownMove + .offerBanner {
  top: 110px;
  right: 40px;
}
@media only screen and (min-width: 760px), print {
  .offerBanner a:hover {
    background-position: 100% 50%;
  }
}
@media only screen and (max-width: 1175px) {
  .offerBanner a {
    border-width: 4px;
    height: 50px;
    font-size: 16px;
    width: 200px;
  }
  #js-header.UpMove + .offerBanner a {
    position: fixed;
    top: 20px;
    right: 20px;
  }
  #js-header + .offerBanner, #js-header.DownMove + .offerBanner a {
    position: fixed;
    top: 70px;
    right: 20px;
  }
}
  @media only screen and (max-width: 600px) {
    #js-header.UpMove + .offerBanner a {
      position: fixed;
      top: 20px;
      right: auto;
      left: 20px;
    }
    #js-header + .offerBanner, #js-header.DownMove + .offerBanner a {
      position: fixed;
      top: 70px;
      right: auto;
      left: 20px;
    }
  }

/*共通パーツ*/
#wrap {
  width: 100%;
  overflow: hidden
}
#topBox {
  overflow: hidden;
}
.secBox {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex-direction: column;
}
.secBox h2 {
  text-align: center;
  font-size: clamp(28px, 5vw, 46px);
  margin: 6rem 5% 6rem;
}
.secBox h2 span {
  font-size: clamp(16px, 2vw, 20px);
  display: block;
}


@media screen and (max-width: 1400px) {
  .secBox {
    margin: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 4rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .secBox {
    padding: 0 0 1rem;
  }
  .secBox h2 {
    text-align: left;
    font-size: clamp(28px, 5vw, 46px);
    margin: 4rem 0 2rem;
    width: 100%;
  }
  .secBox h2 span {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: normal;
  }
  .explanation .textBox h3 {
    padding-left: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
/*---------------スライダー---------------*/
#gallery {
	padding-top: 6rem;
}
.swiper h2{
  text-align: center;
  font-size: clamp(26px, 5vw, 46px);
  margin: 0 0 4rem;
}


/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-wrapper {
	height: auto;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
}
@media screen and (max-width: 767px) {
#gallery {
	padding-top: 4rem;
}
.swiper h2 {
    text-align: left;
	margin: 4rem 5%;
  }
}
/*---------------アコーディオン---------------*/
.accordion {
  margin-inline: auto;
  margin-top: 30px;
  max-width: 420px;
  position: fixed;
  width: 100%;
  bottom: 3%;
  right: 80px;
  z-index: 999999;
  border: #fff 4px solid;
  box-shadow: 0 0 5px #00000077;
}
.accordion-title {
  color: #fff;
  cursor: pointer;
  font-size: min(5vw, 22px);
  padding: 15px 20px;
}
.accordion-content {
  display: none;
  padding: 10px 15px;
}
.accordion-content p {
  font-size: 13px;
  line-height: 1.5;
}
.accordion-item:nth-of-type(1) .accordion-title {
  background-color: #0d223e;
  transition: all 0.3s;
}
.accordion-item:nth-of-type(1) .accordion-content {
  background: linear-gradient(to right, #fff, #ffffffcc);
}
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 42%;
  transform: rotate(-45deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 15px;
}
.accordion-title.open::after {
  top: 35%;
  transform: rotate(135deg);
}
.accordion ul li a {
  text-decoration: none;
  font-weight: bold;
}
.accordion ul {
  border-radius: 5px;
  padding: 0.5em 1em 0.5em 3em;
  position: relative;
}
.accordion ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
}
.accordion ul li:before {
  content: "";
  position: absolute;
  left: 1em;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background: url("../img/img_common/arrow_icon.png")no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px), {
  .accordion-item .accordion-title {
    transition: all 0.3s;
  }
  .accordion-item .accordion-title:hover {
    background: #0c797d;
  }
  .accordion ul li a {
    transition: all 0.3s;
  }
  .accordion ul li a:hover {
    color: #0c797d;
  }
}
a.pg_page {
  right: 10px !important;
  bottom: 0% !important;
}
@media screen and (max-width: 1175px) {
  a.pg_page {
    right: 10px !important;
    bottom: 0% !important;
  }
  .accordion {
    bottom: 2%; /*60px*/
    right: 70px /*60px*/
  }
}
@media screen and (max-width: 500px) {
  .accordion ul li {
    margin-bottom: 0;
  }
  .accordion ul li a {
    font-size: 14px
  }
  .accordion {
    width: 80%;
    bottom: 0;
    left: 0;
  }
  a.pg_page {
    bottom: -2% !important; /*60px*/
  }
  .accordion-content {
    display: none;
    padding: 10px 0;
  }
}
/*---------------アコーディオン---------------*/

/*---------------フォームボタン---------------*/
.contactLinkBox {
  background-size: contain;
  background-position: left top;
  position: relative;
}
.contactLinkBox a {
  background: linear-gradient(120deg, rgb(88, 7, 19) 0%, rgb(190, 13, 39) 100%) 0% 50% / 400%;
  background-position: 0% 50%;
  background-size: 250% auto;
  width: 80%;
  max-width: 480px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-decoration: none;
  border-radius: 40px;
  margin: 2rem auto 0;
  position: relative;
  transition: all 0.4s ease;
  border: 4px solid #fff;
  box-shadow: 0 0 3px #00000077;
}
.contactLinkBox .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 30px solid #fff;
  border-bottom: 0;
  margin: 1rem auto 0;
}
@media screen and (max-width: 767px) {
  .contactLinkBox .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 20px solid rgb(88, 7, 19);
    border-bottom: 0;
  }
  .contactLinkBox {
    background-position: right 28% top;
    background-size: contain;
    padding: 3rem 0 1rem;
  }
  .contactLinkBox a {
    background: linear-gradient(120deg, rgb(88, 7, 19) 0%, rgb(190, 13, 39) 100%) 0% 50% / 400%;
    background-position: 0% 50%;
    background-size: 250% auto;
    width: 80%;
    max-width: 300px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    border-radius: 40px;
    margin: 0 auto 0;
    position: relative;
    transition: all 0.4s ease;
    border: 4px solid #fff;
    box-shadow: 0 0 3px #00000077;
  }
}
@media only screen and (min-width: 768px), print {
  .contactLinkBox a:hover {
    background-position: 100% 50%;
  }
}


/*お問合せポイント*/
#contactform .contactPoint {
	max-width: 960px;
	margin: 0 auto 30px;
	background: #ecf5ff;
	border-radius: 10px;
	padding: 40px;
}
#contactform .contactPoint dt {
	font-size: clamp(16px, 3vw, 24px);
	font-weight: bold;
	color: #0f2748;
}
#contactform .contactPoint p{
	font-size: clamp(14px, 3vw, 16px);
}
#contactform .contactPoint ul {
	background:#dfeaf9;
	padding: 15px 15px 15px 30px;
	margin: 1rem 0;
	display: inline-block;
}
#contactform .contactPoint ul li {
	font-size: clamp(14px, 2vw, 16px);
	font-weight: bold;
	color: #444;
}
#contactform .contactPoint ul li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 1000px){
#contactform .contactPoint {
	margin: 0 3% 30px;
}
}
@media screen and (max-width: 767px){
#contactform h2 .itemName {
  padding: 15px;
}
#contactform .contactPoint {
	margin: 0 3% 20px;
	border: 2px solid #254566;
	padding: 25px;
}
}


/*---------------フォームボタン---------------*/
/*---------------取引可能国---------------*/
#countries {
  padding: 6rem 0;
  background: #ecf5ff;
}
#countries .inBox {
  max-width: 1200px;
  margin: auto;
}
#countries .inBox h2 {
  text-align: center;
 font-size: clamp(28px, 5vw, 46px);
  margin-bottom: 2rem;
}
#countries .inBox p {
  max-width: 960px;
  margin: 0 auto 2rem;
}
#countries .flagsBox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:15px;
  max-width: 960px;	 
  margin: auto;
}
#countries .flagsBox img {
  display: inline-block;
  width: 12%;
	max-width: 150px;
}
@media screen and (max-width: 1240px), {
  #countries .inBox {
    margin: 0 5%;
  }
  #countries .flagsBox img {
    display: inline-block;
    margin: 0 1% 10px;
  }
  #countries .flagsBox {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px), {
  #countries {
    padding: 6rem 0 4rem;
    background: #ecf5ff;
  }
  #countries .flagsBox img {
    width: 18%;
    height: auto;
  }
#countries .inBox h2 {
  text-align: left;
}
}
@media screen and (max-width: 400px), {
  #countries .flagsBox img {
    width: 22%;
    height: auto;
    margin: 0 1% 10px;
  }
  #countries .inBox h2 {
    text-align: left;
  }
}
/*---------------取引可能国---------------*/
/*---------------ビジネス上の利点---------------*/
.explanation {
  padding: 0 0 4rem;
}
.explanation .fBox {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.explanation .fBox img {
  display: block;
  width: 40%;
  max-width: 680px;
}
.explanation .textBox {
  width: 56%;
}
.explanation .textBox h3 {
  font-size: clamp(18px, 2vw, 28px);
  margin-bottom: 2rem;
  padding-left: 6%;
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
}
.explanation .textBox h3 .mini{
	font-size: clamp(14px, 2vw, 18px);
}
.explanation .textBox p {
  padding-left: 6%;
  font-size: clamp(14px, 1.5vw, 18px) !important;
}
.explanation .textBox ul {
	padding: 20px 20px 20px 40px;
    background: #f0f1ec;
    border-radius: 8px;
	margin: 1rem 0 1rem 6%;
}
.explanation .textBox ul li{
	font-size: clamp(14px, 2vw, 18px);
}
.explanation .textBox ul li:last-child{
	margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  .explanation .fBox {
    margin: 0;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1480px), {
  .explanation .fBox img {
    display: block;
    width: 35%;
    max-width: 680px;
  }
  .explanation .textBox {
    width: 65%;
  }
}
@media screen and (max-width: 767px), {
  .explanation {
    padding: 0 0 2rem;
  }
  .explanation:last-child {
    padding: 4rem 0 4rem;
  }
  .explanation .fBox {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .explanation .fBox img {
    width: 100%;
    max-width: none;
  }
  .explanation .textBox {
    width: 100%;
  }
.explanation .textBox h3 {
  padding-left: 0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
  .explanation .textBox p {
    padding-left: 0;
  }
  .explanation .textBox ul {
    padding: 20px 20px 20px 35px;
    background: #f0f1ec;
    border-radius: 8px;
    margin: 1rem 0;
    display: inline-block;
  }
  .explanation .textBox {
    margin-bottom: 1.5rem;
  }
}
.amendment {
  border: 1px solid #000;
  padding: 40px;
  margin: 2rem 0 0;
  width: 100%;
  background: #ffffe7;
}
.amendment h3 {
  font-size: clamp(18px, 4vw, 28px);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .amendment {
    padding: 20px;
    margin: 1rem 0 0;
  }
}





.explanationWide  {
	margin-left: 25px;
	margin-bottom: 4rem;
}


.explanationWide h3 {
  font-size: clamp(18px, 2vw, 28px);
  margin-bottom: 3rem;
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
}


.explanationWide dl {
margin-top: 3rem;
background: #ecf5ff;	
	padding: 40px;
	border-radius: 5px;
}
.explanationWide dl dt{
 font-size: clamp(17px, 3vw, 24px);	
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
}
.explanationWide dl dd{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 30px;
}
.explanationWide dl dd {
	
}
.explanationWide dl dd .toolsBox {
	width: 22%;
}
.explanationWide dl dd .toolsBox .Box {
	border: 2px dotted #666;
	padding: 15px;
	margin-top: 15px;
}
.explanationWide dl dd .toolsBox .Box > span{
	font-size: clamp(14px, 3vw, 16px);
	font-weight: bold;
	padding: 10px 10px 0;
}
.explanationWide dl dd .toolsBox .Box > ul {
	padding: 5px 10px 5px 25px;
}
.explanationWide dl dd .toolsBox .Box > ul > li {
	font-size: clamp(13px, 3vw, 14px);
	margin-bottom: 5px;
}
.explanationWide dl dd .toolsBox .Box > ul > li:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 1480px) {
	.explanationWide  {
	margin-left: 0;
}

}
@media screen and (max-width: 1160px) {
	.explanationWide dl dd .toolsBox {
	width: 30%;
}
}
@media screen and (max-width: 768px) {
 .explanationWide h3 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }	
	
	
.explanationWide dl dt{
	margin-bottom: 1rem;
}
.explanationWide dl {
margin-top: 1.5rem;	
	padding: 20px;
}
	.explanationWide dl dd .toolsBox {
	width: 48%;
}
.explanationWide dl dd .toolsBox .Box {
	border: 2px dotted #666;
	padding: 10px;
	margin-top: 15px;
}
	@media screen and (max-width: 480px) {
		.explanationWide dl dd .toolsBox {
	width: 100%;
}	
	}
}
/*---------------ビジネス上の利点---------------*/
/*---------------製品の特徴---------------*/
#productfeature .inBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#productfeature .inBox .textBox {
  width: 55%;
}
#productfeature .inBox img {
  display: block;
  width: 42%;
  height: auto;
}
#productfeature h3 {
  font-size: clamp(18px, 2vw, 28px);
  margin-bottom: 2rem;
  border-left: 4px solid #091c34;
  padding-left: 10px;
}
#productfeature h3 span {
  font-size: clamp(16px, 2vw, 20px);
}
#productfeature .inBox .Box {
  border: 1px solid #000;
  padding: 20px;
  margin-bottom: 1rem;
  background: #ffffe7;
  padding-left: 6%;
}
#productfeature .inBox2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 4rem 0;
}
#productfeature .inBox2 section {
  width: 48%;
}
#productfeature .inBox2 table.table01 {
  width: 100%;
  border-right: #3EB1C6 solid 1px;
  border-collapse: collapse;
}
#productfeature .inBox2 table.table01 thead th {
  background: #3EB1C6;
  color: #FFF;
  padding: 10px 15px;
  border-right: #FFF solid 1px;
  border-bottom: #FFF solid 1px;
}
#productfeature .inBox2 table.table01 thead th:last-child {
  border-right: #3EB1C6 solid 1px;
}
#productfeature .inBox2 table.table01 tbody th {
  background: #3EB1C6;
  color: #FFF;
  padding: 10px 15px;
  border-bottom: #FFF solid 1px;
  vertical-align: top;
}
#productfeature .inBox2 table.table01 tbody tr:last-child th {
  border-bottom: #3EB1C6 solid 1px;
}
#productfeature .inBox2 table.table01 tbody td {
  background: #FFF;
  padding: 10px 15px;
  border-left: #3EB1C6 solid 1px;
  border-bottom: #3EB1C6 solid 1px;
  vertical-align: top;
}
  #productfeature .inBox .Box ol li {
    margin-bottom: 0.5rem;
  }
  #productfeature .inBox .Box ol li:last-child {
    margin-bottom: 0;
  }
@media screen and (max-width: 1080px) {
  #productfeature .tableBox {
    margin-bottom: 2rem;
  }
  #productfeature .inBox2 {
    margin: 2rem 0;
    flex-direction: column;
  }
  #productfeature .inBox2 section {
    width: 100%;
  }
  #productfeature .inBox2 table.table01 thead {
    display: none;
  }
  #productfeature .inBox2 table.table01 tbody th {
    display: block;
  }
  #productfeature .inBox2 table.table01 tbody td {
    display: flex;
    align-items: center;
  }
  #productfeature .inBox2 table.table01 tbody td::before {
    content: attr(label);
    float: left;
    clear: both;
    font-weight: bold;
  }
  #productfeature .inBox2 table.table01 tbody td p {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #productfeature .inBox {
    flex-direction: column;
  }
  #productfeature .inBox .textBox {
    width: 100%;
  }
  #productfeature .inBox img {
    width: 100%;
  }
  #productfeature .inBox .Box ol {
    padding-left: 20px;
  }
  #productfeature .inBox .Box ol li {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  #productfeature .inBox .Box ol li:last-child {
    margin-bottom: 0;
  }
  #productfeature h3 {
    margin-bottom: 1rem;
  }
  #productfeature h3 span {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: normal;
  }
}
/*---------------製品の特徴---------------*/
/*---------------規約とカスタマイズ---------------*/
#trading {
  padding: 0;
  margin-bottom: 6rem;
  background: radial-gradient(#5076a4, #142c4b);
}
#trading h2 {
  color: #fff;
}
#trading .secBox {}
#trading .inBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#trading .inBox .checkList {
  padding: 20px 30px 20px 50px;
  background: linear-gradient(to right, #ffffff, #ffffffcc);
  width: 55%;
}
#trading .inBox img {
  display: block;
  width: 42%;
  height: auto;
}
#certification {
  padding: 0 0 6rem;
  background: #ecf5ff;
}
#certification .inBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#certification .inBox .checkList {
  padding: 20px 30px 20px 50px;
  background: #fff;
  width: 55%;
}
#certification .inBox .checkList li:last-child {
  margin-bottom: 0;
}
#certification .inBox figure {
  display: block;
  width: 42%;
  height: auto;
}
#certification .inBox figure figcaption {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #trading {
    margin-bottom: 1rem;
  }
  #trading .secBox {
    padding: 1rem 0 1rem;
  }
  #trading .inBox {
    flex-direction: column;
  }
  #trading .inBox .checkList {
    padding: 20px 20px 20px 40px;
    width: 100%;
    margin-top: 1rem;
  }
  #trading .inBox img {
    width: 100%;
  }
  #certification {
    padding: 0 0 2rem;
  }
  #certification .inBox {
    flex-direction: column;
  }
  #certification .inBox figure {
    width: 100%;
  }
  #certification .inBox .checkList {
    padding: 20px 20px 20px 40px;
    width: 100%;
    margin-top: 1rem;
  }
}
/*---------------規約とカスタマイズ---------------*/



.categoryBox {
	max-width: 960px;
	margin: 0 auto 40px;
}
.categoryBox .flagsBox img {
  width: 20%!important;
  max-width: 120px!important;
}
.categoryBox .flagsBox img.long {
  max-width: 160px!important;
}
.categoryBox .flagsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start!important;
  max-width: 960px;
  margin: auto;
	gap: 10px;
	margin-bottom: 30px!important;
}
.categoryBox h3 {
	font-size: clamp(16px, 3vw, 20px);
}
.categoryBox p {
margin: 0 auto 1rem!important;	
}
@media screen and (max-width: 1240px), not all {
.categoryBox .flagsBox {
	gap: 5px;
	margin-bottom: 30px!important;
}
.categoryBox .flagsBox img {
    display: inline-block;
    margin: 0!important;
	width: 23%!important;
  }

}



.thumb .slick-track {
transform:unset!important;
}


.formTable tr th .mini{
	font-size: 14px;
}

.explanation2 {
	width: 100%;
}

.explanation2 h3{
	font-size: clamp(18px, 2vw, 26px);
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #000;
    margin-bottom: 1.5rem;
}




.explanation2 {
	margin-bottom: 4rem;
}

.explanation2 .textBox{
	margin: 2rem 0;
}
.explanation2 .textBox p{
	font-size: clamp(14px, 1.5vw, 18px) ;
}


.explanation2 .textBox ul{
	padding: 20px 20px 20px 35px;
	background: #f0f1ec;
	border-radius: 8px;
	margin: 1rem 0;
	display: inline-block;
		
}

.explanation2 .textBox ul li{
	font-size: clamp(14px, 1.5vw, 18px) ;
}
.explanation2 .textBox ul li:last-child{
	margin-bottom: 0;
}
.explanation2 .imgfBox {
	display: flex;
	justify-content: space-between;
}
.explanation2 .imgfBox img {
	width: 33%;
	height: auto;
	max-width: 450px;
}
@media screen and (max-width: 767px) {
.explanation2 .textBox{
	margin: 1.5rem 0;
}
.explanation2 .imgfBox {
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.explanation2 .imgfBox img {
	width: 100%;
}	
}




/*Chosen*/
#Chosen {
  background: #e9e9e9;
}
#Chosen .fBox{
	display: flex;
	flex-direction: row-reverse;
	gap: 40px;
	align-items: center;
}

#Chosen .fBox .imgBox{
	width: 30%;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px;
}
#Chosen .fBox .imgBox img{
	
}
#Chosen .fBox .textBox{
	flex: 1;
}
#Chosen .fBox .textBox dl{
	margin: 0 0 2rem;
}
#Chosen .fBox .textBox dl:last-child{
	margin: 0;
}
#Chosen .fBox .textBox dl dt{
	padding: 20px;
	border-radius: 10px;
	background: #fff;
	font-size: clamp(16px, 2vw, 20px);
	margin-bottom: 20px;
	font-weight: bold;
	display: flex;
	align-items: flex-start;
	gap: 20px
}
#Chosen .fBox .textBox dl dt span {
	flex: 1;
}
#Chosen .fBox .textBox dl dt::before {
	display: block;
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/img_common/check_icon_r.png) no-repeat;
    background-size: contain;
    
}

#Chosen .fBox .textBox dl dd{
font-size: clamp(14px, 1.5vw, 18px) ;
}

@media screen and (max-width: 767px) {
	#Chosen .fBox{
	flex-direction: column-reverse;
	justify-content: center;
		gap: 20px;
}

	
#Chosen .fBox .textBox dl dt{
	padding: 15px 10px;
	border-radius: 8px;
	gap: 10px;
	margin-bottom: 10px;
}
#Chosen .fBox .textBox dl dt::before {
    width: 25px;
    height: 25px;
}
#Chosen .fBox .imgBox{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
	#Chosen .fBox .imgBox img {
		width: 48%;
		height: auto;
	}
}


/*leadArea*/
#leadArea {
	padding: 7rem 0;
	background: #333 url("../img/img_product/img_valvanne_modello/chosen_bg.png")no-repeat;
	background-size: contain;
	background-position: bottom right;
}
#leadArea .inBox{
	max-width: 1200px;
	margin: auto;
}
#leadArea h2{
font-size: clamp(20px, 5vw, 30px);	
margin-bottom:2rem;
	color: #fff;
}
#leadArea .inBox p{
	color: #fff;
}

@media screen and (max-width: 1080px) {
#leadArea {
  padding: 2em 0 3em;
  background: #333 url("../img/img_product/img_valvanne_modello/chosen_mb_bg.png")no-repeat;
	background-size:70%;
	background-position: bottom right;
}	
	
	
	#leadArea .inBox{
	margin: 0 5%;
}
}

/*#manufacturers */
#manufacturers {
	
	padding: 6rem 0 8rem;
}
#manufacturers h2{
	text-align: center;
  font-size: clamp(28px, 5vw, 46px);
  margin: 0 0 4rem ;
}
	


#manufacturers ul{
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}

#manufacturers ul li{
	width: 20%;
	max-width: 180px;
	border: 1px solid #eee;
	margin: 0;
	
}
#manufacturers ul li:last-child{
	border:none;
}
@media screen and (max-width: 1280px) {
	#manufacturers h2 {
	margin: 0 5% 2rem;
	}
	#manufacturers ul{
	margin: 0 5%;
	}
}
@media screen and (max-width: 767px) {
#manufacturers {
	padding: 4rem 0 4rem;
}
#manufacturers h2 {
    text-align: left;
    width: 100%;
  }
#manufacturers ul li{
	width: 30%;	
}
}

#contactform .itemName {
	max-width: 520px;
}

#contactform .itemName .small{
	font-size: 0.7em;
	display: block;
	margin-top: 10px;
	white-space: nowrap;
}



#distributor {
	padding: 3rem 0;
}

#distributor .inBox{
	max-width: 900px;
	margin: auto;
}


#distributor .inBox h2 {
  text-align: center;
  font-size: clamp(28px, 5vw, 46px);
  margin-bottom: 2rem;
}
#distributor .inBox table{
	max-width: 1080px;
	margin: auto;
	padding: 20px;
}
	
#distributor .inBox table tr{
	display: flex;
	gap: 5px;

}
#distributor .inBox table tr th,
#distributor .inBox table tr td {
	margin: 2px 0;
}
#distributor .inBox table tr th {
	width: 30%;
	background: #ecf5ff;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#distributor .inBox table tr th .small{
	display: inline-block;
	font-size: 14px;
	
	
}
#distributor .inBox table tr td {
	flex: 1;
	position:relative;
	display: flex;
	align-items: center;
	padding: 8px 30px;
	border:1px solid #a7c8ec;
}

#distributor .inBox p {
	text-align: center;
	margin-top: 2rem;
	font-weight: bold;
}

@media screen and (max-width: 1080px) {
	#distributor .inBox{
	margin: 0 5%;
}
}
@media screen and (max-width: 767px) {
	
#distributor {
  padding: 2rem 0;
}	
	
	#distributor .inBox table tr{
	flex-direction: column;
		gap: 0;
}
#distributor .inBox p {
	text-align: left;
	margin-top: 1rem;
}	
	
#distributor .inBox table tr th {
	width: 100%;
	margin-bottom: 0;
}

	#distributor .inBox table tr td {
	width: 100%;
	margin-top: 0;
	font-size: 14px;
	padding: 8px 20px;
}
}

.relatedList .inBox > div {
    width: 30%;
    text-decoration: none;
    margin-bottom: 1rem;
}
