/**
 *
 * ミニサーキットヨコハマ WEB Site
 * Default Style Sheet
 *
 * [INDEX]
 * - Initialize（スタイルの初期化）
 * - Common Class（汎用クラス定義）
 * - Base Design（基本レイアウト／デザイン）
 * - Top Page Design（トップページデザイン）
 * - Lower Page Design（下層ページベースデザイン）
 * - Individual Design（ページ個別デザイン）
 * - Plugin Customize（jQueryプラグインのスタイル上書き）
 * - N（追記）
 *
 *------------------------------------*/



/**
 * Initialize（スタイルの初期化）
 *------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #1859ea;
  color: #000;
  font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", Sans-Serif;
  font-size: 14px;
  line-height: 2.0;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
    line-height: 1.7;
  }
}

img {
  border: none;
  vertical-align: middle;    
}

ul {
  list-style: none;
}

a {
/*   color: #1859ea; */
  color: #1b1b87;  
  cursor: pointer;
  outline: none;
}

a:hover {
  opacity: 0.8;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="submit"],
textarea,
select {
  -webkit-appearance: none;
  border-radius: 0;
  font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", Sans-Serif;
  outline: none;
}

button {
  cursor: pointer;
  outline: none;
}


/**
 * Common Class（汎用クラス定義
 *------------------------------------*/
.hidden {display: none !important;}
@media screen and (max-width: 768px) {
  .hidden-sp {display: none !important;}
}
@media screen and (min-width: 769px) {
  .hidden-pc {display: none !important;}
}

.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gradation {
  background-color: #eee;
  background: -moz-linear-gradient(top, #fff, #eee); /* mozilla */
  background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#eee)); /* Webkit */
  background: linear-gradient(#fff, #eee); 
  border: solid 1px #ccc;
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffffff', endColorstr='#ffeeeeee'); /* IE5.5以上 */
}

.target-blank {position: relative;}

.target-blank:before {
  background: url(images/icon_target_blank.png) no-repeat center;
  content: '';
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  height: 9px;
  width: 10px;
}

.container {
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  width: 960px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
    width: auto;
  }
}

/* 検索ボックス */
.search-box {
  background: #1b1b87;
  padding: 8px;
}

.search-box-katarogu {
  margin: 20px auto 0;
}
@media screen and (min-width: 769px) {
  .search-box-katarogu {
    display: flex;
    padding: 20px;
    width: 600px;
  }

  .search-box-katarogu .search-box-heading {
    line-height: 35px;
    margin: 0 1em 0 0;
    padding-right: 20px;
    text-align: left;
    white-space: nowrap;
  }

  .search-box-katarogu .search-box-heading::after {
    right: 3px;
    top: 10px;
  }

  .search-box-katarogu > form {
    flex-grow: 1;
  }
}

.search-box-heading {
  color: #fff !important;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.2;
  margin: 3px 0 12px;
  position: relative;
  text-align: center;
}

.search-box-heading::after {
  background: url(images/icon_target_blank_white.png) no-repeat center;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 9px;
  width: 10px;
}

.search-box > .form-tbl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .search-box > .form-tbl {
    border: none;
  }
}

.search-box > .form-tbl > [type="text"] {
  height: 35px;
  line-height: 35px;
  width: calc(100% - 35px);
}
@media screen and (max-width: 768px) {
  .search-box > .form-tbl > [type="text"] {
    font-size: 16px;
  }
}

.search-box-btn {
  background: #ffa300;
  border: none;
  display: block !important;
  height: 35px;
  line-height: 35px;
  padding: 0 !important;
  text-align: center;
  width: 35px;
}

.search-box-btn > img {
  vertical-align: middle;
  width: 15px;
}



/* フォーム関連 */
.note-require {
  background: #f3f3f3;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1em;
  padding: 0 .5rem;
}
.note-require strong {
  color: #c61c24;
  font-weight: normal;
}

.form-tbl {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form-tbl {
    border-top: solid 1px #ccc;
    width: auto;
  }
}

.form-tbl th,
.form-tbl td {
  border: solid 1px #ccc;
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .form-tbl th,
  .form-tbl td {
    display: block;
  }

  .form-tbl th {
    border-width: 0 1px;
  }
}

.form-tbl th {
  background: #ededed;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  width: 220px;
}
@media screen and (max-width: 768px) {
  .form-tbl th {
    width: auto;
  }
}

.form-tbl th small {
  display: block;
  font-size: 0.86em;
  line-height: 1.83;
}

.form-tbl .required small {
  margin-top: 10px;
}

.form-tbl .required::after {
  color: #c61c24;
  content: '＊';
  margin-left: 5px;
}

.form-tbl em {
  color: #c61c24;
  display: block;
  font-size: 0.85em;
  font-style: normal;
  margin-top: 5px;
}

.form-tbl em:before {
  content: '※';
  margin-right: 5px;
}

.form-tbl [type="text"],
.form-tbl textarea {
  border: solid 1px #ccc;
  -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.form-tbl [type="text"] {
/*
  height: 34px;
  line-height: 32px;
*/
  height: 26px;
  line-height: 24px;
  padding: 0 15px;
}

.form-tbl [type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}

.form-tbl textarea {
  overflow-y: auto;
  padding: 15px;
}

.form-tbl + .action {
  padding: 50px 0;
  position: relative;
  text-align: center;
}

.form-tbl + .action button {
  background: #000;
  border: none;
  color: #fff;
  font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", Sans-Serif;
  font-size: 1.43em;
  height: 68px;
  line-height: 68px;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form-tbl + .action button {
    height: 3.5em;
    line-height: 3.5em;
  }
}

.form-tbl + .action form {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .form-tbl + .action form {
    display: block;
  }
}

.form-tbl + .action .back {
  background: #ccc;
  color: #666;
  left: 0;
  position: absolute;
  top: 50px;
}
@media screen and (max-width: 768px) {
  .form-tbl + .action .back {
    margin-bottom: 1em;
    position: static;
  }
}

.form-tbl + .action + p {
  font-size: 0.86em;
  text-align: center;
}

.form-tbl [name="remarks"] {height: 160px;}
.form-tbl [name="zip"] {width: 164px;}
.form-tbl [name="tel"],
.form-tbl [name="fax"] {width: 229px;}

.form-tbl [name="enduser"] {
  margin-left: 20px;
  width: 290px;
}
@media screen and (max-width: 768px) {
  .form-tbl [name="enduser"] {
    display: block;
    width: auto;
  }
}

.form-tbl td p {line-height: 1.71;}

.form-tbl [type="text"] + p,
.form-tbl textarea + p {
  margin-top: 5px;
}


.form-tbl .privacy {
  border-top: dashed 1px #ccc;
  font-size: 0.9em;
  line-height: 1.7;
  margin-top: 15px;
  padding: 15px 0;
}

.form-tbl .privacy strong {
  display: block;
}

form .pn {
  margin-bottom: 45px;
  margin-top: 30px;
}

form .pn label {
  display: block;
  margin-bottom: 10px;
}

form .pn label span {
  font-size: 1.14em;
  margin-right: 50px;
}

form .pn label span:after {
  color: #c61c24;
  content: '＊';
  margin-left: 5px;
}

form .pn textarea {
  border: solid 1px #ccc;
  -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 180px;
  overflow-y: auto;
  padding: 15px;
  width: 100%;
}

form .pn em {
  color: #c61c24;
  display: block;
  font-size: 0.85em;
  font-style: normal;
}

form .pn em:before {
  content: '※';
}

form .pn > p {
  font-size: 0.86em;
  line-height: 1.83;
  padding-left: 25px;
  position: relative;
}

form .pn > p:before {
  content: '注：';
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

#main-body .pn-confirm p {
  margin: 0;
  padding: 0;
}

#main-body .pn-confirm .title:first-child {
  background: #f3f3f3;
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  margin: 30px 0 0 0;
  padding: 0 15px;
}

#main-body .pn-confirm .title + p {
  padding: 15px 15px 50px 15px;
}

@media screen and (max-width: 768px) {
  .tbl-scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }
}



/**
 * Base Design（基本レイアウト／デザイン）
 *------------------------------------*/
html, body {
  height: 100%;
}

/* Header design */
@media screen and (min-width: 769px) {
  #main-header {
    min-width: 1060px;
  }
}

