@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100vw;
  font-family: 游ゴシック体,YuGothic,Yu Gothic Medium,sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: block;
  overflow-x: hidden;
  color: #24292e;
  width: 100%;
  /*height: 100vh;*/
}

*, *:before, *:after {
  box-sizing: border-box;
}

p {
  margin: 0;
}

.none {
  clear: both;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 980px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

/*ホバー*/
a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  cursor: pointer;
}

/*a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #707070;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  color: #333;
}*/

a:hover {
  transform-origin: left top;
  transform: scale(1, 1);
  color: #9ca3af;
}

/*左からェードイン*/
.fadeInLeft {
  padding: 10px;
  animation: fadeIn 3s ease 1s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*フェードイン×スライドイン*/
.fadeUp {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*スライド時のフェードイン*/
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 3.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

/*横からフェードイン*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*フェードインの動き・出現の速さ*/
.timing02 {
  transition-delay: .2s;
}

.timing03 {
  transition-delay: .4s;
}

/*ファーストビュー*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
  z-index: 3;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/*表示されるロゴの大きさを変更はloading__logoクラスのwidthプロパティを変更*/
.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 15%
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

/*グローバルナビゲーション*/
.header{
  width: 100%;
  height: 60px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
}

.logo{
  position: absolute;
  top: 18%;
  left: 2%;
}

.title{
  font-size: 2rem;
  font-weight: 600;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */
.main{  
  margin-top: 60px;
}

.header-title {
  font-size: 20px;
  color: #333;
  font-weight: 100;
}

/*ヘッダー*/
.header-content {
  display: flex;
  padding-top: 12%;
  justify-content: center;
}

.header-area {
  width: 500px;
}

.header-view {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
  border-radius: 30px;
}

.h-txt-area {
  margin-left: 100px;
  margin-top: 5%;
  text-align: center;
}

.h-ttl {
  font-size: 80px;
  font-weight: bold;
}

.h-txt {
  font-size: 35px;
  color: #9d9a9a;
}

.nav {
  padding-top: 20px;
  padding-right: 10px;
}

/*メッセージ*/
.message-area {
  margin-top: 20rem;
}

.cleanroom-img {
  margin-left: 20px;
}

.title-h2 {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 50px;
  position: relative;
  color: #24292e;
}

.title-h2::before {
  content: "";
  width: 90px;
  height: 1px;
  background-color: #676767;
  position: absolute;
  top: 50%;
  left: -120px;
}

.text {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 80px;
  color: #24292e;
  padding: 20px;
  text-align: left;
}

/*製品*/
.product-area {
  width: 100%;
  margin-top: 11rem;
  background-color: #f5f5f5;
  padding-bottom: 1.5rem;
}

.product-ttl-area {
  padding-left: 2rem;
  padding-top: 5rem;
}

.product-ttl-inner {
  display: flex;
  justify-content: center;
}

.product-ttl-e p,
.factory-ttl-e p,
.owned-equipment-ttl-e p {
  font-size: 40px;
  font-weight: bold;
}

.product-ttl-j p,
.factory-ttl-j p,
.owned-equipment-ttl-j p {
  font-size: 25px;
  margin-top: 1rem;
  font-weight: bold;
}

.explanation {
  padding-top: 2%;
  padding-bottom: 6%;
  width: 399px;
  margin: 0 auto;
}

.explanation p {
  font-size: 16px;
}

.product-item {
  margin-top: 4rem;
}

.product-sub-ttl {
  display: flex;
  justify-content: space-between;
}

.product-description {
  width: 32%;
}

.catalog-antique {
  padding: 60px 0;
}

.catalog-antique .sec-title {
  margin-bottom: 40px;
}

.catalog-antique .flex-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-antique .item {
  width: 48%;
  text-align: center;
}

.catalog-antique .item img {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.catalog-antique .item p {
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.0rem;
}

.catalog-antique .item p:last-child {
  margin-bottom: 0;
}

/*工場一覧*/
#gallery {
  margin-top: 4rem;
  margin-top: 3rem;
}

#gallery .list li {
  margin-bottom: 60px;
  margin-top: 30px;
}

#gallery .list li img {
  width: 57%;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

#gallery .list li .resin-printing {
  width: 100%;
}

.factory-resin-list {
  display: flex;
  justify-content: space-between;
}

.factory-resin-list li {
  padding-right: 5%;
}
/*#gallery .list li:nth-child(odd) {
  text-align: left;
}*/

/*#gallery .list li:nth-child(even) {
  text-align: right;
}*/

.section-title  {
  margin-bottom: 3rem;
  width: 83%;
}

.factory-area {
  width: 100%;
  background: #333;
  padding-bottom: 1px;
}

.factory-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 100px;
  padding-top: 10rem;
}

