@charset "UTF-8";
/* ▼▼▼ News一覧 ▼▼▼ */
.category_wrap {
  border: 1px solid var(--Line-Primary);
  background: var(--Background-Secondary);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px;
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .category_wrap {
    display: none;
  }
}
.category_wrap a {
  display: block;
  padding: 12px;
  background: #EEF0F3;
  border-radius: var(--Corner-Radius-Circle);
  color: var(--Object-Secondary);
  font-size: var(--Label-Small);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}
.category_wrap a::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  background: var(--Brand-color-Primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 4px;
}
.category_wrap a.active {
  background: var(--Background-Primary);
  border: 1px solid var(--Brand-color-Primary);
  color: var(--Object-Primary);
}
.category_wrap a.active::before {
  background: #A2A9B3;
}

.select_area {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .select_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 8px;
  }
}

.select_wrap {
  background: var(--Background-Primary);
  border: 1px solid var(--Line-Primary);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  position: relative;
  width: 260px;
  margin-left: auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .select_wrap {
    width: 50%;
    margin-bottom: 8px;
  }
}
.select_wrap::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow_nav.svg) no-repeat center/contain;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 8px;
}
.select_wrap select {
  background: none;
  border: none;
  width: 100%;
  padding: 0 20px 0 16px;
  height: 44px;
  text-overflow: ellipsis;
  outline: none;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: 14px;
  color: var(--Object-Primary);
  cursor: pointer;
}
.select_wrap select::-ms-expand {
  display: none;
}

.news .heading_title {
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .news .heading_title {
    margin-bottom: 16px;
  }
}
.news_list {
  margin-bottom: var(--Padding-Layout-SectionInnermedium);
  margin: 0 auto 32px;
}
.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
  color: inherit;
  border-bottom: 1px solid var(--Line-Primary);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 16px 0;
    gap: 8px 0;
  }
}
.news_item[target=_blank] .news_item_title {
  padding-right: 24px;
  position: relative;
}
.news_item[target=_blank] .news_item_title::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
}
@media (hover: hover) {
  .news_item:hover {
    opacity: 1;
    background: #DCDEE0;
  }
  .news_item:hover .news_item_title {
    color: #8F9197;
  }
}
@media screen and (max-width: 767px) {
  .news_item.icon_new .news_item_title {
    -webkit-line-clamp: 3;
  }
}
.news_item.icon_new .news_item_title::before {
  content: "NEW";
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--News-New-Size);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Brand-color-Primary);
}
@media screen and (max-width: 767px) {
  .news_item.icon_new .news_item_title::before {
    display: block;
    margin-bottom: 8px;
  }
}
.news_item_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .news_item_meta {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news_item_date {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--News-Item-Date-Size);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Object-News-Date);
}
.news_item_category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--Background-Primary);
  border-radius: 4px;
  width: var(--News-Category-Width);
  padding: 3px 5px;
  font-size: var(--News-Category-Size);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.news_item_category.important {
  background: var(--Background-Tag-Attention);
}
.news_item_title {
  padding-left: 24px;
  border-left: 1px solid var(--Line-Primary);
  color: var(--Object-Primary);
  font-weight: 400;
  font-size: var(--News-Item-Title-Size);
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news_item_title {
    padding: 0;
    border: none;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-decoration: none;
  }
}
.news_item_arrow {
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow.svg") no-repeat center/16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ▼▼▼ News詳細▼▼▼ */
.detail .article_title {
  font-size: var(--Heading-ArticleTitle);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.detail .subject_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  margin: 0 auto;
}
.detail_date {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--Label-Small);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Object-News-Date);
}
.detail_category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--Background-Secondary);
  border-radius: 2px;
  width: 140px;
  padding: 3px 5px;
  font-size: var(--Label-Small);
  line-height: 1.2;
  font-weight: 500;
}

