@charset "UTF-8";

/* === 全体にかかる設定 =============== */

/* 基本設定 */
html {
  font-size: 16px;
}

body {
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* コンテナの左右の余白 */
.container {
  padding: 0 15px;
}

.content_area {
  position: relative;
  z-index: 4;
}

/* 画像の幅 */
img {
  width: 100%;
}


/* === ヘッダー =============== */

/* 上の三角形 */
.site_name {
  position: absolute;
  top: 0;
  left: 0;
  width: 84vw;
  height: 100px;
  background-color: #fff;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}

/* サイト名 */
.site_name a {
  display: inline-block;
  padding: 15px 15px 15px 10px;
  width: 220px;
}

.site_name a span {
  font-size: 1.6rem;
}

/* ハンバーガーアイコン */
.hamburger_icon {
  position: fixed;
  right: 10px;
  top: 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
  z-index: 999;
  margin: 0;
  padding: 10px;
  width: 55px;
  height: 55px;
  background-color: hsla(230, 83%, 31%, 0.7);
}

/* 3本の線 */
.hamburger_icon div {
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  transition: all 0.5s ease;
}

.hamburger_icon div:nth-child(4) {
  text-align: center;
  font-size: 0.7rem;
  line-height: 1;
  padding-bottom: 5px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0);
}

/* オープン時の動き */
.hamburger_icon.open {
  background-color: rgba(255, 255, 255, 0);
}

.hamburger_icon.open div:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger_icon.open div:nth-child(2) {
  opacity: 0;
}

.hamburger_icon.open div:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger_icon.open div:nth-child(4) {
  background-color: rgba(255, 255, 255, 0);
}

/* パネル */
.hamburger_panel {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.90);
  /* 非表示 */
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  z-index: 998;
  overflow-y: scroll;
}

/* パネルにチェックが付いたら */
.hamburger_panel.check {
  visibility: visible;
  opacity: 1;
}

/* パネル のデザイン */
.hamburger_panel {
  text-align: center;
  padding-top: 90px;
}

.hamburger_panel ul {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 5px 0 0 25px;
  padding: 0;
}

.hamburger_panel ul li {
  margin: 0 0 0 0;
  padding: 0;
}