#topbar {
  background: #1859ea;
  box-shadow:rgba(0, 0, 0, 0.2) 0px 0px 4px 3px;
  -webkit-box-shadow:rgba(0, 0, 0, 0.2) 0px 0px 4px 3px;
  -moz-box-shadow:rgba(0, 0, 0, 0.2) 0px 0px 4px 3px;
  color: #fff;
  position: relative;
  z-index: 1000;
}

#topbar > .container {
  height: 70px;
}
@media screen and (max-width: 768px) {
  #topbar > .container {
    align-items: center;
    display: flex;
  }
}

#topbar .container > h1 {
  bottom: 13px;
  font-size: 1em; 
  font-weight: bolder;

  line-height: 1.0;
  position: absolute;
  width: 400px;
}
@media screen and (max-width: 768px) {
  #topbar .container > h1 {
    flex-grow: 1;
    position: static;
    width: auto;
  }
}

#topbar .container > h1 a {
  background: url(images/header_logo.png) no-repeat left bottom;
  background-size: auto 24px;
  color: #fff;
  display: block;
  font-size: 10px;
  padding-bottom: 30px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #topbar .container > h1 a {
    background-size: auto 20px;
    display: inline-block;
    font-size: 9px;
    padding-bottom: 26px;
  }
}

#topbar .container > h1 small {
  display: block;
  font-size: 0.71em;
  margin-top: 7px;
  text-align: center;
}

#header-contact {
  align-items: center;
  display: flex;
  height: 70px;
  position: absolute;
  right: 87px;
  top: 0;
  width: 500px;
}
@media screen and (max-width: 768px) {
  #header-contact {
    align-items: center;
    display: flex;
    position: static;
    width: 40px;
  }
}

#header-contact a {
  background: #ffa300;
  color: #fff;
  display: block;
  font-size: 1.07em;
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
	padding-right: 10px;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 10px;
}

#header-contact a:before {
  content: url(images/arrow_right_white.png);
  display: inline-block;
  height: 7px;
  line-height: 7px;
  margin-right: 6px;
  vertical-align: 1px;
  width: 4px;
}
@media screen and (max-width: 768px) {
  #header-contact a {
    background: url(images/icon_inquiry_tel_white.svg) no-repeat center/contain;
    border: none;
    height: 40px;
    overflow: hidden;
    padding: 0;
    position: static;
    text-indent: -9999em;
    width: 40px;
    white-space: nowrap;
  }

  #header-contact a::before {
    display: none;
  }
}

#header-contact .tel {
  text-align: right;
}

#header-contact .tel {
  color: #fff;
  font-size: 1.26em;
  font-weight: bold;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #header-contact .tel {
    display: none;
  }
}

#header-contact .tel small {
  color: #333;
  display: inline-block;
  font-size: 0.61em;
  font-weight: normal;
  margin-left: 30px;
  vertical-align: 2px;
}

#header-contact .tel:before {
  content: url(images/icon_tel.png);
  display: inline-block;
  height: 18px;
  line-height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
  width: 18px;
}

#header-contact #time{
  text-align:right;
  font-size:small;
}
@media screen and (max-width: 768px) {
  #header-contact #time {
    display: none;
  }
}

#gnav {
  background: #1859ea;
  border-bottom: solid 5px #ffa300;
  height: 60px;
}
@media screen and (max-width: 768px) {
  #gnav {
    border-bottom-width: 3px;
    height: auto;
  }
}

#gnav ul {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #gnav ul {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
}

#gnav li {
  float: left;
}
@media screen and (max-width: 768px) {
  #gnav li {
    float: none;
    width: 33.3333%;
  }
}

#gnav a {
  border-right: solid 1px rgba(255,255,255,.15);
  color: #fff;
  display: block;
  font-size: 1.07em;
  height: 60px;
  padding-top: 12px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 192px;
}

#gnav a:after {
  bottom: 13px;
  content: url(images/arrow_bottom_orange.png);
  display: inline-block;
  height: 4px;
  left: 50%;
  line-height: 4px;
  margin-left: -3px;
  position: absolute;
  width: 7px;
}

@media screen and (min-width: 769px) {
  #gnav ul li:first-child a {
    border-left: solid 1px rgba(255,255,255,.15);
  }
}
@media screen and (max-width: 768px) {
  #gnav a {
    border: none;
    box-sizing: border-box;
    font-size: 12px;
    height: 100%;
    padding: 10px 0 16px;
    width: auto;
  }

  #gnav li:nth-child(-n+3) a {
    border-bottom: solid 1px rgba(255,255,255,.15);
  }

  #gnav li:nth-child(2) a,
  #gnav li:nth-child(3) a,
  #gnav li:nth-child(5) a,
  #gnav li:nth-child(6) a {
    border-left: solid 1px rgba(255,255,255,.15);
  }

  #gnav a::after {
    bottom: 12px;
  }
}

/* Footer design */
#main-footer {
  background: #1b1b87;
  color: #fff;
  padding: 60px 0 75px 0;
  position: relative;
}
@media screen and (min-width: 769px) {
  #main-footer {
    min-width: 1060px;
  }
}
@media screen and (max-width: 768px) {
  #main-footer {
    padding: 50px 0;
  }
}

#main-footer a {
  color: #fff;
}

#footer-menu {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #footer-menu {
    display: none;
  }
}

#footer-menu li {
  float: left;
}

#footer-menu a {
  border-right: solid 1px rgba(255,255,255,.15);
  display: block;
  font-size: 1.07em;
  height: 33px;
  line-height: 1.0;
  padding-top: 3px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 192px;
}

#footer-menu :first-child a {
  border-left: solid 1px rgba(255,255,255,.15);
}

#footer-menu a:after {
  bottom: 2px;
  content: url(images/arrow_bottom_orange.png);
  display: inline-block;
  height: 4px;
  left: 50%;
  line-height: 4px;
  margin-left: -3px;
  position: absolute;
  width: 7px;
}

#footer-contact {
  margin-top: 57px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer-contact {
    font-size: 12px;
    margin-top: 0;
  }
}

#footer-contact h1 {
  font-size: 1.29em;
}
@media screen and (max-width: 768px) {
  #footer-contact h1 {
    font-size: 15px;
  }
}

#footer-contact .tel-fax p {
  display: inline-block;
  font-size: 0.79em;
}

#footer-contact .tel-fax p strong {
  font-size: 1.82em;
  margin-left: 9px;
}

#footer-contact .tel-fax .tel {padding-right: 17px;}
#footer-contact .tel-fax .fax {padding-left: 17px;}
@media screen and (max-width: 768px) {
  #footer-contact .tel-fax .tel {padding-right: 5px;}
  #footer-contact .tel-fax .fax {padding-left: 5px;}
}

#footer-contact .mails {margin-bottom: 58px;}
@media screen and (max-width: 768px) {
  #footer-contact .mails {margin: 35px 0;}
}

#footer-contact .mails p {
  display: inline-block;
  font-size: 1.14em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #footer-contact .mails p {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
}

#footer-contact .mails p span {
  border: solid 1px #fff;
  display: inline-block;
  font-size: 0.75em;
  font-weight: normal;
  height: 23px;
  line-height: 21px;
  margin-right: 10px;
  text-align: center;
  width: 150px;
}
@media screen and (max-width: 768px) {
  #footer-contact .mails p span {
    display: block;
    margin: 0 0 10px;
    width: auto;
  }
}

#footer-contact .mails .sales {
  margin-right: 67px;
}
@media screen and (max-width: 768px) {
  #footer-contact .mails .sales {
    margin: 0 auto 10px;
  }
}

#footer-contact .mails + a {
  font-size: 0.86em;
  text-decoration: none;
}

#credit {font-size: 0.86em;}

#pagetop {
  background: #ffa300 url(images/arrow_pagetop_white.png) no-repeat center;
  display: block;
  height: 50px;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: -50px;
  width: 50px;
}


/**
 * Top Page Design（トップページデザイン）
 *------------------------------------*/
body.home #lead {
  background: #1859ea;
  height: 350px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home #lead {
    height: auto;
  }
}

.no-svg body.home #svg-fig {display: none;}
.no-svg body.home #svg-mask {display: none;}
.no-svg body.home #lead {background: #003c97 url(images/keyvisual.png) no-repeat center;}

body.home #lead #svg-fig {
  height: 350px;
  left: 50%;
  margin-left: -480px;
  position: absolute;
  top: 0;
  width: 960px;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  body.home #lead #svg-fig {
    height: 100%;
    margin-left: 0;
    transform: translateX(-50%);
  }
}

