@charset "UTF-8";
#menuArea {
  margin-bottom: 100px !important;
}
#menuArea ul {
  display: flex;
  justify-content: space-around;
}
#menuArea ul li {
  width: 350px;
  height: 65px;
  font-size: 18px;
}
#menuArea ul li a {
  color: #fff;
  line-height: 1;
}
#menuArea ul li a img {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  #menuArea {
    margin-bottom: 80px !important;
  }
  #menuArea ul {
    display: block;
  }
  #menuArea ul li {
    width: 240px;
    height: 42px;
    max-width: 100%;
    margin: auto;
    font-size: 14px;
  }
  #menuArea ul li:first-of-type {
    margin-bottom: 30px;
  }
  #menuArea ul li a {
    justify-content: space-between;
    padding: 20px;
  }
  #menuArea ul li a img {
    width: 16px;
    height: 16px;
  }
}

.tabArea > h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 65px;
}
.tabArea h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.tabArea .tab-button {
  border: 1px solid #000;
  border-radius: 16px 16px 0 0;
  padding: 15px;
  color: #989898;
  width: 50%;
  background: #fff;
}
.tabArea .tab-button h2 {
  font-size: 18px;
}
.tabArea .tab-button.active {
  background: #000;
  color: #fff;
}
.tabArea .tab-button:not(.active) {
  cursor: pointer;
  transition: 0.3s ease;
}
.tabArea .tab-button:not(.active):hover {
  color: #000;
  transition: 0.3s ease;
}
.tabArea .tab-contentArea {
  padding: 46px 60px 60px;
  border: 1px solid #000;
  border-radius: 0 0 16px 16px;
  background: #fff;
  overflow: hidden;
}
.tabArea .tab-contentArea p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.tabArea .tab-contentArea .imgBox {
  border: 1px solid #C3C3C3;
  width: 240px;
  height: 240px;
  margin-bottom: 5px;
}
.tabArea .tab-contentArea .textBox {
  font-size: 12px;
  font-weight: bold;
}
.tabArea .tab-contentArea .textBox span {
  display: block;
}
.tabArea .tab-contentArea .textBox a {
  display: block;
  text-decoration: underline;
  margin-top: 5px;
  color: #000;
}
.tabArea .tab-contentArea ul {
  justify-content: space-between;
}
.tabArea .tab-contentArea ul li {
  width: 32%;
}
.tabArea .tab-contentArea .tab-content:not(.active) {
  display: none;
}
.tabArea .tab-contentArea .red {
  color: #FF0000;
  font-size: 15px;
}
.tabArea .tab-contentArea > .red {
  display: block;
}
.tabArea .tab-contentArea .infotag {
  margin-bottom: 15px;
  font-size: 16px;
}
.tabArea .tab-contentArea .infotag span {
  background: #000;
  color: #fff;
  border-radius: 12px;
  width: 60px;
  text-align: center;
  margin: 0 10px;
  display: inline-block;
  font-size: 15px;
}
.tabArea .tab-contentArea .ListArea {
  display: grid;
  border: 1px solid #E8E8E8;
  text-align: center;
  font-size: 13px;
  margin: 10px 0;
}
.tabArea .tab-contentArea .ListArea .header {
  background: #D8D8D8;
  font-size: 15px;
  min-height: 32px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabArea .tab-contentArea .ListArea .cell {
  height: 30px;
  border: 1px solid #E8E8E8;
  margin: auto 0;
}
.tabArea .tab-contentArea .ListArea .cell_bg {
  background: #FAFAFA;
}
.tabArea .tab-contentArea .priceList {
  grid-template-columns: repeat(4, 1fr);
  max-height: 333px;
  overflow-y: scroll;
  position: relative;
}
.tabArea .tab-contentArea .priceList .header {
  position: sticky;
}
.tabArea .tab-contentArea .priceList .right {
  text-align: right;
}
.tabArea .tab-contentArea .priceList .cell {
  padding: 0 15px;
}
.tabArea .tab-contentArea .paperList {
  grid-template-columns: minmax(150px, 1fr) minmax(440px, 1fr);
  margin-top: 80px;
  text-align: left;
}
.tabArea .tab-contentArea .paperList .center {
  text-align: center;
}
.tabArea .tab-contentArea .paperList .cell {
  padding: 0 15px;
}
@media screen and (max-width: 900px) {
  .tabArea .tab-contentArea .paperList {
    grid-template-columns: none;
  }
  .tabArea .tab-contentArea .paperList .sp_off {
    display: none;
  }
  .tabArea .tab-contentArea .paperList .cell {
    height: auto;
    min-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .tabArea .tabs {
    align-items: stretch;
  }
  .tabArea .tab-button {
    border-radius: 8px 8px 0 0;
    padding: 10px 15px;
  }
  .tabArea .tab-button h2 {
    font-size: 14px;
  }
  .tabArea .tab-contentArea {
    padding: 20px 20px 10px;
  }
  .tabArea .tab-contentArea .infotag {
    font-size: 15px;
  }
  .tabArea .tab-contentArea .infotag span {
    font-size: 12px;
    margin: 0 5px;
    width: 50px;
  }
  .tabArea .tab-contentArea p {
    font-size: 11px;
  }
  .tabArea .tab-contentArea .red {
    font-size: 11px;
  }
  .tabArea .tab-contentArea .ListArea .header {
    font-size: 12px;
  }
}

h2.lineTitle {
  position: relative;
  display: block;
  text-align: center;
  z-index: 5;
  padding: 5px;
  margin-bottom: 90px;
  /*&::after { content: ""; background: #dfcccc; display: inline-block; width: 10em; height: 1em; z-index: 3; position: absolute; left: 50%; top: 0; bottom: 0;}*/
}
h2.lineTitle::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
}
h2.lineTitle span {
  position: relative;
  padding: 0 1em;
  background: #fff;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  h2.lineTitle {
    font-size: 20px;
    margin-bottom: 50px;
  }
}