.hamburger_panel ul li a {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger_panel ul li a:link {
  color: #fff!important;
  text-decoration: none;
}

.hamburger_panel ul li a:visited {
  color: #fff!important;
}

.hamburger_panel ul li a:hover {
  color: #fc0!important;
}

.hamburger_panel ul li a:active {
  color: #f30!important;
}


/* === パン屑リスト =============== */

.breadcrumbs {
  margin-bottom:50px;
}

.breadcrumbs ul {
  font-size: 0.85rem;
  margin: 0;
  padding: 7px 10px;
  text-align: right;
  background-color: #44558e;
  line-height: 1;
}

.breadcrumbs ul li {
  margin-left: 0;
  display: inline-block;
}

.breadcrumbs ul li::after {
  content: ">";
  color: #fff;
  opacity: 0.5;
}


.breadcrumbs ul li:last-child::after {
  display: none;
}

.breadcrumbs ul li a,
.breadcrumbs ul li:last-child {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #fff;
}

.breadcrumbs ul li:first-child a {
  padding-left: 0;
}


/* === 本文（メインコンテンツ部分） =============== */

/* 見出し */
h1:not(.site_name)  {
  margin: 0;
  padding: 140px 10px 30px 10px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(#0d238f, #1b2c84);

}

h2 {
  margin: 2rem 0;
  padding: 0.2rem 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #071974;
  border-left: 8px solid #0d238f;
  background-color: #edeffa;
}

h3 {
  margin: 1rem 0;
  padding-left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0d238f;
  border-bottom: 2px solid #0d238f;

}

h4 {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

h5 {
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* 強調 */
strong {
  color: #f00;
  font-weight: bold;
}

/* 導入文 */
.lead {
  font-size: 1.2rem;
  text-align: center;
  color: #009900;
  font-family: "M PLUS 2", sans-serif;
  margin: 3rem 0;
}

/* 囲み */
.kakomi {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid #ccc;
}

.kakomi h5 {
  margin: 0 0 1rem 0;
}

.kakomi p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.kakomi p:last-child {
  margin-bottom: 0;
}

/* 注釈 */
.hosoku {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.hosoku ul {
  margin: 2rem 0;
  list-style: none;
}

.hosoku li {
  margin-left: 1rem;
  margin-bottom: 0.3rem;
  text-indent: -1rem;
}

.hosoku li::before {
  content: '※';
  margin-right: 0.2rem;
}

/* テーブル */
table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
}

th,
td {
  padding: 0.5rem;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}

th {
  background-color: #ecf7fa;
  vertical-align: middle;
  font-weight: bold;
}


/* === ヘッダー =============== */


/* === フッター =============== */

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

footer {
  padding: 20px 0 20px 0;
  line-height: 1.5;
  font-size: 0.9rem;
  background-color: #0b1d52;
  color: #fff;
}

footer a {
  color: #fff;
}

.footer_bunkatsu {
  max-width: 1025px;
  margin: 0 auto;
  padding: 0 10px;
}

/* フッターサイトマップ */
.footer_sitemap {
  padding: 5px 0;
}

.footer_sitemap ul {
  margin-bottom: 1rem;
}

.footer_sitemap li {
  font-size: 0.9rem;
  margin-left: 2rem;
  margin-top: 0.7rem;
  list-style: none;
}

.footer_sitemap li ul {
  margin-bottom: 0;
}

.footer_sitemap li li {
  margin-left: 0rem;
}

.footer_sitemap li li::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 2px;
  background-color: #fff;
  opacity: 0.7;
  margin: auto 10px 5px 0;
}

.sitemap_bunkatsu {
  display: flex;
}

.sitemap_item {
  flex: 0 1 50%;
}

address {
  padding: 1rem 0 2rem 0;
}
address p {
  margin-bottom: 0;
  text-align: center;
}

.admin_name {
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
  font-weight: bold;
  width: 90%;
  
}
.admin_name a {
  color: #000000!important;
}

.copy_rights p {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  opacity: 0.6;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* === リンク色 =============== */

/* 標準 */
a:link {
  color: #36f;
  text-decoration: none;
}

a:visited {
  color: #69f;
}

a:hover {
  color: #f30;
}

a:active {
  color: #fc0;
}

/* 黒いリンク文字 */
.site_name a:link,
.main_menu a:link,
.admin_name a:link,
.news p a:link,
.jisseki_area a:link {
  color: #000;
  text-decoration: none;
}

.site_name a:visited,
.main_menu a:visited,
.admin_name a:visited,
.news p a:visited,
.jisseki_area a:visited {
  color: #000;
}

.site_name a:hover,
.main_menu a:hover,
.footer_sitemap a:hover,
.admin_name a:hover,
.news p a:hover,
.jisseki_area a:hover {
  color: #777;
}

.site_name a:active,
.main_menu a:active,
.footer_sitemap a:active,
.admin_name a:active,
.news p a:active,
.jisseki_area a:active {
  color: #aaa;
}

.footer_sitemap a:link,
.footer_sitemap a:visited {
  color: #fff;
}


/* === コンテンツメニュー =============== */


.content_menu {
  text-align: center;
  margin-bottom: 30px;
}

.content_menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  list-style: none;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.content_menu ul li {
  margin-left: 0;
}

.content_menu ul li a {
  display: block;
  padding: 0.7rem 0.5rem;
  background-color: #3a5eff;
  border: 1px solid #3a5eff;
  border-bottom: none;
  color: #ffffff;
}
.content_menu ul li a.active {
  background-color: #ffffff;
  color: #3a5eff;
}


/* === 分割 =============== */

.bun02_item {
  padding: 10px;
}

.bun03_item {
  padding: 10px;
}

/* === 戻るボタン =============== */

.back_btn {
  text-align: center;
  margin: 3rem 0;
}

.back_btn a {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  color: #3a5eff !important;
  border: unset;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #3a5eff;
}

.back_btn a:hover {
  color: #fff !important;
  background-color: #3a5eff;
}


/* === 事業内容 =============== */

.jigyou_img {
  margin-bottom: 30px;
}


/* === おもな実績 =============== */

.jisseki_area figure {
  overflow: hidden;
  margin: 0 0 10px 0;
  padding: 0;
}

.jisseki_area a img {
  transition: all 0.3s;
}

.jisseki_area h3 {
  margin-top: 0;
}

@media (min-width:750px) {

.jisseki_area a:hover img {
  transform: scale(1.1);
}
}
  
@media (max-width:750px) {

  .jisseki_area {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
    margin-top: -1rem;
  }

  .jisseki_area .top_bunkatsu .bun02_item {
  flex: 0 1 50%;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -1rem;
  font-size: 0.9rem;
}

}

.jisseki_area span {
  color: #3a5eff;
  font-size: 0.9rem;
}

.kouji_keireki div {
  overflow-x: auto;
  padding-bottom: 0px;
}

.kouji_keireki .hosoku {
  margin-bottom:0;
}
.kouji_keireki .hosoku p {
  margin-bottom: 10px;
}

.kouji_keireki table {
  border: 0 solid;
}

.kouji_keireki table tr th {
  background-color: #7a8ba1;
  color: #fff;
  border: 0 solid;
}

.kouji_keireki table tr:nth-child(odd){
  background-color: #ecf7fa;
}

.kouji_keireki table {
  border-collapse: collapse;
  white-space: nowrap;
}

.contact.jisseki_contact {
  background-color: #eeeeee;
  margin: 30px 0 0 0;
  padding: 40px 0 20px 0;
}

.contact.jisseki_contact h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 30px 0;
  padding:0;
  border: none;
  background-color: #eeeeee;
}


/* === 会社案内 共通 =============== */

.about_table,
.history_table {
  max-width: 980px;
  margin: 0 auto;
}


/* === 代表挨拶 =============== */

.message_area {
  margin: 0 auto;
}

.message_area .lead {
  text-align: center;
}

.message_img img {
  max-width: 250px;
  margin: 0 auto 30px;
  border-radius: 10px;
  filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.5));
}

.message_sign {
  text-align: right;
}

.message_sign span {
  font-size:1.4rem;
  font-weight: bold;
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}


/* === 会社情報 =============== */

.about_table {
  margin-top: 2rem;
}

.about_table th {
  width: 30%;
  text-align: left;
  border-right: 0 solid;
  border-top: 0 solid;
  border-bottom: 1px solid #ccc;
  border-left: 0 solid;
  background-color: transparent;
  padding-left: 1rem;
}

.about_table td {
  border-right: 0 solid;
  border-top: 0 solid;
  border-bottom: 1px solid #ccc;
  border-left: 0 solid;
}

.about_table table tr:nth-child(odd){
  background-color: #ecf7fa;
}

.about_table ul {
  margin: 0;
}

.about_img img {
  max-width:250px;
  margin: 10px auto 30px auto;
}

.about_box {
  position: relative;
  margin: 3rem 0;
  padding: 2em 1em 1.5em 1em;
  border: solid 2px #122877;
}
.about_box .text_center {
  font-size: 0.8rem;
}
.about_box .tit {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #fff;
  color: #122877;
  font-weight: bold;
}
.about_box p {
  margin: 0; 
  padding: 0;
}
.sdgs h2 {
  border: none;
  text-align: center;
  background-color: transparent;
  margin-bottom: 1rem;
  padding: 0;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}

.sdgs p {
  font-size: min(3.7vw, 1rem);
  text-align: center;
  margin-bottom: 0;
  
}

.sdgs div:has(>img) {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

/* === 沿革 =============== */

.history_table th {
  width: 150px;
}

.history_img img {
  max-width:280px;
  margin: 10px auto;
}

.history_table .text_right {
  text-align: right;
  font-size: 0.8rem;
}

/* === アクセス =============== */

.access_area {
  margin-bottom: 30px;
}

.access_area p {
  margin: 0 0 1rem 0;
}


/* === ブログ =============== */

.blog_content {
  max-width: 700px;
  margin: 0 auto;
}

/* === メールフォーム =============== */

.form_area {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  background-color: #dcf1f7;
  padding: 1rem 1rem 1rem 1rem;
}

  /* 見出し */

.form_area  h3 {
  border: none;
  margin-bottom:0;
  padding-left: 0;
  
}

.form_area  h4 {
display: inline-block;
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 0;
}

.form_area  h5 {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 0;
}

/* 必須項目 */
.form_area  strong {
  color: #dd0000;
}

.form_angou {
  text-align: center;
}

/* グループ化 */
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
  border-radius: 10px;
}

/* フォーム入力欄 */
input[type="text"], input[type="email"], input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[name="郵便番号"] {
  width: unset;
}

/* ラジオボタンとチェックボックス */
input[type="radio"], input[type="checkbox"] {
  margin-left: 30px;
  margin-right: 10px;
}

/*フォームボタン*/
.form_btn {
  text-align: center;
}

input[type="submit"] {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-size: 1rem; /* どこかで小さくした？ */
  color: #fff;
  border: unset;
  border-radius: 5px;
  background-color: #0d238f;
}

input[type="submit"]:hover {
  background-color: #061563;
}

/* プルダウンメニュー */
select {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
}

/* 備考欄 */
textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  font-family: sans-serif;
  font-size: 0.9rem;
  border: 1px solid #ccc;
}