body.home #lead #svg-mask {
  left: 50%;
  margin-left: -1500px;
  position: absolute;
  top: 0;
  z-index: 700;
}
@media screen and (max-width: 768px) {
  body.home #lead #svg-mask {
    height: 100%;
    margin-left: 0;
    transform: translateX(-50%);
  }
}

body.home #lead #lead-copy {
  margin-top: 50px;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  body.home #lead #lead-copy {
    margin: 28px 0;
    max-width: 100%;
  }
}

body.home #header-title {
 /* background: #003c97 url(images/keyvisual.png) no-repeat center;*/
  height: 118.5px;
}
@media screen and (max-width: 768px) {
  body.home #header-title {
    height: auto;
  }
}

body.home #header-title h2 {
  color: #fff;
  font-size: 1.71em;
  height: 100px;
  letter-spacing: 3px;
  line-height: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.home #header-title h2 {
    font-size: 1.4em;
    height: auto;
    letter-spacing: normal;
    line-height: 1.4;
  }
}

body.home #main-body {
  padding-top: 68px;
}
@media screen and (max-width: 768px) {
  body.home #main-body {
    padding-top: 22px;
  }
}

body.home #main-body > section {
  padding-bottom: 60px;
}

body.home #main-body > section > h1 {
  color: #1859ea;
  font-size: 1.71em;
  line-height: 1.0;
  text-align: center;
}

body.home #contents {
  margin: 0 0 60px 0;
}

body.home #contents::after {
  clear: both;
  content: "";
  display: block;
  height: 1px;
  visibility: hidden;
}

body.home #contents .main-contents {
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  body.home #contents .slide-container {
    float: left;
    height: 400px;
    margin-bottom: 30px;
    width: 550px;
  }

  body.home #contents .main-contents {
    float: left;
    width: 600px;
  }
}

body.home .new-products-header {
  align-items: center;
  background-color: #1b1b87;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  body.home .new-products-header {
    display: block;
  }
}

body.home .new-products-title {
  flex-grow: 1;
  font-size: 16px;
  font-weight: bold;
  padding-left: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  body.home .new-products-title {
    padding: 15px 20px;
  }
}

body.home .new-products-category {
  border-left: solid 1px #1859ea;
  flex-grow: 0;
  width: 190px;
}
@media (max-width: 768px) {
  body.home .new-products-category {
    border-left: none;
    border-top: solid 1px #1859ea;
    width: 100%;
  }
}

body.home .new-products-select {
  border: none;
  line-height: 37px;
  height: 37px;
  width: 100%;
  -webkit-appearance: menulist-button;
  background: #1b1b87;
  color: #fff;
  font-weight: bold;
  padding-left: 1em;
  font-size: 14px;
}

body.home .new-products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

body.home .new-products-item {
  background: #fff;
  width: 290px;
}
@media (min-width: 769px) {
  body.home .new-products-item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  body.home .new-products-item {
    width: 100%;
  }

  body.home .new-products-item:nth-child(n+2) {
    margin-top: 20px;
  }
}

body.home .new-products-item > a {
  display: block;
  padding-bottom: 20px;
  text-decoration: none;
}

body.home .new-products-name {
  background-image: url(images/icon_target_blank.png);
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-color: #eee;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 0;
}

body.home .new-products-photo {
  margin-top: 20px;
  margin-bottom: 15px;
  max-height: 105px;
}

body.home .new-products-item figcaption {
  color: #ffa300;
  font-size: 14px;
}

body.home .new-products-item ul {
  font-size: 12px;
  line-height: 20px;
  padding: 0 20px;
}

@media screen and (min-width: 769px) {
  body.home #contents .main-menu {
    float: right;
    width: 340px;
  }
}

body.home #contents .main-menu li {
  margin-bottom: 20px;
}

body.home #contents .main-menu a {
  display: block;
  padding: 8px 0 8px 8px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  body.home #contents .main-menu a {
    align-items: center;
    display: flex;
    padding: 7px;
  }

  body.home #contents .main-menu .target-blank::before {
    right: 10px;
    top: 10px;
  }
}

body.home #contents .main-menu a img {
  vertical-align: middle;
}

body.home #contents .main-menu a > span {
  background: url(images/arrow_right_blue.png) no-repeat 17px 8px;
  display: inline-block;
  font-size: 1.14em;
  font-weight: bold;
  line-height: 1.63;
  padding-left: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  body.home #contents .main-menu a > span {
    background: none;
    display: block;
    font-size: 12px;
    line-height: 1.8;
    padding-left: 20px;
  }

  body.home #contents .main-menu a > span::before {
    border-color: transparent transparent transparent #1859ea;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    content: '';
    display: inline-block;
    margin-left: -6px;
    margin-right: .3em;
  }
}

body.home #contents .main-menu a span span {
  display: block;
  font-size: 0.8em;
  font-weight: normal;
}

body.home .home-contents {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 769px) {
  body.home .home-contents {
    padding: 0;
  }
}

body.home .home-contents .video-container {
  line-height: 1;
  position: relative;
  width: 100%;
}

body.home .home-contents .video-container > video {
  width: 40%;
}

@media screen and (max-width: 768px) {
body.home .home-contents .video-container > video {
  width: 80%;
}
}

body.home .home-contents .video-container > .video-external {
  left: 50%;
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  body.home .home-contents .video-container > .video-external img {
    width: 35px;
  }
}
/*
@media screen and (min-width: 769px) {
  body.home .home-contents .video-container > .video-external img {
    width: 70px;
  }
}
*/


body.home .home-contents .main-contents-banner {
  margin: -30px 0 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.home .home-contents .main-contents-banner {
    margin: 0 0 20px;
  }
}

body.home .news {
  background: #fff;
  padding-top: 65px;
  box-sizing: border-box;
  margin-bottom: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  body.home .news {
    margin: 50px 20px 100px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
  }
}

body.home .news > h1 {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  body.home .news > h1 {
    margin-bottom: 24px;
  }
}

body.home .news .articles {
  border-bottom: solid 1px #ccc;
  margin: 0 auto;
  width: 700px;
}
@media screen and (max-width: 768px) {
  body.home .news .articles {
    width: auto;
  }
}

body.home .news article {
  border-top: solid 1px #1859ea;
  padding: 37px 0;
}
@media screen and (max-width: 768px) {
  body.home .news article {
    padding: 20px 0;
  }
}

body.home .news article header {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  body.home .news article header {
    margin-bottom: 1em;
  }
}

body.home .news article header time {
  color: #1b1b87;
  display: inline-block;
  font-size: 1.29em;
  font-weight: bold;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  body.home .news article header time {
    font-size: 15px;
  }
}

body.home .news article header .category {
  border: solid 2px #1b1b87;
  color: #1b1b87;
  display: inline-block;
  font-size: 0.86em;
  font-weight: bold;
  height: 23px;
  line-height: 23px;
  margin: 0 15px;
  padding: 0 12px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  body.home .news article header .category {
    font-size: 10px;
    height: 20px;
    line-height: 20px;
  }
}

body.home .news article header h1 {
  color: #1b1b87;
  font-size: 1.26em;
  display: inline-block;
  line-height: 1.4;
  max-width: 490px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  body.home .news article header h1 {
    font-size: 14px;
    display: block;
    margin-top: .5em;
    max-width: initial;
    max-width: auto;
  }
}

@media screen and (max-width: 768px) {
  body.home .news article  img {
    max-width: 100%;
  }

  body.home .news article  .news-image-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  body.home .news article  .news-image-group > img {
    margin: 1em 0;
  }
}


/**
 * Lower Page Design（下層ページベースデザイン）
 *------------------------------------*/
body.page #header-title {
  background: #1b1b87 url(images/keyvisual.png) no-repeat center;
  height: 100px;
}
@media screen and (max-width: 768px) {
  body.page #header-title {
    height: auto;
  }
}

body.page #header-title h2 {
  color: #fff;
  font-size: 1.71em;
  height: 100px;
  letter-spacing: 3px;
  line-height: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.page #header-title h2 {
    font-size: 1.4em;
    height: auto;
    letter-spacing: normal;
    line-height: 1.4;
    padding: 2em 1em;
  }
}

body.page #main-body {
  background: #fff;
  box-sizing: border-box;
  margin: 50px auto 100px;
  padding: 50px;
  width: 960px;
}
@media screen and (max-width: 768px) {
  body.page #main-body {
    padding: 30px 20px 100px;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}

body.form #main-body {
  width: 800px;
}
@media screen and (max-width: 768px) {
  body.form #main-body {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}


/**
 * Individual Design（ページ個別デザイン）
 *------------------------------------*/

/* transaction.html */
body.transaction #main-body h1 {
  color: #1b1b87
}