.factory-ttl-area {
  color: #fff;
  padding-left: 2rem;
  padding-top: 5rem;
}

.factory-ttl-inner {
  display: flex;
  justify-content: center;
}

.factory-detail {
  padding-top: 10rem;
  background: #333;
}

.factory-img-area {
  width: 80%;
  margin: 0 auto;
}

.factory-txt1 {
  font-size: 1rem;
  color: #fff;
  width: 800px;
  text-align: justify;
  margin-top: 1.5rem;
}

.factory-inner-ttl-e {
  font-size: 1.2rem;
  color: #333;
  background-color: #fff;
  width: 180px;
  margin-bottom: 0.5rem
}

.factory-inner-ttl-j {
  font-size: 1.2rem;
  color: #fff;
  width: 148px;
  margin-top: 1rem;
}

/*保有設備*/
.owned-equipment-area {
  width: 100%;
  padding-top: 5rem;
  background: #fff;
  padding-bottom: 4rem;
}

.owned-equipment-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 3%;
}

.owned-equipment-ttl-area {
  position: relative;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  color: #333;
}

.owned-equipment-list {
  padding-bottom: 4rem;
  width: 66%;
  margin: 0 auto;
  margin-top: 30px;
  background: #fff;
}

table.brwsr2 {
  margin: 0 auto;
  width: 1600px;
  border: none;
  border-top: solid 1px #666;
  border-bottom: solid 1px #666;
  border-collapse: separate;
  border-spacing: 0 10px;
}
table.brwsr2 th {
  vertical-align: middle;
  height: 53px;
  width: 170px;
  border-right: solid 1px #666;
  margin: 0;
  text-align: center;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

table.brwsr2 td.data {
  padding: 0;
  margin: 0;
  height: 53px;
  width: 130px;
  border: none;
  color: #666;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
}

table.brwsr2 td:fst-child {
  padding: 0 0 0 10px;
  vertical-align: middle;
}

table.brwsr2 td.bar {
  height: 1px;
  width: 100%;
  border-top: solid 1px #34495e;
}

/*生産システム*/
.production-system-area {
  padding-top: 5rem;
  background: #fff;
}

.production-system-item-mass,
.production-system-item-new {
  width: 63%;
  margin: 0 auto;
  margin-top: 6rem;
}

.flow-mass-production,
.flow-new-product {
  width: 100%;
}

.Production-system-ttl-inner {
  display: flex;
  width: 100%;
  white-space: nowrap;
  padding-left: 2rem;
  padding-top: 5rem;
}

.production-system-ttl-e p,
.production-system-e p,
.production-system-ttl-e p {
  font-size: 40px;
}

.production-system-ttl-j p,
.production-system-j p,
.production-system-ttl-j p {
  font-size: 25px;
  margin-top: 0.7rem;
}

.flow-area {
  width: 66%;
  margin: 0 auto;
  margin-top: 1%;
}

.flow-ttl {
  width: 300px;
  margin: 0 auto;
  margin-top: 2rem;
}

.flow-ttl-j {
  text-align: center;
  font-size: 28px;
}

.flow-ttl-e {
  text-align: center;
  font-size: 20px;
}

.flow {
  width: 100%;
  margin: 0 auto;
  border: solid 1px #333;
}

.production-system-container {
  width: 100%;
}

.production-system-ttl-area {
  display: flex;
  justify-content: center;
}

/* 会社概要 */
.company-profile-area {
  background-color: #f5f5f5;
}

.company-profile-inner {
  display: flex;
  width: 1110px;
  margin: 0 auto;
  padding-top: 4rem;
}

.company-profile-ttl-area {
  position: relative;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  padding-top: 5rem;
}

.company-profile-ttl-e {
  width: 255px;
  padding: 0.8rem 1.5rem 0 1.5rem;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.company-pc-img {
  display: block !important;
  margin-top: 2rem;
}

.company-sp-img {
  display: none !important;
}

.company-profile-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  font-size: 14px;
}

.company-profile-table th, .company-profile-table td {
  border-bottom: 1px solid #c1c7c6;
  padding: 1em;
}

.company-profile-table th {
  border-bottom: 1px solid #c1c7c6;
  text-align: left;
  width: 20%;
  white-space: nowrap;
}

.company-img-area {
  padding-right: 30px;
}

/*沿革*/
.history-area {
  margin-top: 7rem;
  position: relative;
}

.history-ttl-area {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
}

.history-ttl-e {
  width: 110px;
  padding: 0.8rem 1.5rem 0 1.5rem;
}

.history-ttl-j {
  color: #333;
  font-size: 18px;
  text-align: center;
  margin-top: 1rem;
}

.timeline {
  width: 96%;
  max-width: 1100px;
  margin: 28px auto;
  display: flex;
  justify-content: center;
  border: 1px solid #f6f6f6;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.timeline-list {
  padding: 20px 0;
}

.timeline-list-item {
  display: flex;
  line-height: 1.5;
  font-size: 16px;
}

.timeline-list-item .date {
  width: 20%;
  color: #0b0b0b;
  min-width: 100px;
}

.timeline-list-item .oe-content {
  position: relative;
  width: 86%;
  padding: 0 20px 30px 30px;
  border-left: 1px solid #aaaaaa;
}

.timeline-list-item .oe-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #050505;
  border-radius: 10px;
}