/* === 共通 お問い合わせ =============== */

.contact {
  background-color: #fff;
  margin-bottom: 50px;
}

.contact h2 {
  color: #333;
}

.contact p {
  text-align: center;
}

/* 電話 */
.contact .tel a {
  color: #333;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 3px;
}

/* メール */
.contact .mail a {
  display: block;
  background-color: #f10000;
  color: #fff;
  padding: 15px;
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
  letter-spacing: 1px;
}

/* 電話アイコン */
.tel a::before {
  display: inline-block;
  content: "";
  height: 25px;
  width: 25px;
  background: url(images/tel_icon.svg) no-repeat center;
  margin: auto 10px -1px 0;
}

/* メール */
.contact .mail a {
  display: block;
  background-color: #f10000;
  color: #fff;
  padding: 15px;
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
  letter-spacing: 1px;
}

/* メールアイコン */
.mail a::before {
  display: inline-block;
  content: "";
  height: 20px;
  width: 20px;
  background: url(images/mail_icon.svg) no-repeat center;
  margin: auto 10px -4px 0;
}

/* メール hover */
.contact .mail a:hover {
  filter: brightness(80%);
  transition: all 0.5s ease;
}



/* === メディアクエリ =============== */

@media (min-width:400px) {
  /* 電話番号 */
  .contact .tel a {
    font-size: 2.2rem;
  }

  /* 電話アイコン */
  .tel a::before {
    height: 30px;
    width: 30px;
  }
}