body.transaction #main-body > section > h1 {
  font-size: 1.71em;
  line-height: 1.0;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.transaction #main-body > section > h1 {
    line-height: 1.4;
    margin-bottom: 1em;
  }
}

body.transaction #main-body > section > h1 + p {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  body.transaction #main-body > section > h1 + p {
    margin-bottom: 30px;
  }
}

body.transaction #main-body > section > h1 + p + section {
  border-top: solid 1px #ccc;
}

body.transaction #main-body section section {
  border-bottom: solid 1px #ccc;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  body.transaction #main-body section section {
    padding: 30px 0;
  }
}

body.transaction #main-body section section h1 {
  font-size: 1.29em;
  line-height: 1.0;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  body.transaction #main-body section section h1 {
    line-height: 1.3;
    margin-bottom: 30px;
  }
}

body.transaction #main-body section section + p {
  margin-top: 50px;
}

body.transaction #main-body section section p strong {
  color: #c61c24;
  font-weight: normal;
}

body.transaction .rohs ul li {
  margin-left: 15px;
  position: relative;
}

body.transaction .rohs ul li:before {
  content: '■';
  display: inline-block;
  left: -15px;
  position: absolute;
  top: -2px;
}

body.transaction .for-maker ul {
  margin: 30px 0;
}


/* kaishaanai.html */
body.kaishaanai #main-body ul {
  border-top: solid 1px #ccc;
  margin-top: 45px;
}

body.kaishaanai #main-body li {
  border-bottom: solid 1px #ccc;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.kaishaanai #main-body li {
    padding: 10px 0;
  }
}

body.kaishaanai #main-body li > span {
  display: block;
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  body.kaishaanai #main-body li > span {
    padding: 0;
  }
}

body.kaishaanai #main-body li .item-name {
  float: left;
}
@media screen and (max-width: 768px) {
  body.kaishaanai #main-body li .item-name {
    float: none;
  }

  body.kaishaanai #main-body li .item-name::before {
    background: currentColor;
    content: '';
    display: inline-block;
    height: 1em;
    margin-right: 3px;
    vertical-align: middle;
    width: 3px;
  }
}

body.kaishaanai #main-body li .item-body {
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  body.kaishaanai #main-body li .item-body {
    margin-left: 0;
  }
}

body.kaishaanai #main-body li .item-body iframe {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  body.kaishaanai #main-body li .item-body iframe {
    width: 100%;
  }
}

/* backnumber.html */
body.backnumber #main-body > ul {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.backnumber #main-body > ul {
    margin-top: 25px;
  }
}

body.backnumber #main-body > ul li {
  display: inline-block;
  margin: 0 25px;
}
@media screen and (max-width: 768px) {
  body.backnumber #main-body > ul li {
    display: block;
    margin: 0 25px 1em;
  }
}

body.backnumber #main-body > ul a {
  background: #000;
  color: #fff;
  display: block;
  height: 68px;
  line-height: 68px;
  text-align: center;
  text-decoration: none;
  width: 200px;
}
@media screen and (max-width: 768px) {
  body.backnumber #main-body > ul a {
    height: 4em;
    line-height: 4em;
    width: auto;
  }
}

body.backnumber #main-body > ul a:before {
  content: url(images/arrow_bottom_blue.png);
  display: inline-block;
  height: 4px;
  line-height: 4px;
  margin-right: 10px;
  vertical-align: 3px;
  width: 7px;
}


body.backnumber #main-body > section {
  border-top: solid 1px #ccc;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  body.backnumber #main-body > section {
    margin-top: 30px;
  }
}

body.backnumber #main-body > section h1 {
  color: #1859ea;
  font-size: 1.29em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  body.backnumber #main-body > section h1 {
    margin-top: 30px;
  }
}

body.backnumber #main-body > section h2 {
  color: #1859ea;
  font-size: 1em;
  margin-top: 50px;
}

body.backnumber #main-body > section table {
  border-collapse: collapse;
  width: 100%;
}

body.backnumber #main-body > section table th,
body.backnumber #main-body > section table td {
  border: solid 1px #ccc;
  line-height: 1.71;
  padding: 10px 15px;
  vertical-align: top;
}

body.backnumber #main-body > section table th {
  background: #ededed;
  font-weight: normal;
  text-align: left;
  width: 120px;
}
@media screen and (max-width: 768px) {
  body.backnumber #main-body > section table th {
    width: 4em;
  }
}

body.backnumber #main-body > section table th figure {
  margin-top: 5px;
  text-align: center;
}


/* tokusenhin.html */
body.tokusenhin #main-body strong {
  color: #c61c24;
  font-weight: normal;
}

body.tokusenhin #main-body #items {
  border-color: #ccc;
  border-style: solid;
  border-width: 1px 0;
  margin: 50px 0;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  body.tokusenhin #main-body #items {
    margin: 30px 0;
    padding: 30px 0;
  }
}

body.tokusenhin #main-body #items ul {
  margin-top: 45px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.tokusenhin #main-body #items ul {
    margin-top: 20px;
  }
}

body.tokusenhin #main-body #items li {
  float: left;
  margin: 25px 0 0 25px;
}
@media screen and (max-width: 768px) {
  body.tokusenhin #main-body #items li {
    float: none;
    margin: 0 0 15px;
  }
}

@media screen and (min-width: 769px) {
  body.tokusenhin #main-body #items li:nth-child(-n+3) {
    margin-top: 0;
  }

  body.tokusenhin #main-body #items li:nth-child(3n+1) {
    margin-left: 0;
  }
}

body.tokusenhin #main-body #items a {
  background: #000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: block;
  height: 68px;
  line-height: 68px;
  padding-left: 15px;
  text-decoration: none;
  width: 250px;
}
@media screen and (max-width: 768px) {
  body.tokusenhin #main-body #items a {
    height: 4em;
    line-height: 4em;
    width: auto;
  }
}

body.tokusenhin #main-body #items a:before {
  content: url(images/arrow_right_red.png);
  display: inline-block;
  height: 7px;
  line-height: 7px;
  margin-right: 10px;
  vertical-align: 2px;
  width: 4px;
}

body.tokusenhin #main-body #items + p {
  border-bottom: solid 1px #ccc;
  font-size: 0.86em;
  padding-bottom: 45px;
}

/* katarogu.html */
body.katarogu #main-body {
  width: 960px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body {
    width: auto;
  }
}


body.katarogu #main-body h1 {
  color: #1b1b87
}

body.katarogu #main-body > section > h1 {
  font-size: 1.71em;
  line-height: 1.0;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body > section > h1 {
    font-size: 1.4em;
  }
}

body.katarogu #main-body > .products > h1 {
  line-height: 1.0;
  margin: 0;
}

body.katarogu .products > h1 + p {
  margin-top: 10px;
  text-align: center;
}

body.katarogu .products .grid {
  border-collapse: collapse;
  margin: 60px 0 20px 0;
  width: 100%;
}

body.katarogu .products .grid td {
  border-color: #fff;
  border-style: solid;
  border-width: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  body.katarogu .products .grid,
  body.katarogu .products .grid tbody,
  body.katarogu .products .grid tr,
  body.katarogu .products .grid td {
    display: block;
  }

  body.katarogu .products .grid {
    margin: 2em 0 2em -10px;
    width: auto;
  }

  body.katarogu .products .grid tbody {
    overflow: hidden;
  }

  body.katarogu .products .grid td {
    border: none;
    display: block;
    float: left;
    margin: 10px 0 0 10px;
    width: calc((100% - 30px) / 3);
  }
}

body.katarogu .products .grid tr:first-child td {border-top: none;}
body.katarogu .products .grid td:first-child {border-left: none;}
body.katarogu .products .grid td.empty {background: none;}

body.katarogu .products td a {
  background: #1859ea url(images/arrow_right_white.png) no-repeat 15px center;
  color: #fff;
  display: block;
  height: 68px;
  padding-left: 30px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  body.katarogu .products td a {
    background-image: none;
/* 2020/02/20    height: 4em; */
    height: 6em;    
    padding: 0;
    text-align: center;
  }
}

body.katarogu .products td a:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

body.katarogu .products td a span {
  display: inline-block;
  line-height: 1.57;
  vertical-align: middle;
}

body.katarogu .products td.new a:after {
  background: #e74c3c;
  content: 'NEW';
  display: inline-block;
  font-size: 0.7em;
  left: 0;
  line-height: 1.4;
  padding: 0 3px;
  position: absolute;
  top: 0;
}

