@charset "UTF-8";
/* ----------
  コラムページ
----------- */
:root {
  --leading-trim: calc(((1em - 1lh) / 2) - 3px);
}

/* コンテンツサイズ */
@media only screen and (max-width: 767px) {
  .container-inline {
    padding-left: 5%;
    padding-right: 5%;
  }
}
/* パンくず */
@media only screen and (max-width: 767px) {
  .breadcrumb__list {
    white-space: nowrap;
  }
  .breadcrumb__list:last-child {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* タグ */
.tags {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.tags li {
  line-height: 1;
}

.tags a {
  display: block;
  padding: 0.6rem 1rem;
  color: #fff;
  background-color: #00277f;
  border-radius: 5px;
}
.tags a:hover {
  opacity: 0.8;
}

/* #予熱くん		→#BD4B55 */
.tags .cat46 a {
  background-color: #BD4B55;
}

/* #肉盛りくん		→#B9522A */
.tags .cat47 a {
  background-color: #B9522A;
}

/* #特盛りくん		→#B0833E */
.tags .cat48 a {
  background-color: #B0833E;
}

/* #ブルーレーザー	→#747428 */
.tags .cat49 a {
  background-color: #747428;
}

/* #フッ素樹脂		→#348037 */
.tags .cat50 a {
  background-color: #348037;
}

/* #高機能鋼材		→#0077B2 */
.tags .cat51 a {
  background-color: #0077B2;
}

/* #加工技術		→#556ACB */
.tags .cat52 a {
  background-color: #556ACB;
}

/* #設計			→#8161B4 */
.tags .cat53 a {
  background-color: #8161B4;
}

/* #新製品			→#5B7486 */
.tags .cat54 a {
  background-color: #5B7486;
}

/* #金型洗浄機		→#717171 */
.tags .cat55 a {
  background-color: #717171;
}

/* キーワード一覧 */
.keywordList {
  position: relative;
  display: flex;
  padding: 3rem 2rem;
  background-color: #f4f6fa;
}
.keywordList > * {
  align-self: flex-start;
}
.keywordList.more {
  padding: 3rem 2rem 4rem;
}

.keywordList__title {
  position: relative;
  display: inline-block;
  padding: 0 22px 0 20px;
  color: #fff;
  font-size: 1rem;
  line-height: 35px;
  text-transform: uppercase;
  background-color: #272a33;
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%);
}
.keywordList__title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}

.keywordList__items {
  padding-left: 30px;
  transition: all 0.3s 0s ease;
  overflow: hidden;
}
.keywordList__items .tags {
  margin-top: 6px;
}
.keywordList__items a {
  font-size: 1.4rem;
}

.keywordList__more {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  font-size: 1px;
  line-height: 1;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
}
.keywordList__more:hover {
  opacity: 0.8;
}

@media (any-hover: hover) {
  .keywordList__more:hover {
    opacity: 0.5;
  }
}
.keywordList__arrow {
  transition: 0.3s;
}

.keywordList__arrow.open {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* コラム一覧 */
.columnList {
  display: grid;
  grid-template-columns: repeat(3, minmax(225px, 1fr));
  gap: 0 2%;
  margin-top: 95px;
  margin-bottom: -50px;
}

@media only screen and (max-width: 767px) {
  .columnList {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  }
}
.columnList__article {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
  margin-bottom: 50px;
  border: solid 1px #ddd;
  border-radius: 36px;
  background-color: #fff;
}

.columnList__thumb {
  order: 1;
}
.columnList__thumb img {
  max-height: 133px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 36px 36px 0px 0px;
}

@media only screen and (max-width: 767px) {
  .columnList__thumb img {
    max-height: 50vw;
    height: 50vw;
  }
}
.columnList__date {
  order: 5;
  margin: 15px;
  color: #666;
  font-size: 12px;
}

.columnList__title {
  order: 3;
  margin-block-start: calc(20px + var(--leading-trim));
  font-size: 1.6rem;
  font-weight: bold;
  margin: 15px;
}
.columnList__title a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: transparent;
  z-index: 1;
  pointer-events: auto;
}

@media (any-hover: hover) {
  .columnList__title a:hover {
    color: #00277f;
    text-decoration: underline;
  }
}
.columnList__tags {
  order: 2;
  position: relative;
  font-size: 1rem;
  z-index: 2;
  margin: 20px 15px 0;
}

.columnList__summary {
  order: 4;
  line-height: 1.5;
  margin-block-start: calc(20px + var(--leading-trim));
  margin: 0px 15px;
  color: #666;
  font-size: 14px;
}

/* ページネーション */
.columnNavi,
.columnNavi__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.columnNavi {
  margin-top: 104px;
}

.columnNavi__item a {
  display: inline-block;
  padding: 0 10px;
}
.columnNavi__item a[aria-current=page], .columnNavi__item a:hover {
  text-decoration: underline;
}

.columnNavi__item--prev {
  order: 1;
}

.columnNavi__item--next {
  order: 3;
}

.columnNavi__pager {
  order: 2;
}

/* コラム記事 */
.column__title {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}

.column__info {
  margin-top: 3.6rem;
}

.column__date {
  font-size: 1.4rem;
  margin-block: var(--leading-trim);
}

.column__tags + .column__date {
  margin-block-start: calc(15px + var(--leading-trim));
}

.column__mainvisual {
  margin-top: 2.4rem;
}
.column__mainvisual img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.column__body {
  margin-top: 4.5rem;
  /* Links
  ========================================================================== */
  /* Text-level semantics
  ========================================================================== */
  /* Embedded content
  ========================================================================== */
  /* Block elements
  ========================================================================== */
  /* Headings
  ========================================================================== */
  /* Lists
  ========================================================================== */
  /* Description lists
  ========================================================================== */
  /* table
  ========================================================================== */
  /* Horizontal rules
  ========================================================================== */
  /* Address
  ========================================================================== */
  /* Blockquotes
  ========================================================================== */
  /* Preformatted text
  ========================================================================== */
  /* HTML5 elements
  ========================================================================== */
}
.column__body p + p {
  margin-top: 3.8rem;
}
.column__body img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.column__body img.portrait {
  max-height: 500px;
}
.column__body img.landscape {
  width: 100%;
  height: auto;
}
.column__body a {
  color: #1e87f0;
  text-decoration: none;
  cursor: pointer;
}
.column__body a:hover {
  color: #0f6ecd;
  text-decoration: underline;
}
.column__body abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  -webkit-text-decoration-style: dotted;
}
.column__body b,
.column__body strong {
  font-weight: bolder;
}
.column__body :not(pre) > code,
.column__body :not(pre) > kbd,
.column__body :not(pre) > samp {
  font-family: Consolas, monaco, monospace;
  font-size: 0.875rem;
  color: #f0506e;
  white-space: nowrap;
  padding: 2px 6px;
  background: #f8f8f8;
}
.column__body ins {
  background: #ffd;
  color: #666;
  text-decoration: none;
}
.column__body mark {
  background: #ffd;
  color: #666;
}
.column__body q {
  font-style: italic;
}
.column__body small {
  font-size: 80%;
}
.column__body sub,
.column__body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.column__body sup {
  top: -0.5em;
}
.column__body sub {
  bottom: -0.25em;
}
.column__body audio,
.column__body canvas,
.column__body iframe,
.column__body img,
.column__body svg,
.column__body video {
  vertical-align: middle;
}
.column__body canvas,
.column__body img,
.column__body svg,
.column__body video {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}
.column__body img:not([src]) {
  visibility: hidden;
  min-width: 1px;
}
.column__body iframe {
  border: 0;
  display: block;
  width: 100%;
  margin: auto;
}
.column__body p,
.column__body ul,
.column__body ol,
.column__body dl,
.column__body pre,
.column__body address,
.column__body fieldset,
.column__body figure {
  margin: 0 0 3.8rem 0;
}
.column__body * + p,
.column__body * + ul,
.column__body * + ol,
.column__body * + dl,
.column__body * + pre,
.column__body * + address,
.column__body * + fieldset,
.column__body * + figure {
  margin-top: 3.8rem;
}
.column__body ul, .column__body ol {
  margin-top: -1.8rem;
  margin-bottom: -1.8rem;
}
.column__body ul:has(+ :is(h1, h2, h3, h4, h5, h6)),
.column__body ol:has(+ :is(h1, h2, h3, h4, h5, h6)) {
  margin-bottom: 3.8rem;
}
.column__body ul.mt__auto,
.column__body ol.mt__auto {
  margin-top: auto;
}
.column__body ul.mb__auto,
.column__body ol.mb__auto {
  margin-bottom: auto;
}
.column__body h1,
.column__body h2,
.column__body h3,
.column__body h4,
.column__body h5,
.column__body h6 {
  margin: 0 0 3.8rem 0;
  font-weight: normal;
  text-transform: none;
}
.column__body h1 {
  font-size: 2.23125rem;
  line-height: 1.2;
}
.column__body h2 {
  font-size: 1.7rem;
  line-height: 1.3;
}
.column__body h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}
.column__body h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}
.column__body h5 {
  font-size: 1rem;
  line-height: 1.4;
}
.column__body h6 {
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .column__body h1 {
    font-size: 2.625rem;
  }
  .column__body h2 {
    font-size: 2rem;
  }
}
.column__body ul,
.column__body ol {
  padding-left: 30px;
  list-style-type: revert;
}
.column__body ul > li > ul,
.column__body ul > li > ol,
.column__body ol > li > ol,
.column__body ol > li > ul {
  margin: 0;
}
.column__body dt {
  font-weight: bold;
}
.column__body dd {
  margin-left: 0;
}
.column__body table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-right: 0;
  background-color: #fff;
  margin-bottom: 3.8rem;
}
.column__body * + table {
  margin-top: 3.8rem;
}
.column__body table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
}
.column__body table td {
  padding: 16px 12px;
  vertical-align: top;
  border-right: 1px solid #e5e5e5;
}
.column__body table td > :last-child {
  margin-bottom: 0;
}
.column__body table tfoot {
  font-size: 14px;
}
.column__body table caption {
  font-size: 14px;
  text-align: left;
  color: #999;
}
.column__body table > :first-child > tr:not(:first-child),
.column__body table > :not(:first-child) > tr,
.column__body table > tr:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}
.column__body hr {
  overflow: visible;
  text-align: inherit;
  margin: 0 0 3.8rem 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
.column__body * + hr {
  margin-top: 3.8rem;
}
.column__body address {
  font-style: normal;
}
.column__body blockquote {
  margin: 0 0 3.8rem 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid #ccc;
}
.column__body * + blockquote {
  margin-top: 3.8rem;
}
.column__body blockquote p:last-of-type {
  margin-bottom: 0;
}
.column__body blockquote footer {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
}
.column__body blockquote footer::before {
  content: "-- ";
}
.column__body pre {
  font: 0.875rem/1.5 Consolas, monaco, monospace;
  color: #666;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  overflow: auto;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  background: #fff;
}
.column__body pre code {
  font-family: Consolas, monaco, monospace;
}
.column__body details,
.column__body main {
  display: block;
}
.column__body summary {
  display: list-item;
}
.column__body template {
  display: none;
}

/* お問い合わせリンク */
.contactLink {
  position: relative;
  display: block;
  max-width: 500px;
  margin: 115px auto 0;
  padding: 30px 5%;
  color: #0B318F;
  background-color: #fff;
  transition-duration: 0.1s;
  box-sizing: border-box;
  border: 1px solid #0B318F;
}
.contactLink:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background-color: #0B318F;
  width: 23px;
  height: 27px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.contactLink .contactLink__text:after {
  content: "contact";
  display: block;
  color: #0B318F;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
}
.contactLink .contactLink__text:before {
  content: "";
  display: block;
  width: 44px;
  height: 33px;
  background-color: #0B318F;
  -webkit-mask-image: url("/images/column/ico_contact.svg");
          mask-image: url("/images/column/ico_contact.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.contactLink:hover {
  color: #fff;
  background-color: #0B318F;
}
.contactLink:hover:after {
  background-color: #fff;
}
.contactLink:hover .contactLink__text:after {
  color: #fff;
}
.contactLink:hover .contactLink__text:before {
  background-color: #fff;
}

.contactLink__text {
  display: grid;
  align-items: center;
  justify-items: start;
  grid-template-columns: 73px max-content;
  grid-template-rows: 1fr 1fr;
  font-size: 1.4rem;
  margin-block: var(--leading-trim);
}
.contactLink__text:before {
  grid-column: 1/2;
  grid-row: 1/3;
}
.contactLink__text:after {
  grid-column: 2/3;
  grid-row: 1/2;
}

/* 戻るボタン */
.return {
  margin: 115px auto 0;
}
.return a {
  display: block;
  max-width: 155px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  color: #0B318F;
  text-align: center;
  line-height: 48px;
  transition-duration: 0.1s;
  border: 1px solid #0B318F;
}
.return a:hover {
  color: #fff;
  background-color: #0B318F;
}

/* 関連リンク */
.relatedEntry {
  margin-top: 115px;
}
.relatedEntry .columnList {
  margin-top: 50px;
}

/* 検索結果 - 該当記事がない場合 */
.noSearchResults {
  margin-top: 95px;
  text-align: center;
}

main {
  background-image: url(/images/column/column_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}/*# sourceMappingURL=column.css.map */