@media (min-width:750px) {
  body {
    line-height: 2;
  }

  /* 上の三角形 */
  .site_name {
    left: 0;
    width: 65vw;
    height:300px;
    clip-path: polygon(0 0, 60% 0, 20% 100%, 0 100%);
  }

  /* サイト名 */
  .site_name a {
    display: inline-block;
    padding: 15px 15px 15px 10px;
    width: 220px;
  }

  .site_name a span {
    font-size: 1.6rem;
  }

    /* パネル */
  .hamburger_panel {
    width: 30vw;
  }


  /* フッター */

  .footer_bunkatsu {
    display: flex;
    justify-content: space-between;
  }

  .footer_add {
    flex: 0 1 300px;
  }

  .footer_sitemap {
    flex: 0 1 50%;
  }

  .sitemap_item {
    flex: 0 1 40%;
  }

  .sitemap_item:first-child {
    margin-left: auto;
  }
  .footer_sitemap li ul {
    margin-bottom: 0.5rem;
  }
  .admin_name {
    width: 100%;
  }

  address p {
    text-align: left;
  }

  /* 分割 */
  .bunkatsu {
    display: flex;
    flex-wrap: wrap;
  }
  
  .bun02_item {
    flex: 0 1 50%;
  }
  
  .bun03_item {
    flex: 0 1 33.3333%;
  }

  /* おもな実績 */
  .contact.jisseki_contact {
    padding: 30px 0 30px 0;
  }

  /* お問い合わせ */

.form_area {
  padding: 2rem 2rem 1rem 2rem;
}

  .contact .bunkatsu {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr 1fr;
  }

  .contact .bunkatsu p {
    margin-bottom: 0.5rem;
  }

  /* お問い合わせテキスト */
  .contact .bunkatsu p:nth-child(1) {
    grid-row: 1 / 3;
    place-self: center;
   
  }

  /* 電話 */
  .contact .tel a {
    pointer-events: none;
  }


  /* 本文（メインコンテンツ部分） */

  /* 見出し */
  h1:not(.site_name) {
    font-size: 2.1rem;
    padding: 70px 0;
    padding-left: 30px;
  }

  h2 {
    margin: 2rem 0;
    font-size: 1.6rem;
  }

  h3 {
    margin: 1rem 0;
    font-size: 1.3rem;
  }

  h4 {
    margin: 1rem 0;
    font-size: 1.2rem;
  }

  h5 {
    margin: 1rem 0;
    font-size: 1.1rem;
  }

    /* 導入文 */
  .lead {
    font-size: 1.4rem;
  }

  /* 見出し */
  .jisseki_h1 h1 {
    font-size: 1.8rem;
    padding-left: 37vw;
  }
}