body.katarogu #btn-search {
  display: block;
  height: 90px;
  line-height: 88px;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  body.katarogu #btn-search {
    height: auto;
    line-height: 1.4;
    padding: 2em 1em;
    width: auto;
  }

  body.katarogu #btn-search::before {
    right: 10px;
    top: 10px;
  }
}

body.katarogu #btn-search > span {
  display: inline-block;
  font-size: 1.36em;
  font-weight: bold;
  line-height: 1.0;
  vertical-align: middle;
}

body.katarogu #btn-search > span:before {
  content: url(images/arrow_right_blue.png);
  display: inline-block;
  height: 7px;
  line-height: 7px;
  margin-right: 10px;
  vertical-align: 2px;
  width: 4px;
}
@media screen and (max-width: 768px) {
  body.katarogu #btn-search > span {
    font-size: 1.2em;
  }

  body.katarogu #btn-search > span::before {
    display: none;
  }
}

body.katarogu #btn-search .logo {
  display: inline-block;
  line-height: 1.0;
  margin-left: 23px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  body.katarogu #btn-search .logo {
    margin: 1em 0 0;
  }
}

body.katarogu #btn-search .logo small {
  color: #000;
  display: block;
  font-size: 0.71em;
  margin-top: 8px;
}

body.katarogu #main-body > .katarogu-list {
  margin: 30px auto 0 auto;
  width: 800px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body > .katarogu-list {
    margin-top: 10px;
    width: auto;
  }
}

body.katarogu #main-body > .katarogu-list > h1 + p {
  margin-bottom: 45px;
}

body.katarogu #main-body > .katarogu-list > h1 + p + section {
  border-top: solid 1px #ccc;
}

body.katarogu #main-body .katarogu-list section {
  border-bottom: solid 1px #ccc;
  overflow: hidden;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body .katarogu-list section {
    padding-top: 30px;
  }
}

body.katarogu #main-body .katarogu-list section .summary {
  float: left;
  width: 540px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body .katarogu-list section .summary {
    float: none;
    width: auto;
  }
}

body.katarogu #main-body .katarogu-list section .summary h1 {
  font-size: 1.29em;
  line-height: 1.0;
}

body.katarogu #main-body .katarogu-list section .summary p {
  line-height: 1.86;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body .katarogu-list section .summary p {
    margin-top: 20px;
  }
}

body.katarogu #main-body .katarogu-list section .summary .download {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body .katarogu-list section .summary .download {
    margin-top: 20px;
    text-align: center;
  }
}

body.katarogu #main-body .katarogu-list section .summary .download .pdf {
  background: #000;
  color: #fff;
  display: inline-block;
  font-size: 1.14em;
  height: 46px;
  line-height: 46px;
  margin-left: 19px;
  padding: 0 22px 0 22px;
  text-decoration: none;
}

body.katarogu #main-body .katarogu-list section .images .download .pdf {
  background: #000;
  color: #fff;
  display: inline-block;
  font-size: 1.14em;
  height: 46px;
  line-height: 46px;
  margin-left: 19px;
  padding: 0 22px 0 22px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body .katarogu-list section .summary .download .pdf {
    display: inline-block;
    font-size: 1em;
    height: auto;
    line-height: 1.2;
    margin: 1em 0 0;
    padding: 1em;
  }
}

.tokkabikou{
  margin: 50px 0;
  padding: 37px 0;
  border-bottom: solid 1px #ccc;
  border-top: solid 1px #ccc;
}

.nakasen{
  margin: 50px 0;
  border-bottom: solid 1px #ccc;
}

.config{
   padding-top:15px;
}

body.katarogu #main-body section section .summary .download .pdf:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body section section .summary .download .pdf:first-child {
    margin-top: 0;
  }
}

body.katarogu #main-body section section .summary .download .pdf:before {
  content: url(images/icon_pdf.png);
  display: inline-block;
  height: 32px;
  line-height: 32px;
  margin-right: 11px;
  vertical-align: middle;
  width: 32px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body section section .summary .download .pdf:before {
    background: url(images/icon_pdf.png) no-repeat center/contain;
    content: '';
    height: 16px;
    margin-right: 5px;
    width: 16px;
  }
}

body.katarogu #main-body section section .summary .download .pdf small {
  display: inline-block;
  font-size: 0.69em;
  line-height: 1.45;
  margin-right: 23px;
  vertical-align: middle;
}


body.katarogu #main-body section section .images {
  float: right;
  width: 220px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body section section .images {
    float: none;
    margin-top: 30px;
    text-align: center;
    width: auto;
  }

  body.katarogu #main-body section section .images img {
    max-width: 100%;
  }

  body.katarogu #main-body section section .images > img + img {
    margin-top: 1em;
  }
}

body.katarogu #main-body section section .images .wrapper {
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body section section .images .wrapper + .wrapper {
    margin-top: 20px;
  }
}

body.katarogu #main-body section section .images .wrapper img {
  float: left;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body section section .images .wrapper img {
    float: none;
  }
}

body.katarogu #main-body section section .images .wrapper span {
  display: block;
  font-size: 0.93em;
  line-height: 1.62;
  margin-left: 94px;
}
@media screen and (max-width: 768px) {
  body.katarogu #main-body section section .images .wrapper span {
    margin: .5em 0 0;
  }
}

body.katarogu #main-body section section .images .wrapper:first-child {
  margin-top: 0;
}

/* special/*.html */
body.special #main-body {
  width: 960px;
}
@media screen and (max-width: 768px) {
  body.special #main-body {
    width: auto;
  }
}

body.special #main-body > section {
  position: relative;
}

body.special #main-body > section > h1 {
  color: #1859ea;
  font-size: 1.71em;
  line-height: 1.0;
  text-align: center;
}

body.special #main-body > section > .btn-others {
  background: #1859ea;
  -moz-box-sizing: border-box;
  -webkit-box-szing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 0.93em;
  height: 48px;
  line-height: 48px;
  padding-left: 15px;
  position: absolute;
  right: 0;
  top: -10px;
  text-decoration: none;
  width: 266px;
}
@media screen and (max-width: 768px) {
  body.special #main-body > section > .btn-others {
    position: static;
  }
}

body.special #main-body > section > .btn-others:before {
  content: url(images/arrow_right_white.png);
  display: inline-block;
  height: 7px;
  line-height: 7px;
  margin-right: 10px;
  vertical-align: 2px;
  width: 4px;
}

body.special #main-body > section table {
  border-collapse: collapse;
  margin-top: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.special #main-body > section table {
    margin-top: 30px;
  }
}

body.special #main-body > section table thead th {
  background: #ededed;
  border: solid 1px #ccc;
  font-size: 0.93em;
  font-weight: normal;
  line-height: 1.77;
  padding: 8px  10px;
  white-space: nowrap;
}

body.special #main-body > section table thead th[colspan] {
  font-size: 0.86em;
}

.glaycolor{
background: #ededed;
}

body.special #main-body > section table tbody td {
  border: solid 1px #ccc;
  font-size: 0.93em;
  line-height: 1.5;
  padding: 5px 10px;
/*20151207
  line-height: 1.85;
  padding: 15px 10px;
*/
  text-align: center;
  /* white-space: nowrap; */
}

body.special #main-body > section table tbody td strong,
body.special #main-body > section table tbody td small {
  display: block;
}

body.special #main-body > section table tbody td strong {
  color: #c61c24;
}

body.special #main-body > section table tbody td small {
  font-size: 0.86em;
}

body.special #main-body > section table tbody td:nth-child(1) strong {
  text-align: left;
}

body.special #main-body > section table tbody td:nth-child(5) strong {
  font-size: 1.29em;
}

body.special #main-body > section table tbody td:nth-child(5) .discount {
  text-decoration: line-through;
}

body.special #main-body > section table tbody td:nth-child(5) .discount + small {
  color: #c61c24;
}

body.special #main-body > section table tbody td:nth-child(6) {
  text-align: left;
}

body.special #main-body > section table tbody td:nth-child(6) a {
  color: #000;
  display: block;
  line-height: 1.46;
}

/* contact.php */
body.contact #main-body p:first-child {
  border-bottom: solid 1px #ccc;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

body.contact #main-body .form-tbl p:first-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

body.contact #main-body .form-tbl textarea[name="message"] {
  height: 360px;
  resize: vertical;
}