.article {
  padding: 0 24px;
}
.article_inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  background: var(--Background-Primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 48px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .article_inner {
    padding: 32px 24px;
  }
}
.article .heading_H2, .article .heading_H3 {
  margin-bottom: 0;
}
.article .heading_H4 {
  font-size: var(--Heading-H4);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.article a {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
}
@media (hover: hover) {
  .article a:hover {
    text-decoration: none;
  }
}
.article .txt_link a, .article .pdf_link a {
  text-decoration: none;
}
@media (hover: hover) {
  .article .txt_link a:hover, .article .pdf_link a:hover {
    text-decoration: underline;
  }
}
.article .txt_link a::after, .article .pdf_link a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}
.article a.txt_link {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
}
@media (hover: hover) {
  .article a.txt_link:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.article .txt_link a::after {
  background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
}
.article .pdf_link a::after {
  background: url("../img/icon_pdf.svg") no-repeat center/contain;
  width: 17px;
  height: 17px;
}
.article .btn {
  color: var(--Object-Primary-Reverse) !important;
  text-decoration: none !important;
}
.article .btn span {
  color: var(--Object-Primary-Reverse) !important;
}
.article .btn:hover span {
  color: var(--Brand-color-Primary) !important;
}
.article hr {
  border-color: var(--Line-Primary);
  margin: 24px 0;
}
.article .img_wrap figcaption, .article .img_wrap .caption {
  margin-top: 8px;
  font-size: var(--Label-Small);
}
.article .img_wrap.col1 {
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
}
.article .img_wrap.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media screen and (max-width: 767px) {
  .article .img_wrap.col2 {
    grid-template-columns: 100%;
  }
}
.article .img_wrap.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}
@media screen and (max-width: 767px) {
  .article .img_wrap.col3 {
    grid-template-columns: 100%;
  }
}
.article .img_wrap.col2_cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .article .img_wrap.col2_cap {
    gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.article .img_wrap.col2_cap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .article .img_wrap.col2_cap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.article .img_wrap img {
  max-width: 100%;
  border-radius: 4px;
}
.article .img_wrap .video_wrap.col2 {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1.019fr 1fr;
  gap: 0 32px;
}
@media screen and (max-width: 767px) {
  .article .img_wrap .video_wrap.col2 {
    grid-template-columns: 100%;
  }
}
.article .img_wrap .video_wrap_iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
}
.article .img_wrap .video_wrap_iframe iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.article ol li:not(:last-child), .article ul li:not(:last-child) {
  margin-bottom: 8px;
}
.article ol {
  list-style: decimal;
  padding-left: 1em;
}
.article ul.disc li {
  padding-left: 1em;
  position: relative;
}
.article ul.disc li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  top: 9px;
  left: 0;
}
.article ul.notes li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: var(--Label-Small);
}
.article ul.notes li::before {
  content: "※";
}
.article blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  background: var(--Background-Primary-Base);
  border-left: 4px solid var(--Brand-color-Primary);
  padding: 32px;
  padding-left: 90px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .article blockquote {
    padding-left: 75px;
  }
}
.article blockquote::before {
  content: "";
  background: url("../img/icon_quote.svg") no-repeat center/contain;
  width: 31px;
  height: 23px;
  position: absolute;
  top: 32px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .article blockquote::before {
    width: 24px;
    height: 18px;
    top: 32px;
    left: 30px;
  }
}
.article blockquote p {
  margin-bottom: 0 !important;
  font-size: var(--Label-Medium);
  line-height: 1.6;
  color: var(--Object-Primary);
}
.article blockquote cite {
  margin: 0;
  display: block;
  text-align: right;
  font-size: var(--Label-Medium);
  line-height: 1.6;
  color: var(--Object-Secondary);
  font-style: normal;
  margin-left: auto;
}
.article .profile {
  background: var(--Background-Primary-Base);
  border-radius: 4px;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .article .profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
}
.article .profile_image {
  border-radius: 10px;
  width: 245px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article .profile_image {
    width: 100%;
  }
}
.article .profile_image img {
  width: 100%;
}
.article .profile_content_title {
  border-bottom: 1px solid var(--Line-Primary);
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-weight: 500;
}
.article .profile .txt_link {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .article .profile .txt_link a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .article .profile .txt_link a::after {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.article_table_scroll {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .article_table_scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.article_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  line-height: 1.6;
  color: var(--Object-Primary);
}
@media screen and (max-width: 767px) {
  .article_table {
    min-width: 860px;
  }
}
.article_table th,
.article_table td {
  border: 1px solid var(--Line-Primary);
  padding: 16px;
  vertical-align: top;
  word-break: break-word;
}
.article_table thead th {
  background: var(--Background-Tertiary);
  font-weight: 500;
  text-align: left;
}
.article_table tbody td {
  background: var(--Background-Primary);
  font-weight: 400;
}
.article_table_cell_muted {
  background: #EEF0F3 !important;
}

.sns_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 32px 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sns_share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 0;
  }
}
.sns_share_icons {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .sns_share_icons {
    gap: 24px;
    padding: 16px 24px;
  }
}
.sns_share_icons img {
  width: 20px;
}

.related_products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .related_products {
    grid-template-columns: 100%;
    gap: 16px;
  }
}
.related_products a {
  text-decoration: none !important;
}
@media (hover: hover) {
  .related_products a:hover .related_products a_title {
    text-decoration: underline !important;
  }
}
.related_products_item {
  display: grid;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 4px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .related_products_item {
    grid-template-columns: 100%;
    gap: 8px;
  }
}
.related_products_item_image {
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .related_products_item_image {
    width: 120px;
  }
}
.related_products_item_image img {
  width: 100%;
}
.related_products_item_content {
  display: block;
  padding-right: 30px;
  position: relative;
}
.related_products_item_content::after {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
}
.related_products_item_title {
  font-size: var(--Heading-H5);
  color: var(--Object-Primary);
  font-weight: 500;
}
.related_products_item_code {
  margin-top: 4px;
  color: var(--Object-Secondary);
  font-family: var(--font-family-en);
  font-weight: 500;
}

.related_news {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .related_news {
    padding: 48px 0;
  }
}
.related_news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .related_news_list {
    grid-template-columns: 100%;
    gap: 0 16px;
    margin-bottom: 32px;
  }
}
.related_news_list .news_item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px 8px;
  width: 100%;
  padding: 24px 0;
}
.related_news_list .news_item.arrow::after, .related_news_list .news_item.arrow_external::after {
  position: static;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin-left: auto;
}
@media (hover: hover) {
  .related_news_list .news_item:hover {
    opacity: 1;
  }
}
.related_news_list .news_item_meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .related_news_list .news_item_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.related_news_list .news_item_title {
  border: none;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  position: relative;
  padding: 0 !important;
}
.related_news_list .news_item_title::after {
  display: none;
}