@media (min-width:992px) {
  /* 上の三角形 */
  .site_name {
    width: 45vw;
    height: 450px;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 0%);
  }

  /* サイト名 */
  .site_name a {
    width: 250px;
  }

  .kouji_keireki .disp_sp {
    display: none;
  }

}

@media (min-width:1025px) {
  .container {
    width: 1025px;
    margin: 0 auto;
  }

  /* サイト名 */
  .site_name a {
    width: 300px;
    margin-left: 20px;
  }

  /* お問い合わせ */
  .contact .bunkatsu {
    grid-template-columns: auto 1fr 1fr;
    grid-template-rows: auto;
  }

  /* お問い合わせテキスト */
  .contact .bunkatsu p:nth-child(1) {
    grid-row: 1 / 2;
    margin-right: auto;
  }

  /* 電話アイコン */
  .contact .tel a::before {
    margin: auto 10px -4px 0;
  }

  /* メール */
  .contact .bunkatsu p:nth-child(3) a {
    width: 100%;
    max-width: 400px;
  }

  /* 代表挨拶 */

.message_img img {
  max-width: 300px;
  margin: 0 auto 30px 30px;
  float: right;
}
}

@media (min-width:1200px) {
  /* 見出し */
  .jisseki_h1 h1 {
    padding-left: 35vw;
  }
}

@media (min-width:1400px) {
  /* 見出し */
  .jisseki_h1 h1 {
    padding-left: 40vw;
  }
}

/* === MailForm =============== */

.text_center {
  text-align: center;
}

.margin_top_60 {
  margin-top: 60px;
}

.formPartsBtn {
  position: relative;
  display: inline !important;
  align-items: normal;
  justify-content: normal;
  padding: 1.2rem 2.3rem;
  line-height: 1;
  background-color: #0063a3;
  border: 0 solid;
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  margin: 2rem 1rem;
  font-size: 1rem;
}

.formPartsBtn:hover {
  background-color: #0b72b5;
  border: 0 solid;
  color: #fff;
}

.formPartsSubmit {
  margin: 2rem 1rem;
  padding: 1rem 1.5rem;
}

.formParts {
  width: 100%;
  padding: 15px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formPartsZip {
  width: 30%;
  padding: 15px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

@media (max-width:768px) {

.formPartsZip {
  width: 100%;
}

}

table.formTable th {
  white-space: nowrap;
  width: 25%;
}

table.formTable tr {
  display: flex;
  flex-wrap: wrap;
}

table.formTable th,
table.formTable td {
padding: 10px;
  flex: 1 1 100%;
  border: 1px solid #ccc;
  min-height: 2.3rem;
}

table.formTable {
  border: 1px solid #ccc;
}

table.formTable tr:last-child :last-child {
  border: 1px solid #ccc;
}

@media (min-width:600px) {

table.formTable {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table.formTable tr {
  display: table-row;
}

table.formTable th,
table.from-table td {
  border: 1px solid #ccc;
}

}

.formPartsBack {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formPartsBack:hover {
  background-color: #f1f1f1;
  border: 1px solid #999;
  color: #333;
}