/* mitsumori.php */
body.mitsumori #main-body > h1 {
  color: #1b1b87;
  font-size: 1.71em;
  line-height: 1.0;
  margin-bottom: 50px;
  text-align: center;
}

body.mitsumori #main-body p:first-child {
  border-bottom: solid 1px #ccc;
  margin-bottom: 45px;
  padding-bottom: 50px;
}

body.mitsumori #main-body p:first-child + p {
  border-bottom: solid 1px #ccc;
  font-size: 0.86em;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

body.mitsumori #main-body .form-tbl .remarks ul {
  line-height: 1.71;
}

body.mitsumori #main-body .form-tbl .remarks ul li {
  padding-left: 20px;
  position: relative;
}

body.mitsumori #main-body .form-tbl .remarks ul li:before {
  content: '○';
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

body.mitsumori #main-body .form-tbl .remarks p {
  line-height: 1.71;
  margin-top: 1em;
}

body.mitsumori #main-body .form-tbl p:first-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* tyumonsyo.php */
body.tyumonsyo .pagelink {
  border-bottom: solid 1px #ccc;
  margin-bottom: 50px;
  padding-bottom: 50px;
  text-align: center;
}

body.tyumonsyo .pagelink a {
  background: #000;
  color: #fff;
  display: inline-block;
  height: 68px;
  line-height: 68px;
  text-align: center;
  text-decoration: none;
  width: 500px;
  border: double 3px;
}
@media screen and (max-width: 768px) {
  body.tyumonsyo .pagelink a {
    height: auto;
    line-height: 1.6;
    padding: 1em 2em;
    width: auto;
  }
}

body.tyumonsyo .pagelink a:before {
  background: url(images/arrow_bottom_blue.png) no-repeat center;
  content: '';
  display: inline-block;
  height: 4px;
  margin-right: 10px;
  vertical-align: middle;
  width: 7px;
}
@media screen and (max-width: 768px) {
  body.tyumonsyo .pagelink a::before {
    display: none;
  }
}

body.tyumonsyo .pagelink p {
  line-height: 1.7;
  margin-top: 30px;
}

body.tyumonsyo .pagelink p span {
  display: inline-block;
  text-align: left;
}

body.tyumonsyo #main-body > section > h1 {
  color: #1b1b87;
  font-size: 1.71em;
  line-height: 1.0;
  text-align: center;
}

body.tyumonsyo #main-body > section > h1 + ul {
  font-size: 0.86em;
  margin: 50px 0;
}

body.tyumonsyo #main-body > section > h1 + ul li {
  margin-top: 1em;
  padding-left: 20px;
  position: relative;
}

body.tyumonsyo #main-body > section > h1 + ul li:before {
  content: '※';
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

body.tyumonsyo #main-body > section > h1 + ul li:first-child {
  margin-top: 0;
}

body.tyumonsyo #main-body > section > section {
  border-top: solid 1px #ccc;
}

body.tyumonsyo #main-body > section > section h1 {
  font-size: 1.29em;
  color: #1b1b87;
  margin: 50px 0;
}

body.tyumonsyo #main-body > section > section h1 small {
  color: #000;
  display: inline-block;
  font-size: 0.78em;
  font-weight: normal;
  margin-left: 20px;
  vertical-align: middle;
}

body.tyumonsyo #main-body > section > section h2 {
  color: #1b1b87;
  font-size: 1em;
  margin-top: 50px;
}

body.tyumonsyo #main-body > section > section table {
  border-collapse: collapse;
  margin-top: 5px;
  width: 100%;
}

body.tyumonsyo #main-body > section > section table th,
body.tyumonsyo #main-body > section > section table td {
  border: solid 1px #ccc;
  line-height: 1.71;
  padding: 15px 15px;

}

body.tyumonsyo #main-body > section > section table th {
  background: #ededed;
  font-weight: normal;
  white-space: nowrap;
}

body.tyumonsyo #main-body > section > section table thead th {
  line-height: 1.0;
}

body.tyumonsyo #main-body > section > section table tbody th {
  padding-right: 0;
  text-align: left;
}

body.tyumonsyo #main-body > section > section table tbody td {
  text-align: center;
  vertical-align: top;
}

body.tyumonsyo #main-body > section > section table tbody td h3 {
  background: #ededed;
  font-size: 1.0em;
  font-weight: normal;
  height: 36px;
  line-height: 36px;
  margin-bottom: 15px;
  padding: 0 15px;
  text-align: center;
  white-space: nowrap;
}

body.tyumonsyo #main-body > section > section table tbody td small {
  display: block;
  margin-top: 5px;
}

body.tyumonsyo #main-body > section > section table tr > th:first-child {
  width: 85px;
}
@media screen and (max-width: 768px) {
  body.tyumonsyo #main-body > section > section table tr > th:first-child {
    padding: 1em;
    width: auto;
  }
}

body.tyumonsyo #main-body > section > section table + p {
  font-size: 0.86em;
  margin: 20px 0 50px 0;
}

body.tyumonsyo #main-body > section > section table + p strong {
  color: #c61c24;
  font-weight: normal;
}

body.tyumonsyo #main-body .form-tbl .remarks ul {
  line-height: 1.71;
}

body.tyumonsyo #main-body .form-tbl .remarks ul li {
  padding-left: 20px;
  position: relative;
}

body.tyumonsyo #main-body .form-tbl .remarks ul li:before {
  content: '○';
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

body.tyumonsyo #main-body .form-tbl .remarks p {
  line-height: 1.71;
  margin-top: 1em;
}

body.tyumonsyo #main-body .form-tbl p:first-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

body.tyumonsyo #attention {
  border-top: solid 1px #ccc;
  margin-top: 50px;
  padding-top: 50px;
}

/* sent.html */
body.sent #main-body {
  text-align: center;
}

body.sent #main-body p:first-child {
  background: url(images/sent.png) no-repeat center top;
  font-size: 1.4em;
  padding-top: 150px;
}

body.sent #main-body small {
  background: #f3f3f3;
  border: solid 1px #ccc;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.8;
  margin: 30px 0 50px 0;
  padding: 20px;
}


/* otoiawase.html */
body.otoiawase #main-body > .wrapper {
  overflow: hidden;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  body.otoiawase #main-body > .wrapper {
    padding-bottom: 0;
  }
}

body.otoiawase #main-body > .wrapper > section {
  float: left;
  margin-left: 40px;
  width: 240px;
}
@media screen and (max-width: 768px) {
  body.otoiawase #main-body > .wrapper > section {
    float: none;
    margin: 0;
    width: auto;
  }

  body.otoiawase #main-body > .wrapper > section + section {
    margin-top: 50px;
  }
}

body.otoiawase #main-body > .wrapper > section:first-child {
  margin-left: 0;
}

body.otoiawase #main-body > .wrapper > section > h1 {
  border: solid 1px #1859ea;
  color: #1b1b87;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.0;
  margin-bottom: 15px;
  padding: 80px 0 20px 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.otoiawase #main-body > .wrapper > section > h1 {
    font-size: 120%;
    font-weight: bold;
    padding: 1em 0 1em 1em;
    text-align: left;
  }
}

body.otoiawase #main-body > .wrapper > section > h1:before {
  display: block;
  height: 36px;
  left: 96px;
  line-height: 36px;
  position: absolute;
  top: 25px;
  width: 36px;
}
@media screen and (max-width: 768px) {
  body.otoiawase #main-body > .wrapper > section > h1:before {
    display: inline-block;
    height: 18px;
    line-height: 18px;
    margin-right: 5px;
    position: static;
    vertical-align: middle;
    width: 18px;
  }
}

body.otoiawase #main-body > .wrapper > .form > h1:before {content: url(images/icon_inquiry_form.png);}
body.otoiawase #main-body > .wrapper > .tel > h1:before {content: url(images/icon_inquiry_tel.png);}
body.otoiawase #main-body > .wrapper > .mail > h1:before {content: url(images/icon_inquiry_mail.png);}
@media screen and (max-width: 768px) {
  body.otoiawase #main-body > .wrapper > .form > h1:before,
  body.otoiawase #main-body > .wrapper > .tel > h1:before,
  body.otoiawase #main-body > .wrapper > .mail > h1:before {
    content: '';
  }

  body.otoiawase #main-body > .wrapper > .form > h1:before {background: url(images/icon_inquiry_form.png) no-repeat center/contain;}
  body.otoiawase #main-body > .wrapper > .tel > h1:before {background: url(images/icon_inquiry_tel.png) no-repeat center/contain;}
  body.otoiawase #main-body > .wrapper > .mail > h1:before {background: url(images/icon_inquiry_mail.png) no-repeat center/contain;}
}