.registration-card {
  width: 300px;
  margin-top: 71%;
}

/*フッター*/

/*#footer {
  background-color: #fff;
  padding-bottom: 20px;
  border-top: 1px solid #dcdcdc;
  width: 90%;
  margin: 0 auto;
  margin-top: 7rem;
}

#footer .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

#footer .flex .f-logo {
  margin-right: 0;
}

#footer .copyright {
  font-size: 14px;
}*/

/*トップへ戻るボタン*/
#page-top {
  position: fixed;
  right: 6%;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #737373;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*フッター*/

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #9ca3af;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.flex {
  display: flex;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #35363b;
}

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #9ca3af;
  background: #1d1e22;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.md-flex {
    display: flex;
}

.md-justify-between {
  justify-content: space-between;
}

.copyright {
  text-align: left;
}



/* mainとfooterのコンテンツ幅を設定 */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 18px;
}
.site-title {
  width: 110px;
  line-height: 1px;
  margin-right: 50px;
}
.site-title a {
  display: block;
}
.product-section-title {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 20px;
}

/*
疑似要素を使って下線を引く
*/
.product-section-title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  display: block;
}
/*
spanタグを使用しているため、「display: inline-block;」を設定することで、
改行されてmargin-bottomが使用できるようになる
※pタグを使用してもよいが、文章ではないため今回はspanタグを選択
*/
.section-title-en {
  display: inline-block;
  margin-bottom: 25px;
}

.product-section-title {
  font-size: 1.2rem;
}

/*-------------------------------------------
Concept、Work
-------------------------------------------*/
.content {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.product-content .img {
  width: 50%;
}

.content .text1 {
  width: 60%;
  padding-left: 5%;
}
.content .text2 {
  width: 60%;
  padding-right: 5%;
}


/*工場*/
.factory-section-title {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
}

/*
「display: inline-block;」を設定してブロック化することで、
改行されてmargin-bottomが使用できるようになる
*/
.section-title .en {
  display: block;
  font-size: 2.25rem;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
.section-title .ja {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 36px;
}
/*
横幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 1032px;
  padding: 0 16px;
  margin: 0 auto;
  margin-top: 20rem;
}




/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 900px) {
  .section-title {
    margin-bottom: 34px;
  }
  .section-title .ja {
    margin-bottom: 24px;
  }
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.25rem;
  }

  

  /*-------------------------------------------
  Concept、Work
  -------------------------------------------*/
  /*
  Workはそのまま画像とテキストを縦に並べると、
  テキスト→画像の順番になるため、「flex-direction: column-reverse;」
  で逆順にする
  */
  #resin {
    flex-direction: column-reverse;
  }
  .content {
    flex-direction: column;
  }
  .content .img {
    width: 100%;
    margin-bottom: 10px;
  }
  .content .text {
    width: 100%;
    padding: 0;
  }
}





/******************************************/

/*              レスポンシブ　*/

/****************************************/
  @media screen and (max-width: 1222px) {
    .header-content {
      display: block;
    }

    .header-area {
      margin: 0 auto;
      width: 250px;
      margin-top: 5rem;
    }

    .h-txt-area {
      margin: 0 auto;
      width: 300px;
      margin-top: 3rem;
    }

    .h-ttl {
      font-size: 32px;
      width: 300px;
    }

    .h-txt {
      margin-top: 1rem;
      font-size: 20px;
      width: 300px;
    }

    .h-ttl,
    .h-txt {
      text-align: center;
    }

    .owned-equipment-list {
      overflow-x: scroll;
    }
  }

  @media screen and (max-width: 1100px) {
    .content {
      padding: 0 20px;
    }
    .title {
      left: 120px;
    }
  }

