@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif !important;
	color: #4C4C4D;
	font-size:16px;
  background:#fff;
}


/* --------------- 見出し画像 --------------- */
.main-img-wrapper {
  background-image: url('../image/aboutus.jpg');
}




/* --------------- タブ --------------- */
.tab-area {
  width: 100vw;
  background-color: #ECECEF;
  padding-top:50px;
}

.tab-bg {
  width:100%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ECECEF;
}
@media screen and (max-width:1030px) {/* sp */
	.tab-bg { 
    max-width:95%;
   }
}

.tabs {
  display: flex;
  justify-content: center;
  background-color: #ECECEF;
  overflow: hidden;
}

.tab {
  flex: 1;
  max-width: 275px;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.7;
  background-color: #ffffff78;
  color: #00275B;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width:1030px) {/* sp */
	.tab { 
    font-size: 14px;
    padding: 5px;
    line-height: 1.6;
   }
}

@media screen and (max-width:1030px) {/* sp */
html[lang^="en"] .tab,
html[lang^="zh-CN"] .tab,
html[lang^="zh-TW"] .tab,
html[lang^="ko"] .tab { 
    max-width: 25%;
    font-size: 12px;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: keep-all; 
   }
}


.tab.active {
  background-color: #fff;
  color: #00275B;
}

.tab.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #DACA4D; /* 黄色の線 */
  border-radius: 2px;
}

.tab-content {
  display: none;
  background-color: #fff;
  padding: 40px 20px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
}

.tab-content.active {
  display: block;
}


/* --------------- 共通（見出しなど） --------------- */
h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #00275B;
  border-left: 8px solid #DACA4D;
  height:50px;
  padding-left: 15px;
  padding-top:5px;
}
@media screen and (max-width:1030px) {/* sp */
	h3 { 
    font-size:21px;
    height:40px;
    margin-bottom:30px;
   }
}

.wrap-1000 {
  width:100%;
  max-width:1000px;
  margin: 0 auto;
  margin-top:50px;
}
@media screen and (max-width:1030px) {/* sp */
	.wrap-1000  { 
    margin-top:20px;
   }
}

.wrap-1100 {
  width:100%;
  max-width:1100px;
  margin: 0 auto;
  margin-top:50px;
}


/* --------------- ご挨拶・経営理念 --------------- */
.about-president img {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.box {
  margin-bottom:100px;
}
@media screen and (max-width:1030px) {/* sp */
	.box { 
    margin-bottom:80px;
   }
}

.moji-1 {
  font-size:16px;
  line-height:32px;
  color:#4C4C4D;
  text-align: justify;
}

.moji-2 {
  font-size:25px;
  line-height:55px;
  color:#00275B;
  font-weight: bold;
  text-align: justify;
}
@media screen and (max-width:1030px) {/* sp */
	.moji-2 { 
    font-size:18px;
    line-height:35px;
   }
}

.moji-2 span {
  display: block; 
}
@media screen and (max-width: 1030px) {
  .moji-2 span {
    display: inline;
  }
}


.numbered-list {
  list-style-type: decimal;
  padding-left: 1.5em;
  font-size:20px;
  line-height:45px;
  color:#4C4C4D;
  font-weight: bold;
}
@media screen and (max-width:1030px) {/* sp */
	.numbered-list { 
    font-size:16px;
    line-height:35px;
   }
}

.numbered-list li::marker {
  color: #DACA4D;
}



/* --------------- 会社概要・沿革 --------------- */
.company-table,
.company-table-2 {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  border-collapse: collapse;
  color: #00275B;
}

.company-table .row,
.company-table-2 .row {
  display: flex;
  border-top: 1px solid #00275B;
  padding: 10px 0;
  scroll-margin-top: 100px;
}

.company-table .row:last-child,
.company-table-2 .row:last-child {
  display: flex;
  border-top: 1px solid #00275B;
  border-bottom: 1px solid #00275B;
  padding: 10px 0;
}


.company-table .th {
  width: 160px;
  font-weight: bold;
  color: #00275B;
  padding: 10px 20px;
}
.company-table-2 .th {
  width: 260px;
  font-weight: bold;
  color: #00275B;
  padding: 10px 20px;
}
@media screen and (max-width:1030px) {/* sp */
.company-table .th,
.company-table-2 .th { padding: 10px 0px; }
}

.company-table .td,
.company-table-2 .td {
  flex: 1;
  padding: 10px 0;
  line-height: 1.8;
  color:#4C4C4D;
}

.company-table a,
.company-table-2 a {
  color: #00275B;
  text-decoration: underline;
  font-weight: bold;
}


/* ✅ スマホで縦並び */
@media screen and (max-width: 757px) {
  .company-table .row,
  .company-table-2 .row {
    flex-direction: column;
    min-width: auto;
  }

  .company-table .th,
  .company-table-2 .th {
    width: auto;
    padding-bottom: 4px;
  }

  .telfax {
    display:block;
  }
}



/* --------------- 事業所一覧・海外代理店 --------------- */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.map-container img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width:1030px) {/* sp */
	.map-container img { 
    width: 100%;
   }
}