body.otoiawase #main-body > .wrapper > section > h1 + p {
  line-height: 1.79;
}

body.otoiawase #main-body > .wrapper > section address {
  font-style: normal;
}

body.otoiawase #main-body > .wrapper > section ul {
  margin-top: 25px;
}

body.otoiawase #main-body > .wrapper > section ul li {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  body.otoiawase #main-body > .wrapper > section ul li {
    margin-top: 1em;
  }
}

body.otoiawase #main-body > .wrapper > section ul li:first-child {
  margin-top: 0;
}

body.otoiawase #main-body > .wrapper > section ul li a {
  background: #000;
  color: #fff;
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 21px;
  text-decoration: none;
}

body.otoiawase #main-body > .wrapper > section ul li a:before {
  content: url(images/arrow_right_blue.png);
  display: inline-block;
  height: 7px;
  line-height: 7px;
  margin-right: 10px;
  vertical-align: 1px;
  width: 4px;
}

body.otoiawase #main-body > .wrapper > section dt {
  background: #1859ea;
  color: #fff;
  height: 25px;
  line-height: 25px;
  margin-top: 30px;
  text-align: center;
}

body.otoiawase #main-body > .wrapper > section dd {
  color: #1b1b87;
  font-weight: bold;
  line-height: 1.0;
  margin-top: 13px;
  text-align: center;
  font-size: 16px;
}

body.otoiawase #main-body > .wrapper > .tel dd {
  font-size: 30px;
}

body.otoiawase #main-body > .wrapper > .mail dd + dt {
  margin-top: 46px;
}


/**
 * Plugin Customize（jQueryプラグインのスタイル上書き）
 *------------------------------------*/
.slide-container .bx-viewport {
  border: solid 1px #ccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  left: 0;
}

.slide-container .bx-viewport li {
  max-height: 399px;
}

.slide-container .bx-controls-direction a {
  height: 30px;
  margin-top: -15px;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .slide-container .bx-controls-direction a {
    display: none;
  }
}

.slide-container .bx-controls-direction .bx-prev {
  left: 0;
  background: url(plugins/bxslider/images/controls.png) no-repeat left center;
}

.slide-container .bx-controls-direction .bx-next {
  right: 0;
  background: url(plugins/bxslider/images/controls.png) no-repeat right center;
}

.slide-container .bx-pager {
  bottom: -32px;
  line-height: 1.0;
  padding: 0;
}

.slide-container .bx-pager .bx-pager-item a {
  background: #ccc;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 0 7px;
}

.slide-container .bx-pager .bx-pager-item a:hover,
.slide-container .bx-pager .bx-pager-item a.active {
  background: #1859ea;
}

/* law.html */
body.law #main-body h1 {
  color: #1859ea
}

body.law #main-body > section > h1 {
  font-size: 1.71em;
  line-height: 1.0;
  margin-bottom: 45px;
  text-align: center;
}

body.law .form-tbl th {
  width: initial;
  width: auto;
  white-space: nowrap;
}


/**
 * - N（追記）
 *------------------------------------*/
@media screen and (min-width: 769px) {
  body .articles {
    line-height: 1.4;
  }
}

body.kaishaanai h2 {
  font-size: 1.29em;
  color: #1b1b87;
/*   margin: 20px 0; */
}
.home
.articles strong {
	color: #c61c24;
    font-weight: bold;
}


/**
 * Overide auto complete
 *------------------------------------*/
.ui-autocomplete {
  background: #fff;
  border-radius: 0;
  border-top: none;
}

.ui-autocomplete .ui-menu-item {
  box-sizing: border-box;
  padding: 5px;
}

.ui-autocomplete .ui-state-focus {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #000;
  font-weight: normal;
}



.MWee_Banner img {
	width: 100%;
	padding-bottom: 30px;
	
}

@media screen and (max-width: 767px) {
  .MWee_Banner img {
	  max-width: 100%;}
  }


/**
 * topページ　ヘッダーバナー　スマホ表示しない pc文言表示しない
 *------------------------------------*/
#header-title h2.mb　{ 
	display:none;
	}



@media screen and (min-width: 768px) {
	
#header-title  h2.pc	{ 
	display:block;
}	
#header-title h2.mb  {
	  display:none;
}
  }
/*
@media screen and (max-width: 767px) {
	
#header-title  h2.pc	{ 
	display:none;
}	
#header-title h2.mb  {
	  display:block;
}
  }
*/

@media screen and (max-width: 767px) {
	
	#header-title  h2.pc img{
		 max-width: 100%;
         height: auto;
	}	
#header-title h2.mb  {
	  display:none;
}
	
}


/**
 * topページ　Products by Category スマホ色変える
 *------------------------------------*/

/*PCの時表示しない*/
@media (max-width: 768px) {
body.home .new-products-category_mb {
  border-left: solid 1px #acafb0;
  flex-grow: 0;
  width: 190px;
}
body.home .new-products-category1 {
	display:none;
}	
}	
	
@media (max-width: 768px) {
  body.home .new-products-category_mb  {
    border-left: none;
    border-top: solid 1px #acafb0;
    width: 100%;
  }
	
 body.home .new-products-category1 {
    display:none;
  }
}

@media (max-width: 768px) {
body.home .new-products-select_mb {
  border: none;
  line-height: 37px;
  height: 37px;
  width: 100%;
  -webkit-appearance: menulist-button;
  background: #acafb0;
  color: #fff;
  font-weight: bold;
  padding-left: 1em;
  font-size: 14px;
}
body.home .new-products-select1{
	display:none;
}
}

@media (min-width: 769px) {
body.home .new-products-category1 {
  border-left: solid 1px #1859ea;
  flex-grow: 0;
  width: 190px;
}
body.home .new-products-category_mb {
	display:none;
	}
}	
	
	
@media (min-width: 769px) {
body.home .new-products-select1 {
  border: none;
  line-height: 37px;
  height: 37px;
  width: 100%;
  -webkit-appearance: menulist-button;
  background: #1b1b87;
  color: #fff;
  font-weight: bold;
  padding-left: 1em;
  font-size: 14px;
}
body.home .new-products-select_mb {
	display:none;
	}
}

body.home .new-products-select1 {
  border: none;
  line-height: 37px;
  height: 37px;
  width: 100%;
  -webkit-appearance: menulist-button;
  background: #1b1b87;
  color: #fff;
  font-weight: bold;
  padding-left: 1em;
  font-size: 14px;
}

body.home .new-products-select_mb {
  border: none;
  line-height: 37px;
  height: 37px;
  width: 100%;
  -webkit-appearance: menulist-button;

  color: #fff;
  font-weight: bold;
  padding-left: 1em;
  font-size: 14px;
}



/*from DC to 86 GHz 製品ページ*/

      body.katarogu #main-body section section .summary .download .pdf:before{
        display: none;
      }
	 .new-products-list1 {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
	width: 100%;
}
	.new-products-item1{
	width: 20%;	
		}
	
  .new-products-item1 img{
	width: 50%;	
		}
	
.products-title2 h1{
	font-size: 10px!important;
		}
.products-title2{
	padding-bottom: 20px;
}

.products-title3{
	height: 100px;
}


@media (max-width: 768px) {
.products-title3{
	height: 130px;
	padding-bottom: 15px;
}
}
		
	.download2 .pdf {
	margin-top: 5px;
	background: #000;
    color: #fff;
    display: inline-block;
    font-size: 0.8em;
    height: 30px;
    line-height: 30px;
    padding: 0 15px 0 15px;
    text-decoration: none;	}

@media(max-width:767px){
	.download2 .pdf {
	margin-top: 5px;
	background: #000;
    color: #fff;
    display: inline-block;
    font-size: 1em;
    height: 30px;
    line-height: 30px;
    padding: 0 15px 0 15px;
    text-decoration: none;	}
	
}




	.download2 {
			text-align: center;
		margin-bottom: 40px;
		}

	.summary figure{
			text-align: center;
		}
		
.download3{
	padding-top: 10px!important;
}

@media(max-width:767px){
	.little{
display: none;
	}
	.little2 {
padding-bottom: 0px;
	}
	.little3{
	padding-bottom: 0px;	
	}
	.new-products-item1{
		width: 100%;
	}
	.download2 {
		margin-top: 15px;
	}
}

@media(max-width:767px){
	.products-title img{
		width: 110px;
	}
}