@media screen and (max-width: 1068px) {

  /*会社概要*/
  .company-profile-inner {
    display: block;
    width: 85%;
    margin: 0 auto;
  }

  .company-img-area {
    padding: 0;
  }

  .company-profile-table {
    margin-top: 1rem;
  }

  .company-pc-img {
    display: none !important;
  }

  .company-sp-img {
    display: block !important;
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 937px) {
  /*グローバルナビゲーション*/
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #f5f5f5;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }

  .hamburger {
    position: absolute;
    right: 26px;
    top: 10px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav_item {
    text-align: center;
    padding: 0 14px;
  }

  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #696969;
    text-decoration: none;
    width: 200px;
    margin: 0 auto;
    color: #333;

  }

  .nav_item a:hover {
    /*background-color: #696969;*/
    color: #777777;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 34px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  .header_inner {
    max-width: 980px;
    width: 100%;
    padding: 30px 30px;
    margin-left: auto;
    /* margin-right: auto; */
}

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }

  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }

  .logo{
    position: absolute;
    top: -9%;
    left: 5%;
  }

  .f-logo {
    width: 80%;
    margin-top: 19px;
  }

  .h-logo {
    width: 90%;
  }

  #container {
    z-index: -2;
  }

  .animation_box {
    z-index: -1;
  }

  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
  }

  .loading__logo {
    width: 50%;
  }

  div.animation_box {
    left: 0;
    /*font-size: 1.5rem;*/
    width: 100%;
  }

  /*製品*/
  .product-area {
    margin-top: 6rem;
  }

  .product-ttl-area {
    padding-left: 0;
  }

  .explanation {
    width: 300px;
    padding-top: 8%;
    padding-bottom: 8;
  }
  
  .catalog-antique .item p {
    font-size: 0.9rem;
  }
  .catalog-antique .sec-title,
  .catalog-antique .item p {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .catalog-antique .flex-item {
    justify-content: center;
  }
  .catalog-antique .item p:last-child {
    font-size: 12px;
    margin-bottom: 4rem;
  }

  .product-txt1 {
    font-size: 14px;
  }

  .factory-ttl-area {
    padding-left: 0;
  }

  .factory-txt1 {
    font-size: 14px;
    width: 250px;
  }

  .factory-inner-ttl-e {
    width: 150px;
  }

  /*各コンテンツタイトル*/
  .product-ttl-e p,
  .factory-ttl-e p,
  .owned-equipment-ttl-e p,
  .production-system-ttl-e p {
    font-size: 20px;
  }

  .product-ttl-j p,
  .factory-ttl-j p,
  .owned-equipment-ttl-j p,
  .production-system-ttl-j p {
    font-size: 13px;
    margin-top: 0.5rem;
  }

  .factory-resin-list {
    display: block;
  }


/*保有設備*/
  .owned-equipment-ttl-area {
    padding-left: 0.5rem;
  }

  table.brwsr2 {
    margin: 0 auto;
    width: 1600px;
    border: none;
    border-top: solid 1px #666;
    border-bottom: solid 1px #666;
    border-collapse: separate;
    border-spacing: 0 10px;
  }
  table.brwsr2 th {
    vertical-align: middle;
    height: 53px;
    width: 170px;
    border-right: solid 1px #666;
    margin: 0;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: bold;
  }
  
  table.brwsr2 td.data {
    padding: 0;
    margin: 0;
    height: 53px;
    width: 130px;
    border: none;
    color: #666;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
  }
  
  table.brwsr2 td:fst-child {
    padding: 0 0 0 10px;
    vertical-align: middle;
  }
  
  table.brwsr2 td.bar {
    height: 1px;
    width: 100%;
    border-top: solid 1px #34495e;
  }

  /*工場*/
  #gallery {
    margin-bottom: 5rem;
    width: 300px;
  }

  #gallery .list li {
    margin-bottom: 30px;
    }
    #gallery .list li img {
    width: 100%;
    margin:0 auto;
    }
   
    /*生産システム*/
    .production-system-item-mass,
    .production-system-item-new {
    min-width: 457px;
    margin: 0 auto;
    margin-top: 6rem;
    }
   
    .production-system-ttl-area {
    padding-left: 0.5rem;
    }
   
    .flow-area {
    width: 96%;
    margin: 0 auto;
    }
   
    .flow-ttl {
    margin-bottom: 1rem;
    }
   
    .flow-ttl-j {
    font-size: 18px;
    }
   
    .flow-ttl-e {
    font-size: 14px;
    }
   
    .md-flex {
    display: block;
    }
   
    .footer__navi {
    margin-top: 20px;
    }
   
   }
   
   @media only screen and (min-width: 937px) {
    .nav_list{
    text-align: right;
    }
   
    .nav_list li{
    display: inline-block;
    text-align: right;
    padding-left: 20px;
    }
   
    .nav_list li a{
    color: #333;
    font-weight: bold;
    }
   }
   
   @media screen and (max-width: 768px) {
    .message-area {
    width: 95%;
    margin: 0 auto;
    margin-top: 8rem;
    }
   
    .text {
    font-size: 0.9rem;
    padding: 0;
    margin-bottom: 50px;
   }
   
    .title-h2::before {
    position: absolute;
    top: 50%;
    left: -96px;
   }
   
    .product-detail {
    width: 66%;
    margin: 0 auto;
    margin-top: -780px;
    }
   
    .catalog-antique {
    padding: 0;
    }
   
    .catalog-antique .flex-item {
    display: block;
    }
   
    .catalog-antique .item {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-left: 1rem;
    }
   
    .item-product {
    margin-top: 30px;
    }
   
    .explanation p {
    font-size: 14px;
    }
   
    .factory-message {
    margin-left: 3rem;
    margin-top: 0;
    }
   
    .factory-detail {
    margin-left: 1.5rem;
    }
   
    .section-title {
    font-size: 1.25rem;
    }
   
    
   
    /*-------------------------------------------
    Concept、Work
    -------------------------------------------*/
    /*
    Workはそのまま画像とテキストを縦に並べると、
    テキスト→画像の順番になるため、「flex-direction: column-reverse;」
    で逆順にする
    */
    #resin {
    flex-direction: column-reverse;
    }
    .content {
    flex-direction: column;
    }
    .content .img {
    width: 100%;
    margin-bottom: 10px;
    }
    .content .text {
    width: 100%;
    padding: 0;
    }
   
    /*沿革*/
    .timeline-list-item .date {
    padding: 0px 10px 0px 3px;
    white-space: nowrap;
    margin-right: 1rem
    }
   
    #cardlayout-wrap {
    display: block;
    }
   
    .timeline {
    display: block;
    }
   
    .timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 14px;
   }
   
    /*フッター*/
    #footer .f-logo {
    font-size: 16px;
    }
   
    .address {
    font-size: 12px;
    }
   
    .navi-row {
    display: block;
    margin-top: 15px;
    }
   
    #footer .navi {
    font-size: 12px;
    }
   
    #footer .navi li {
    margin-top: 5px;
    font-size: 12px;
    }
   
    #footer .navi li:first-child {
    margin-left: 0;
    }
   
    #footer .primary {
    padding: 20px 20px;
    }
   
    #footer .secondary {
    display: block;
    padding: 20px 20px;
    }
   
    .navi {
    display: block;
    }
   
    .navi-item {
    padding-top: 10px;
    }
   }
   
   @media screen and (max-width: 650px) {
    .factory-item1, .factory-item2, .factory-item3 {
    margin-left: 0;
    margin-top: 2.5rem;
    }
   }
   
   
   /* mainとfooterのコンテンツ幅を設定 */
   .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 18px;
   }
   .site-title {
    width: 110px;
    line-height: 1px;
    margin-right: 50px;
   }
   .site-title a {
    display: block;
   }
   .section-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 4px;
   }
   /*
   spanタグを使用しているため、「display: inline-block;」を設定することで、
   改行されてmargin-bottomが使用できるようになる
   ※pタグを使用してもよいが、文章ではないため今回はspanタグを選択
   */
   .section-title-en {
    display: inline-block;
    margin-bottom: 25px;
   }
   

   
   
   /*-------------------------------------------
   Concept、Work
   -------------------------------------------*/
   .content {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
   }
   .content .img {
    width: 50%;
   }
   .content .text {
    width: 50%;
    padding: 0 7%;
   }
   
 
   /*-------------------------------------------
   SP
   -------------------------------------------*/
   @media screen and (max-width: 768px) {
    .section-title {
    font-size: 1.25rem;
    }
   
    /*-------------------------------------------
    Concept、Work
    -------------------------------------------*/
    /*
    Workはそのまま画像とテキストを縦に並べると、
    テキスト→画像の順番になるため、「flex-direction: column-reverse;」
    で逆順にする
    */
    #work {
    flex-direction: column-reverse;
    }
    .content {
    flex-direction: column;
    }
    .content .img {
    width: 100%;
    margin-bottom: 10px;
    }
    .content .text {
    width: 100%;
    padding: 0;
    }
   
    .content .text1 {
    width: 100%;
    }
   
    .content .text2 {
    width: 100%;
    padding-left: 5%;
    padding-right: 0;
    }

    .cleanroom-img {
      margin-left: 0;
    }
   }