#yonezawa:target,
#yonezawa2:target,
#sendai:target,
#tokyo:target,
#osaka:target,
#kyushu:target,
#europe,
#china,
#usa,
#korea,
#taiwan,
#singapore {
  margin-top: 30px;
}


.link-area {
  position: absolute;
  display: block;
  z-index: 2;
/* background: rgba(255, 0, 0, 0.2);*/
}

/* 事業者一覧リンク */
.yonezawa {
  top: 20%;
  left: 27%;
  width: 20%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.yonezawa { 
    top: 22%;
    left: 21%;
    width: 25%;
    height: 8.5%;
   }
}

.yonezawa2 {
  top: 30.5%;
  left: 27%;
  width: 20%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.yonezawa2 { 
    top: 32%;
    left: 21%;
    width: 25%;
    height: 8.5%;
   }
}

.sendai {
  top: 35.5%;
  left: 70%;
  width: 20%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.sendai { 
    top: 36%;
    left: 75%;
    width: 25%;
    height: 8.5%;
   }
}

.tokyo {
  top: 69.5%;
  left: 70%;
  width: 20%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.tokyo { 
    top: 67%;
    left: 75%;
    width: 25%;
    height: 8.5%;
   }
}

.osaka {
  top: 48.5%;
  left: 10%;
  width: 20%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.osaka { 
    top: 49%;
    left: 0%;
    width: 25%;
    height: 8.5%;
   }
}

.kyushu {
  top: 84%;
  left: 34.5%;
  width: 20%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.kyushu { 
    top: 81%;
    left: 31%;
    width: 25%;
    height: 8.5%;
   }
}


/* 海外代理店リンク */
.europe {
  top: 5%;
  left: 10%;
  width: 17.5%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.europe { 
    top: 9%;
    left: 0%;
    width: 22%;
    height: 8.5%;
   }
}

.china {
  top: 5%;
  left: 34%;
  width: 17.5%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.china { 
    top: 9%;
    left: 30%;
    width: 22%;
    height: 8.5%;
   }
}

.usa {
  top: 5%;
  left: 68%;
  width: 17.5%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.usa { 
    top: 9%;
    left: 73%;
    width: 22%;
    height: 8.5%;
   }
}

.korea {
  top: 48.5%;
  left: 53%;
  width: 17.5%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.korea { 
    top: 48.5%;
    left: 53%;
    width: 22%;
    height: 8.5%;
   }
}

.taiwan {
  top: 60%;
  left: 53%;
  width: 17.5%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.taiwan{ 
    top: 59%;
    left: 53%;
    width: 22%;
    height: 8.5%;
   }
}

.singapore {
  top: 86.5%;
  left: 22%;
  width: 17.5%;
  height: 8.5%;
}
@media screen and (max-width:1030px) {/* sp */
	.singapore { 
    top: 83%;
    left: 15%;
    width: 22%;
    height: 8.5%;
   }
}

.syaoku-img {
  width:90%;
  height:auto;
  margin-bottom:30px;
}
@media screen and (max-width:1030px) {/* sp */
  .syaoku-img { 
    width:100%;
   }
}

.iso-img {
  width:200px;
  display: inline-block;
}
@media screen and (max-width:1030px) {/* sp */
	.iso-img { 
    width:45%;
   }
}





/* --------------- 工場方針・主要設備--------------- */
.pointed-list {
  list-style-type: disc;
  padding-left: 1.5em;
  font-size:20px;
  line-height:45px;
  color:#4C4C4D;
  font-weight: bold;
}
@media screen and (max-width:1030px) {/* sp */
	.pointed-list { 
    font-size:16px;
    line-height:35px;
   }
}

.pointed-list li::marker {
  color: #DACA4D;
}




/* ===== テーブル ===== */
.equipment-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 0;
}

.equipment-table {
  border-collapse: collapse;
  min-width: 350px;
  flex: 1;
  font-size: 16px;
  color: #4C4C4D;
}

.equipment-table thead th {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #00275B;
  font-weight: bold;
  font-size: 16px;
}

.equipment-table tbody td {
  padding: 15px;
  border-bottom: 1px solid #00275B;
  vertical-align: top;
}

.equipment-table tbody td:first-child {
  font-weight: bold;
  color: #00275B;
  white-space: nowrap;
}

.equipment-table tbody td:last-child {
  text-align: center;
}

.name-cell {
  color: #4C4C4D !important;
  font-weight: normal !important;
}

.equipment-table thead th {
  text-align: center;
  vertical-align: middle;
}


/* スマホ対応：横スクロール */
@media screen and (max-width: 757px) {
  .equipment-container {
    flex-direction: column;
    overflow-x: auto;
  }

  .equipment-table {
    width: 130%;
  }
}