#printArea .tab-content .red {
  margin-top: 45px;
}

#scanningArea {
  background: #F7F7F7;
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}
#scanningArea h2.lineTitle {
  text-align: center;
  width: 100%;
}
#scanningArea h2.lineTitle span {
  background: #F7F7F7;
}
#scanningArea .scanningList .header {
  font-size: 13px !important;
}
#scanningArea .wrap980 {
  padding: 0;
}
#scanningArea #tab2-1 .scanningList {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  /* ← 3行分結合 */
}
#scanningArea #tab2-1 .scanningList #header1 {
  grid-area: 1/1/2/2;
  width: 124px;
}
#scanningArea #tab2-1 .scanningList #header2 {
  grid-area: 1/2/2/3;
  width: 170px;
}
#scanningArea #tab2-1 .scanningList #header3 {
  grid-area: 1/3/2/4;
  width: 124px;
}
#scanningArea #tab2-1 .scanningList #header4 {
  grid-area: 1/4/2/5;
  width: 124px;
}
#scanningArea #tab2-1 .scanningList #header5 {
  grid-area: 1/5/2/6;
}
#scanningArea #tab2-1 .scanningList #header6 {
  grid-area: 1/6/2/7;
  width: 119px;
}
#scanningArea #tab2-1 .scanningList #cell7 {
  grid-area: 2/1/3/2;
}
#scanningArea #tab2-1 .scanningList #cell8 {
  grid-area: 2/2/5/3;
  border: none;
}
#scanningArea #tab2-1 .scanningList #cell9 {
  grid-area: 2/3/3/4;
}
#scanningArea #tab2-1 .scanningList #cell10 {
  grid-area: 2/4/3/5;
}
#scanningArea #tab2-1 .scanningList #cell11 {
  grid-area: 2/5/7/6;
  border: none;
}
#scanningArea #tab2-1 .scanningList #cell12 {
  grid-area: 2/6/6/7;
  border: none;
  justify-content: center;
  height: 128px;
  border-left: 1px solid #E8E8E8;
}
#scanningArea #tab2-1 .scanningList #cell13 {
  grid-area: 3/1/4/2;
}
#scanningArea #tab2-1 .scanningList #cell14 {
  grid-area: 3/3/4/4;
}
#scanningArea #tab2-1 .scanningList #cell15 {
  grid-area: 3/4/4/5;
}
#scanningArea #tab2-1 .scanningList #cell16 {
  grid-area: 4/1/5/2;
}
#scanningArea #tab2-1 .scanningList #cell17 {
  grid-area: 4/3/5/4;
}
#scanningArea #tab2-1 .scanningList #cell18 {
  grid-area: 4/4/5/5;
}
#scanningArea #tab2-1 .scanningList #cell19 {
  grid-area: 5/1/7/2;
  border: none;
}
#scanningArea #tab2-1 .scanningList #cell20 {
  grid-area: 5/2/6/3;
}
#scanningArea #tab2-1 .scanningList #cell21 {
  grid-area: 5/3/6/4;
}
#scanningArea #tab2-1 .scanningList #cell22 {
  grid-area: 5/4/6/5;
}
#scanningArea #tab2-1 .scanningList #cell23 {
  grid-area: 6/2/7/3;
}
#scanningArea #tab2-1 .scanningList #cell24 {
  grid-area: 6/3/7/4;
}
#scanningArea #tab2-1 .scanningList #cell25 {
  grid-area: 6/4/7/5;
}
#scanningArea #tab2-1 .scanningList #cell26 {
  grid-area: 6/6/7/7;
}
#scanningArea #tab2-1 .scanningList .col5 {
  width: 230px;
}
#scanningArea #tab2-1 .scanningList .header:not(:last-of-type) {
  border-right: 1px solid #E8E8E8;
}
#scanningArea #tab2-2 .scanningList {
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
}
#scanningArea #tab2-2 .scanningList #header1 {
  grid-area: 1/1/2/2;
  width: 154px;
}
#scanningArea #tab2-2 .scanningList #header2 {
  grid-area: 1/2/2/3;
  width: 154px;
}
#scanningArea #tab2-2 .scanningList #header3 {
  grid-area: 1/3/2/4;
  width: 154px;
}
#scanningArea #tab2-2 .scanningList #header4 {
  grid-area: 1/4/2/5;
  width: 280px;
}
#scanningArea #tab2-2 .scanningList #header5 {
  grid-area: 1/5/2/6;
  width: 150px;
}
#scanningArea #tab2-2 .scanningList #cell6 {
  grid-area: 2/1/3/2;
}
#scanningArea #tab2-2 .scanningList #cell7 {
  grid-area: 2/2/5/3;
  border: none;
}
#scanningArea #tab2-2 .scanningList #cell8 {
  grid-area: 2/3/3/4;
}
#scanningArea #tab2-2 .scanningList #cell9 {
  grid-area: 2/4/6/5;
  border: none;
}
#scanningArea #tab2-2 .scanningList #cell10 {
  grid-area: 2/5/5/6;
  border: none;
  height: 94px;
  border-left: 1px solid #E8E8E8;
  justify-content: center;
}
#scanningArea #tab2-2 .scanningList #cell11 {
  grid-area: 3/1/4/2;
}
#scanningArea #tab2-2 .scanningList #cell12 {
  grid-area: 3/3/4/4;
}
#scanningArea #tab2-2 .scanningList #cell13 {
  grid-area: 4/1/5/2;
}
#scanningArea #tab2-2 .scanningList #cell14 {
  grid-area: 4/3/5/4;
}
#scanningArea #tab2-2 .scanningList #cell15 {
  grid-area: 5/1/6/2;
}
#scanningArea #tab2-2 .scanningList #cell16 {
  grid-area: 5/2/6/3;
}
#scanningArea #tab2-2 .scanningList #cell17 {
  grid-area: 5/3/6/4;
}
#scanningArea #tab2-2 .scanningList #cell18 {
  grid-area: 5/5/6/6;
  border-bottom: none;
  border-right: none;
}
#scanningArea #tab2-2 .scanningList .header:not(:last-of-type) {
  border-right: 1px solid #E8E8E8;
}
#scanningArea .infotag {
  margin-top: 30px;
}
@media screen and (max-width: 1065px) {
  #scanningArea .scanningList {
    overflow-x: scroll;
  }
}