@media(max-width:767px){
	.products-title {
		padding-bottom: 10px!important;
		margin-left: 0px!important;
	}
}

@media(max-width:767px){
	.products-title p{
		font-size: 5px;
		padding-left: 0px;
	}
}

@media(max-width:767px){
	.products-title h1{
		padding-left: 0px;
	}
}

@media(max-width:767px){
	.products-title img{
		margin-right: 0px;
	}
}
/* 例：br.sp_brはタブレット以上のサイズでは非表示にする */
@media (min-width: 768px) {
  .sp_br{
    display: none;
  }
}




@media(max-width:767px){
	.phone-small{
		font-size: 13px!important;
	}
}

@media(max-width:767px){
	.products-title2 h1{
		font-size: 15px!important;
	}
}


.products-title{
	text-align: center;
	margin-bottom: 50px;
	border-bottom: solid 1px #ccc;
	padding-bottom: 30px;
	margin-left: 70px;
}

.products-title{
	img{
		padding-right: 30px!important;
	}
}


.little4{
	line-height: 1.5em; 
	font-size: 18px; 
	padding-bottom: 30px;
}

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: fixed;
    width: 100%;
	left: 0;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: fixed;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 40%;
}	
	

@media(max-width:767px){
	.modal__content{
    background: #fff;
    left: 50%;
    padding:15px!important;
    position: fixed;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%!important;
}
	

.box{
 float: left;
 width: 30.5%;
height: 270px;
 margin-left: 10px;
 margin-right: 10px;
position: relative;/*相対配置*/
vertical-align: top;
 border: 1px solid #DDDDDD;
 box-shadow: 1px 1px 5px 1px #DDDDDD;

}
	.sen{
	 border-bottom: 1px solid #DDDDDD;	
	}
	.text{
		padding: 10px;
		line-height: 20px;
		text-align: left;
	}
	
.box img{
 width: 90%;
padding: 10px 0px 10px 20px;
	}

.box a{
 text-decoration:none;
	}	
	
.boxContainer{
  overflow: hidden;
  width: 100%;
margin-bottom: 40px;
}
.btn-kaisetus2 {
  display: inline-block;
  padding: 0em 0.5em;
  text-decoration: none;
  background: #f7f7f7;
  border-left: solid 6px #1859ea;/*左線*/
  color: #1859ea;/*文字色*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-kaisetus2:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

.box  p {
  position: absolute;/*絶対配置*/
  color: #000000;/*文字は白に*/
  top: 5%;
  left: 5%;
  }


.right{
		text-align: right;
		padding-top: 20px;
        color: #BBBBBB;
	    font-size: 10px;
	}
.right2{
		text-align: right;
		padding-top: 40px;
        color: #BBBBBB;
	    font-size: 10px;
	}
}

@media(max-width:767px){
  .box{
    width: 95%;
    margin-bottom: 15px;
  }	
  .boxContainer{
    margin-bottom: 0px;	
  }
  .right{
      padding-top: 10px;
  }
  .right2{
      padding-top: 30px;
  }
}	

@media(min-width:768px) and (max-width:991px){	
  .main-body{
      width: 100%;
    }
  .MWee_Banner img {
      width: 100%;
      padding-bottom: 30px;
  }
  .box{
    width: 30%;	
  }
}





/* 追記 2021.03.31 */
.form-tbl th{
  position: relative;
}
.form-tbl [type="text"].input-zipcode{
  width: 150px;
}
.form-tbl th .small-inline{
  display: inline;
  margin: 0 0 0 5px;
}
table#suggest{
  width: 100%;
  margin-bottom: 5px;
}
table#suggest th:nth-of-type(1){
  width: 35%;
}
table#suggest th:nth-of-type(2){
  width: 15%;
}
table#suggest th:nth-of-type(3){
  width: 50%;
}
table#suggest th,
table#suggest td{
  border: 1px solid #ccc;
  padding: 5px;
}
table#suggest th{
  background: #ededed;
  line-height: 1;
  padding: 10px 0;
}
table#suggest th small{
  font-weight: normal;
}
table#suggest td em{
  padding: 0 15px;
}
table#suggest td input{
  border: none;
  -webkit-appearance: none;
  box-shadow: none;
  width: 100%;
  padding: 5px 15px;
  box-sizing: border-box;
}
table#suggest td:nth-of-type(2) input{
  text-align: right;
}
body.mitsumori #main-body .att p:first-child{
  margin: 0;
  border-bottom: none;
  padding-bottom: 10px;
}
.form-tbl [type="url"],
.form-tbl [type="tel"],
.form-tbl [type="email"]{
  border: solid 1px #ccc;
  -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%) inset;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%) inset;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 26px;
  line-height: 24px;
  padding: 0 15px;
}
.form-tbl [type="number"],
.form-tbl select{
  width: 175px;
  border: solid 1px #ccc;
  -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1) inset;
  -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%) inset;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%) inset;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 26px;
  line-height: 24px;
  padding: 0 15px;
  background-color: #fff;
}
.form-tbl span.enduser{
  display: inline-block;
  margin: 10px 0 3px;
}
.form-tbl select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
.form-tbl select::-ms-expand {
  display: block;
}
.product-count{
  text-align: right;
}
body.mitsumori #main-body .product-count p:first-child{
  background: #f3f3f3;
  padding: 5px 15px;
  display: inline-block;
  margin: 0;
  border-bottom: none;
  border-radius: 5px;
}
.scroll-table{
  height: 300px;
  overflow-y: scroll;
  margin: 0 0 20px;
  border-bottom: 1px dashed #ccc;
}
.pn-confirm.n1{
  margin-top: 20px;
}
.ui-autocomplete {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 20px;
}
p.add-att{
  margin-top: 20px;
}
form .pn.n1{
  margin-top: 0;
}
table#suggest td em.number-none,
table td em.tel-none,
table#suggest td em.model-none{
  display: none;
}
input:invalid + em.tel-none {
  display: block;
}
input[type="number"]::-webkit-outer-spin-button,  
input[type="number"]::-webkit-inner-spin-button {  
  -webkit-appearance: none;  
  margin: 0;  
}  
input[type="number"] {  
  -moz-appearance:textfield;  
} 
#confirm:disabled{
  pointer-events: none;
  background-color: gray;
}
.form-tbl td.input-name-adjust input[type="text"]{
  width: 150px;
}
.form-tbl td.input-address-adjust span{
  display: inline-block;
  width: 90px;
}
.form-tbl td.input-address-adjust span:not(:first-of-type){
  margin-top: 6px;
}
.form-tbl td.input-address-adjust input[type="text"]{
  width: calc(100% - 90px);
}
.form-tbl td.input-name-adjust span{
  margin-top: 6px;
  display: inline-block;
}
form .pn.mb-adjust{
  margin-bottom: 10px;
}
.form-tbl.form-tr{
  margin-bottom: 45px;
}
body.mitsumori #main-body p:first-child.note-require,
form .pn > p.note-require,
form .pn > p.add-att{
  margin: 0;
  border: none;
  padding: 0;
  font-size: 14px;
  padding-left: 0;
  line-height: 1.8;
}
body.mitsumori #main-body p:first-child + p.add-att{
  margin: 0;
  padding: 0;
  border: none;
  margin: 20px 0 10px;
  font-size: 14px;
}
body.mitsumori #main-body p:first-child.note-require{
  padding: 0 .5rem;
}
body.tyumonsyo p.note-require{
  margin-top: 10px;
  padding: 0 .5rem;
}
body.tyumonsyo p.add-att{
  margin-top: 10px;
  padding: 0 .5rem;
  margin: 20px 0 10px;
}
form .pn > p.note-require:before,
form .pn > p.add-att:before{
  display: none;
}
form .pn em.emessage{
  font-size: 14px;
}
body.mitsumori #main-body p:first-child.emessage,
body.tyumonsyo #main-body p:first-child.emessage{
  margin-bottom: 10px;
  font-size: 14px;
  border: none;
  padding: 0;
  color: #c61c24;
}

body.mitsumori #main-body > h1{
  margin-bottom: 0;
}
body.mitsumori #main-body #tg,
body.tyumonsyo #main-body #tg{
  padding-top: 50px;
}

@media screen and (max-width: 768px){
  table#suggest{
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  table#suggest td input{
    width: 200px;
  }
  table#suggest td:nth-of-type(2) input{
    width: 90px;
  }
}

/* 追記 2021.05.07 */
form .pn textarea.adjust-height{
  height: 100px;
}
body.innermitsumori{
  background-color: #f5a624;
}