@charset "UTF-8";
dl, dd {
  margin: 0;
}

img, source {
  max-width: 100%;
  height: auto;
}

.br-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}
.br-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .dpc {
    display: none;
  }
}

.dsp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .dsp {
    display: block;
  }
}

.c-searchform {
  /* 1. ラベル自体の設定 */
}
.c-searchform label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.c-searchform label.is-active {
  background-color: #BE000B;
  color: #ffffff;
}
.c-searchform {
  /* 2. 【重要】中身のinputがフォーカスされたら、labelにアウトラインを出す */
}
.c-searchform label:focus-within {
  outline: 1px solid #BE000B; /* WCAG 2.4.7 準拠の目立つ色 */
  border-radius: 2px;
}
.c-searchform {
  /* 3. input自体のフォーカスリングは消す（二重にならないように） */
}
.c-searchform input[type=checkbox]:focus {
  outline: none;
}
.c-searchform input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-searchform .flex {
  display: flex;
}
.c-searchform .searchform {
  border: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform {
    border: none;
  }
}
.c-searchform .searchform .searchform_inner .keyword, .c-searchform .searchform .searchform_inner .tag {
  display: flex;
  border-bottom: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .searchform_inner .keyword, .c-searchform .searchform .searchform_inner .tag {
    display: block;
    border: 1px solid #C8C8C8;
  }
}
.c-searchform .searchform .searchform_inner .keyword:last-child, .c-searchform .searchform .searchform_inner .tag:last-child {
  border-bottom: none;
}
.c-searchform .searchform dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 234px;
  color: #333;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 170%; /* 28.9px */
  background: #F5F5F5;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform dt {
    padding: 10px 0;
    width: auto;
    border-bottom: 1px solid #C8C8C8;
    color: var(--semantic-text, #333);
    font-size: 0.9375rem;
  }
}
.c-searchform .searchform dt::before {
  content: "";
  display: inline-block;
  margin-right: 14px;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform dt::before {
    margin-right: 5px;
  }
}
.c-searchform .searchform .keyword dt::before {
  width: 21px;
  height: 22px;
  background: left top/20.832px auto no-repeat url("/ja/technology/assets/images/common/icon-search-black.svg");
}
.c-searchform .searchform .tag dt::before {
  width: 20px;
  height: 12px;
  background: left top/19.26px auto no-repeat url("/ja/technology/assets/images/common/icon-tag.svg");
}
.c-searchform .searchform dd {
  flex: 1;
  border-left: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform dd {
    border-left: none;
  }
}
.c-searchform .searchform dd .keywords .wrapper, .c-searchform .searchform dd .tags .wrapper, .c-searchform .searchform dd .categories .wrapper {
  display: flex;
  align-items: center;
  padding: 23px 28px;
  border-bottom: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform dd .keywords .wrapper, .c-searchform .searchform dd .tags .wrapper, .c-searchform .searchform dd .categories .wrapper {
    display: block;
    padding: 20px 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-searchform .searchform dd .keywords .wrapper:last-child, .c-searchform .searchform dd .tags .wrapper:last-child, .c-searchform .searchform dd .categories .wrapper:last-child {
    border-bottom: none;
  }
}
.c-searchform .searchform dd .keywords .wrapper .name, .c-searchform .searchform dd .tags .wrapper .name, .c-searchform .searchform dd .categories .wrapper .name {
  width: 120px;
  color: #333;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 170%; /* 28.9px */
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform dd .keywords .wrapper .name, .c-searchform .searchform dd .tags .wrapper .name, .c-searchform .searchform dd .categories .wrapper .name {
    margin: 0 0 10px;
    font-size: 1.0625rem;
  }
}
.c-searchform .searchform dd .keywords .wrapper .flex, .c-searchform .searchform dd .tags .wrapper .flex, .c-searchform .searchform dd .categories .wrapper .flex {
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform dd .keywords .wrapper .flex, .c-searchform .searchform dd .tags .wrapper .flex, .c-searchform .searchform dd .categories .wrapper .flex {
    gap: 5px;
  }
}
.c-searchform .searchform dd .keywords .wrapper .flex li .tag, .c-searchform .searchform dd .tags .wrapper .flex li .tag, .c-searchform .searchform dd .categories .wrapper .flex li .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 9px;
  height: 30px;
  color: #BE000B;
  border: 1px solid #BE000B;
  background: #FFF;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media print, screen and (min-width: 768px) {
  .c-searchform .searchform dd .keywords .wrapper .flex li .tag:hover, .c-searchform .searchform dd .tags .wrapper .flex li .tag:hover, .c-searchform .searchform dd .categories .wrapper .flex li .tag:hover {
    text-decoration: underline;
  }
}
.c-searchform .searchform dd .keywords .wrapper .flex li .tag.is-active, .c-searchform .searchform dd .tags .wrapper .flex li .tag.is-active, .c-searchform .searchform dd .categories .wrapper .flex li .tag.is-active {
  color: #FFF;
  background: #BE000B;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .keyword {
    margin-bottom: 15px;
  }
}
.c-searchform .searchform .keyword .flex {
  justify-content: center;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .keyword .flex {
    padding: 15px 0;
  }
}
.c-searchform .searchform .keyword .flex .flex-inner {
  display: flex;
  margin: 0 25px;
  width: 100%;
  border: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .keyword .flex .flex-inner {
    margin: 0 15px;
  }
}
.c-searchform .searchform .keyword input {
  display: block;
  padding-left: 20px;
  flex: 1;
  width: 100%;
  height: 45px;
  border: none;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .keyword input {
    padding-left: 15px;
    height: 40px;
    font-size: 1rem;
    transform: scale(0.9375);
    transform-origin: left center;
  }
}
.c-searchform .searchform .keyword button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 80px;
  height: 45px;
  gap: 5px;
  color: #FFF;
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  background: #333;
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .keyword button {
    width: 70px;
    height: 40px;
    font-size: 0.9375rem;
  }
}
.c-searchform .searchform .keyword button::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: left top/100% auto no-repeat url("/ja/technology/assets/images/common/icon-search.svg");
}
@media only screen and (max-width: 767px) {
  .c-searchform .searchform .tags {
    margin-bottom: 15px;
  }
}
.c-searchform .btn .reset {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  padding: 10px 0;
  width: 100%;
  font-size: 1.0625rem;
  color: #333;
  border: none;
  border-right: 1px solid var(--color-grey-78, #C8C8C8);
  border-bottom: 1px solid var(--color-grey-78, #C8C8C8);
  border-left: 1px solid var(--color-grey-78, #C8C8C8);
  background: var(--semantic-bg, #F5F5F5);
}
@media print, screen and (min-width: 768px) {
  .c-searchform .btn .reset:hover {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 767px) {
  .c-searchform .btn .reset {
    border: 1px solid #C8C8C8;
  }
}
.c-searchform .btn .reset .icon-close {
  display: block;
  width: 13px;
  height: 13px;
  background: center center/100% auto no-repeat url("/ja/technology/assets/images/common/icon-close-red.svg");
}

.c-result_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .c-result_header {
    display: block;
    margin-bottom: 40px;
  }
}
.c-result_header .count {
  font-size: 1.0625rem;
  line-height: 175%; /* 29.75px */
}
@media only screen and (max-width: 767px) {
  .c-result_header .count {
    margin-bottom: 15px;
  }
}
.c-result_header .count .num {
  color: #BE000B;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .c-result_header .count .num {
    font-size: 1.875rem;
  }
}
.c-result_header .sort {
  display: flex;
  gap: 0 20px;
  font-size: 1.0625rem;
}
.c-result_header .sort select {
  color: #333;
  padding: 10px 50px 10px 23px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #737373;
  background: right 23px center/17px auto no-repeat url("/ja/technology/assets/images/common/icon-arrow-down.svg");
  transition: border 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  .c-result_header .sort select:hover {
    border: 1px solid #BE000B;
  }
}

.c-articles {
  display: flex;
  gap: 0 min(1.944vw, 28px);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .c-articles {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0;
  }
}
.c-articles > li {
  width: min(19.375vw, 279px);
}
@media only screen and (max-width: 767px) {
  .c-articles > li {
    width: 45.385vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-articles a:hover .title, .c-articles a:hover .lead {
    text-decoration: underline;
  }
}
.c-articles .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
.c-articles .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  .c-articles .date {
    font-size: 0.75rem;
  }
}
.c-articles .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .c-articles .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
.c-articles .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  .c-articles .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
.c-articles .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .c-articles .tags {
    gap: 10px;
  }
}
.c-articles .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-articles .tags li {
    padding: 5px;
  }
}

.c-article_item {
  width: min(21.797vw, 279px);
}
@media print, screen and (min-width: 768px) {
  .c-article_item a:hover .title, .c-article_item a:hover .lead {
    text-decoration: underline;
  }
}
.c-article_item .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
.c-article_item .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  .c-article_item .date {
    font-size: 0.75rem;
  }
}
.c-article_item .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .c-article_item .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
.c-article_item .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  .c-article_item .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
.c-article_item .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .c-article_item .tags {
    gap: 10px;
  }
}
.c-article_item .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-article_item .tags li {
    padding: 5px;
  }
}

.c-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 732/412;
  border: 4px solid;
  box-sizing: border-box;
}
.c-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  .c-thumbnail:hover img {
    transform: scale(1.08);
  }
}
.c-thumbnail.red {
  -o-border-image: linear-gradient(to right, #D04444, #F49797) 1;
     border-image: linear-gradient(to right, #D04444, #F49797) 1;
}
.c-thumbnail.blue {
  -o-border-image: linear-gradient(to right, #6464CD, #63B1D0) 1;
     border-image: linear-gradient(to right, #6464CD, #63B1D0) 1;
}
.c-thumbnail.gray {
  -o-border-image: linear-gradient(to right, #6F6F6F, #919191) 1;
     border-image: linear-gradient(to right, #6F6F6F, #919191) 1;
}
.c-thumbnail.green {
  -o-border-image: linear-gradient(to right, #058B09, #A4D472) 1;
     border-image: linear-gradient(to right, #058B09, #A4D472) 1;
}
.c-thumbnail.purple {
  -o-border-image: linear-gradient(to right, #7469BD, #CFBEDB) 1;
     border-image: linear-gradient(to right, #7469BD, #CFBEDB) 1;
}
.c-thumbnail.cyan {
  -o-border-image: linear-gradient(to right, #699ABD, #BECFDB) 1;
     border-image: linear-gradient(to right, #699ABD, #BECFDB) 1;
}

.c-chart {
  position: relative;
  padding-bottom: 35px;
}
.c-chart.close {
  margin-bottom: -55px;
  height: min(50.234vw, 643px);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-chart.close {
    height: 97.436vw;
  }
}
.c-chart.close::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 69.23%);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.c-chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 69.23%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.c-chart img {
  display: block;
}
.c-chart button, .c-chart a.link, .c-chart a.anchor {
  font-size: min(1.328vw, 17px);
}
@media only screen and (max-width: 767px) {
  .c-chart button, .c-chart a.link, .c-chart a.anchor {
    font-size: 4.103vw;
  }
}
.c-chart .btn button, .c-chart .btn .anchor {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: min(1.172vw, 15px) 0;
  width: 100%;
  max-width: min(45.156vw, 578px);
  font-weight: 700;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  background: #FFF;
  box-shadow: 3px 3px 2px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
  .c-chart .btn button, .c-chart .btn .anchor {
    padding: 10px 0;
    width: 100%;
    max-width: none;
    font-size: 4.103vw;
    line-height: 145%;
    outline: none;
  }
}
@media print, screen and (min-width: 768px) {
  .c-chart .btn button:hover, .c-chart .btn .anchor:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}
.c-chart .btn button i, .c-chart .btn .anchor i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: min(1.172vw, 15px);
  margin: auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(2.031vw, 26px);
  height: min(2.031vw, 26px);
  border-radius: min(1.016vw, 13px);
}
@media only screen and (max-width: 767px) {
  .c-chart .btn button i, .c-chart .btn .anchor i {
    right: 2.564vw;
    width: 6.667vw;
    height: 6.667vw;
    border-radius: 3.333vw;
  }
}
.c-chart .btn .anchor img {
  margin-top: 2px;
}
.c-chart a.link {
  display: flex;
  justify-content: center;
  padding: min(0.781vw, 10px) 0;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 3px 3px 2px 0 rgba(0, 0, 0, 0.15);
  outline-color: #333;
}
@media only screen and (max-width: 767px) {
  .c-chart a.link {
    padding: 2.564vw 0;
  }
}
@media print, screen and (min-width: 768px) {
  .c-chart a.link:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}
.c-chart a.link i::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.c-chart .links {
  display: flex;
  justify-content: center;
  gap: 0 min(2.031vw, 26px);
  margin: 0 min(3.125vw, 40px);
}
.c-chart .chart_title {
  font-size: 1.375rem;
}
@media only screen and (max-width: 767px) {
  .c-chart .chart_title {
    font-size: 4.103vw;
  }
}
.c-chart .production h3 {
  margin: 0;
  padding: min(1.172vw, 15px) 0;
  text-align: center;
  color: #fff;
  background-color: #737373;
}
@media only screen and (max-width: 767px) {
  .c-chart .production h3 {
    padding: 2.564vw 0;
  }
}
.c-chart .production .btn {
  padding: min(1.953vw, 25px) 0;
  background-color: #E0EEFF;
}
@media only screen and (max-width: 767px) {
  .c-chart .production .btn {
    padding: 3.846vw 3.205vw;
  }
}
.c-chart .production .btn button, .c-chart .production .btn .anchor {
  color: #5B6FA4;
  border-color: #5B6FA4;
}
.c-chart .production .btn button i, .c-chart .production .btn .anchor i {
  background-color: #5B6FA4;
}
.c-chart .incorporated {
  padding: min(5.469vw, 70px) 0 min(5.469vw, 70px);
  background: center bottom min(1.172vw, 15px)/min(71.563vw, 916px) auto no-repeat url("/ja/technology/assets/images/top/rd-arrow.png");
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated {
    padding: 16.667vw 0;
    background-position: center bottom 2.564vw;
    background-size: 70.513vw auto;
    background-image: url("/ja/technology/assets/images/top/rd-arrow-sp.png");
  }
}
.c-chart .incorporated .inner {
  padding-bottom: min(2.344vw, 30px);
  background-color: #E8E6F3;
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated .inner {
    padding: 6.41vw 0;
  }
}
.c-chart .incorporated .btn {
  padding: min(2.734vw, 35px) 0 min(1.953vw, 25px);
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated .btn {
    margin-bottom: 3.846vw;
    padding: 0 3.205vw;
  }
}
.c-chart .incorporated .btn button, .c-chart .incorporated .btn .anchor {
  color: #736CA6;
  border-color: #736CA6;
}
.c-chart .incorporated .btn button i, .c-chart .incorporated .btn .anchor i {
  background-color: #736CA6;
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated .links {
    flex-direction: column;
    gap: 5px 0;
  }
}
.c-chart .incorporated a.link {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  background-color: #736CA6;
}
.c-chart .incorporated li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: min(1.953vw, 25px) min(1.563vw, 20px) min(1.172vw, 15px);
  width: 33.3333%;
  max-width: min(27.813vw, 356px);
  height: min(11.25vw, 144px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated li {
    padding: 2.564vw 3.846vw 3.846vw 3.846vw;
    width: auto;
    height: 29.487vw;
    max-width: none;
  }
}
.c-chart .incorporated li:nth-child(1) img {
  width: min(15.391vw, 197px);
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated li:nth-child(1) img {
    width: 50.513vw;
  }
}
.c-chart .incorporated li:nth-child(2) img {
  width: min(17.734vw, 227px);
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated li:nth-child(2) img {
    width: 58.462vw;
  }
}
.c-chart .incorporated li:nth-child(3) img {
  width: min(18.984vw, 243px);
}
@media only screen and (max-width: 767px) {
  .c-chart .incorporated li:nth-child(3) img {
    width: 62.308vw;
  }
}
.c-chart .support {
  padding-bottom: min(1.172vw, 15px);
  background-color: #FBE5E7;
}
@media only screen and (max-width: 767px) {
  .c-chart .support {
    padding: 6.41vw 0 3.846vw;
  }
}
.c-chart .support .btn {
  padding: min(2.734vw, 35px) 0 min(1.953vw, 25px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support .btn {
    margin-bottom: 3.846vw;
    padding: 0 3.205vw;
  }
}
.c-chart .support .btn button, .c-chart .support .btn .anchor {
  color: #A65B40;
  border-color: #A65B40;
}
.c-chart .support .btn button i, .c-chart .support .btn .anchor i {
  background-color: #A65B40;
}
.c-chart .support .links {
  justify-content: center;
  gap: 0 min(0.313vw, 4px);
  margin-bottom: min(1.172vw, 15px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support .links {
    margin-bottom: 3.846vw;
    flex-wrap: wrap;
    gap: 1.282vw;
  }
}
.c-chart .support a.link {
  width: min(12.031vw, 154px);
  background-color: #A65B40;
  margin: 0 min(2.5vw, 32px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support a.link {
    width: 100%;
  }
}
.c-chart .support li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: min(1.563vw, 20px) 0 min(1.172vw, 15px);
  width: min(17.109vw, 219px);
  height: min(20vw, 256px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-chart .support li {
    padding: 3.846vw 3.846vw;
    width: 46.154vw;
    height: 53.846vw;
  }
}
.c-chart .support li:nth-child(1) img {
  width: min(11.172vw, 143px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support li:nth-child(1) img {
    width: 30.513vw;
  }
}
.c-chart .support li:nth-child(2) img {
  width: min(9.297vw, 119px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support li:nth-child(2) img {
    width: 23.333vw;
  }
}
.c-chart .support li:nth-child(3) img {
  width: min(11.719vw, 150px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support li:nth-child(3) img {
    width: 30.513vw;
  }
}
.c-chart .support li:nth-child(4) img {
  width: min(10.234vw, 131px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support li:nth-child(4) img {
    width: 25.897vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-chart .support li:nth-child(5) {
    width: 100%;
    height: 37.179vw;
  }
}
.c-chart .support li:nth-child(5) img {
  width: min(12.5vw, 160px);
}
@media only screen and (max-width: 767px) {
  .c-chart .support li:nth-child(5) img {
    width: 63.333vw;
  }
}
.c-chart .support .note {
  margin: 0 min(3.125vw, 40px);
  font-size: 0.875rem;
  line-height: 170%;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .c-chart .support .note {
    text-align: left;
  }
}

.c-acc-btn {
  position: relative;
  margin: 0 auto;
  width: 366px;
  height: 55px;
  color: #333;
  border: 1px solid #737373;
  background: #FFF;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-acc-btn {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .c-acc-btn:hover {
    text-decoration: underline;
  }
}
.c-acc-btn i {
  position: absolute;
  right: 15px;
}

.c-more-search-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  margin: 0 auto;
  width: 100%;
  height: 55px;
  color: #333;
  border: 1px solid #C8C8C8;
  background: #F5F5F5;
  cursor: pointer;
}
.c-more-search-btn::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background: left top/100% auto no-repeat url("/ja/technology/assets/images/common/icon-search-black.svg");
}
.c-more-search-btn i {
  position: absolute;
  right: 15px;
}

.c-close-search-btn {
  border: none;
  background: none;
  color: var(--semantic-text, #333);
  font-size: 1rem;
}
.c-close-search-btn.is-hidden {
  display: none;
}

.c-dialog_wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}
.c-dialog_wrapper:after {
  content: "";
  display: block;
  height: 120px;
}
.c-dialog_wrapper.visible {
  display: block;
}
.c-dialog_wrapper dialog {
  position: relative;
  margin: 0 auto;
  padding: 200px 0 120px;
  background: none;
  border: none;
  overflow: visible;
  max-width: none;
  max-height: none;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog {
    margin: 0 12.5px;
    padding: 100px 0;
  }
}
.c-dialog_wrapper dialog .inner {
  padding: 70px 100px;
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .inner {
    padding: 35px 15px;
  }
}
.c-dialog_wrapper dialog .dialog-head {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .dialog-head {
    margin-bottom: 25px;
  }
}
.c-dialog_wrapper dialog .dialog-head::after {
  display: block;
  content: "";
  margin: 25px auto 0;
  width: 86px;
  height: 4px;
  background-color: #BE000B;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .dialog-head::after {
    margin-top: 15px;
    width: 45px;
    height: 3px;
  }
}
.c-dialog_wrapper dialog .dialog-head h2 {
  outline: none;
}
.c-dialog_wrapper dialog .mColumn__2 {
  gap: 0 40px;
}
.c-dialog_wrapper dialog .mColumn__2 .image {
  width: 400px;
}
.c-dialog_wrapper dialog .mColumn__2 .text {
  flex: 1;
}
.c-dialog_wrapper dialog .mColumn__2 .text .mText__regular {
  margin: 0;
}
.c-dialog_wrapper dialog .link_more {
  text-align: right;
}
.c-dialog_wrapper dialog .recommend {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 40px;
  width: 100%;
  gap: 1em;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .recommend {
    margin: 40px 0 20px;
    font-size: 1.4375rem;
  }
}
.c-dialog_wrapper dialog .recommend::before, .c-dialog_wrapper dialog .recommend::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #C8C8C8;
}
.c-dialog_wrapper dialog .c-articles {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .c-articles {
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .c-articles > li {
    padding: 20px 0;
    width: auto;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .c-articles > li:first-child {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .c-articles > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.c-dialog_wrapper dialog .close-modal {
  position: absolute;
  top: 160px;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  background: center center/26px auto no-repeat url("/ja/technology/assets/images/common/icon-close.svg");
  background-color: #737373;
}
@media only screen and (max-width: 767px) {
  .c-dialog_wrapper dialog .close-modal {
    top: 60px;
  }
}

.c-more_article .btn-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
  margin: 0 auto;
  background: none;
  border: none;
  color: var(--semantic-text, #333);
}

.lW__10 {
  width: 10% !important;
}

.lW__15 {
  width: 15% !important;
}

.lW__20 {
  width: 20% !important;
}

.lW__25 {
  width: 25% !important;
}

.lW__30 {
  width: 30% !important;
}

.lW__33 {
  width: 33.33% !important;
}

.lW__35 {
  width: 35% !important;
}

.lW__40 {
  width: 40% !important;
}

.lW__50 {
  width: 50% !important;
}

.lW__60 {
  width: 60% !important;
}

.lW__65 {
  width: 65% !important;
}

.lW__70 {
  width: 70% !important;
}

.lW__75 {
  width: 75% !important;
}

.lW__80 {
  width: 80% !important;
}

.lW__85 {
  width: 85% !important;
}

.lW__90 {
  width: 90% !important;
}

.lW__100 {
  width: 100% !important;
}

body.dialog-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

#technology {
  padding-bottom: 0;
}

#technology .technology .mMoreContents__each-link:hover {
  text-decoration: none;
}
#technology .technology .mPage__title-holder {
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .mPage__title-holder {
    padding: 40px 0 !important;
  }
}
#technology .technology .head-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .mv_wrapper {
    padding: 0;
  }
}
#technology .technology .mv {
  position: relative;
  display: flex;
  margin: 0 auto 35px;
  background: center center/cover no-repeat url("/ja/technology/assets/images/top/mv-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .mv {
    flex-direction: column;
    background: none;
  }
}
#technology .technology .mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52.75%;
  height: 100%;
  background: linear-gradient(90deg, #E0F1FF 0%, rgba(224, 241, 255, 0.9) 33.65%, rgba(204, 229, 249, 0) 100%);
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  #technology .technology .mv::before {
    display: none;
  }
}
#technology .technology .mv .box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: min(3.906vw, 50px) min(3.906vw, 50px) min(3.906vw, 50px) min(4.688vw, 60px);
  width: 56.333%;
  min-height: 300px;
  background: linear-gradient(90deg, #E0F1FF 0%, rgba(224, 241, 255, 0.9) 48.56%, rgba(204, 229, 249, 0) 100%);
}
@media only screen and (max-width: 767px) {
  #technology .technology .mv .box {
    order: 2;
    padding: 30px 25px;
    width: auto;
    min-height: auto;
    background: none;
  }
}
#technology .technology .mv .image {
  background: center center/cover no-repeat url("/ja/technology/assets/images/top/mv-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .mv .image {
    order: 1;
    width: auto;
    height: 73.333vw;
    min-height: auto;
    background: center center/cover no-repeat url("/ja/technology/assets/images/top/mv-bg-sp.jpg");
  }
}
#technology .technology .mv .btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 10px 10px 15px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 767px) {
  #technology .technology .mv .btn {
    top: 73.333vw;
    bottom: auto;
    right: 0;
    padding: 10px 20px;
    transform: translateY(-100%);
  }
}
#technology .technology .pickup-area {
  margin-bottom: 155px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area {
    margin-bottom: 100px;
  }
}
#technology .technology .pickup-area h2 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area h2 {
    margin-bottom: 0;
  }
}
#technology .technology .pickup-area .articles {
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  #technology .technology .pickup-area li a:hover .title, #technology .technology .pickup-area li a:hover .lead {
    text-decoration: underline;
  }
}
#technology .technology .pickup-area li .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
#technology .technology .pickup-area li .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .date {
    font-size: 0.75rem;
  }
}
#technology .technology .pickup-area li .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
#technology .technology .pickup-area li .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
#technology .technology .pickup-area li .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .tags {
    gap: 10px;
  }
}
#technology .technology .pickup-area li .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .tags li {
    padding: 5px;
  }
}
#technology .technology .pickup-area li .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .tags {
    gap: 10px;
  }
}
#technology .technology .pickup-area li .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #technology .technology .pickup-area li .tags li {
    padding: 5px;
  }
}
#technology .technology .rd-area {
  margin-bottom: 140px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .rd-area {
    margin-bottom: 80px;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .rd-area .head-wrapper {
    margin-bottom: 25px;
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
}
#technology .technology .rd-area .acc-btn_wrapper {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #technology .technology .rd-area .acc-btn_wrapper {
    margin: 0 12.5px 12.821vw;
  }
}
#technology .technology .rd-area .more {
  text-align: right;
}
#technology .technology .content_under {
  padding-bottom: 130px;
  background: linear-gradient(to bottom, #ffffff 200px, #F5F5F5 200px);
}
@media only screen and (max-width: 767px) {
  #technology .technology .content_under {
    padding-bottom: 50px;
    background: linear-gradient(to bottom, #ffffff 80px, #F5F5F5 80px);
  }
}
#technology .technology .canon-tech-area {
  margin-bottom: 150px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area {
    margin-bottom: 60px;
  }
}
#technology .technology .canon-tech-area h2 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area h2 {
    margin-bottom: 70px;
  }
}
#technology .technology .canon-tech-area .swiper {
  overflow: visible;
}
#technology .technology .canon-tech-area .mMoreContents__outer {
  margin: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .mMoreContents__outer {
    margin: 0 0 40px;
  }
}
#technology .technology .canon-tech-area .mMoreContents__holder {
  margin-top: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .mMoreContents__holder:last-child {
    padding-right: 1px;
  }
}
#technology .technology .canon-tech-area .mMoreContents__button {
  width: 48px;
  height: 48px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .mMoreContents__button {
    width: 50px;
    height: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  #technology .technology .canon-tech-area .swiper-wrapper a:hover .title, #technology .technology .canon-tech-area .swiper-wrapper a:hover .lead {
    text-decoration: underline;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
#technology .technology .canon-tech-area .swiper-wrapper .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper .date {
    font-size: 0.75rem;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper .tags {
    gap: 10px;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper .tags li {
    padding: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper {
    margin: 0;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper a {
  padding-left: 1px;
  width: 279px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper a {
    width: 337px;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper a .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper a .tags {
    gap: 10px;
  }
}
#technology .technology .canon-tech-area .swiper-wrapper a .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .swiper-wrapper a .tags li {
    padding: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  #technology .technology .canon-tech-area .swiper-wrapper a:first-child {
    margin-left: 1px;
  }
}
@media print, screen and (min-width: 768px) {
  #technology .technology .canon-tech-area .swiper-wrapper a:last-child {
    margin-right: 1px;
  }
}
#technology .technology .canon-tech-area .mMoreContents__controle-holder {
  justify-self: flex-end;
  margin-top: 70px;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .mMoreContents__controle-holder {
    margin-top: 30px;
    padding-left: 4.9333333333vw;
  }
}
#technology .technology .canon-tech-area .mMoreContents__pagination {
  background: none;
}
#technology .technology .canon-tech-area .lContainer {
  position: relative;
  overflow: hidden;
}
#technology .technology .canon-tech-area .lContainer .link {
  position: absolute;
  left: 30px;
  bottom: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #technology .technology .canon-tech-area .lContainer .link {
    position: initial;
    text-align: center;
  }
}
#technology .technology .interview-area .mText__titleLarge, #technology .technology .case-studies-area .mText__titleLarge {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .mText__titleLarge, #technology .technology .case-studies-area .mText__titleLarge {
    margin-bottom: 20px;
    font-size: 1.3125rem;
  }
}
#technology .technology .interview-area .wrapper, #technology .technology .case-studies-area .wrapper {
  position: relative;
  display: flex;
  margin-right: calc(50% - 50vw);
  margin-left: max(-4.688vw, -60px);
  padding: 40px 0 0 min(4.688vw, 60px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper, #technology .technology .case-studies-area .wrapper {
    display: block;
    margin: 0;
    padding: 0;
    background: none;
  }
}
#technology .technology .interview-area .wrapper .inner, #technology .technology .case-studies-area .wrapper .inner {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .inner, #technology .technology .case-studies-area .wrapper .inner {
    display: block;
    padding-bottom: 30px;
    width: auto;
  }
}
#technology .technology .interview-area .wrapper .aria-lead, #technology .technology .case-studies-area .wrapper .aria-lead {
  flex-shrink: 0;
  line-height: 2;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .aria-lead, #technology .technology .case-studies-area .wrapper .aria-lead {
    margin: 0 0 20px;
    width: auto;
    line-height: 145%;
  }
}
#technology .technology .interview-area .wrapper .articles, #technology .technology .case-studies-area .wrapper .articles {
  display: flex;
  justify-content: space-between;
  margin: -150px 0 0 0;
  max-width: min(67.578vw, 865px);
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles, #technology .technology .case-studies-area .wrapper .articles {
    display: block;
    margin: 0 0 30px 0;
    max-width: none;
  }
}
#technology .technology .interview-area .wrapper .articles > li, #technology .technology .case-studies-area .wrapper .articles > li {
  width: 31.792%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles > li, #technology .technology .case-studies-area .wrapper .articles > li {
    width: auto;
    margin: 0 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles > li:last-child, #technology .technology .case-studies-area .wrapper .articles > li:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  #technology .technology .interview-area .wrapper .articles a:hover .title, #technology .technology .interview-area .wrapper .articles a:hover .lead, #technology .technology .case-studies-area .wrapper .articles a:hover .title, #technology .technology .case-studies-area .wrapper .articles a:hover .lead {
    text-decoration: underline;
  }
}
#technology .technology .interview-area .wrapper .articles .date, #technology .technology .case-studies-area .wrapper .articles .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
#technology .technology .interview-area .wrapper .articles .date::before, #technology .technology .case-studies-area .wrapper .articles .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles .date, #technology .technology .case-studies-area .wrapper .articles .date {
    font-size: 0.75rem;
  }
}
#technology .technology .interview-area .wrapper .articles .title, #technology .technology .case-studies-area .wrapper .articles .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles .title, #technology .technology .case-studies-area .wrapper .articles .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
#technology .technology .interview-area .wrapper .articles .lead, #technology .technology .case-studies-area .wrapper .articles .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles .lead, #technology .technology .case-studies-area .wrapper .articles .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
#technology .technology .interview-area .wrapper .articles .tags, #technology .technology .case-studies-area .wrapper .articles .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles .tags, #technology .technology .case-studies-area .wrapper .articles .tags {
    gap: 10px;
  }
}
#technology .technology .interview-area .wrapper .articles .tags li, #technology .technology .case-studies-area .wrapper .articles .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles .tags li, #technology .technology .case-studies-area .wrapper .articles .tags li {
    padding: 5px;
  }
}
#technology .technology .interview-area .wrapper .articles a, #technology .technology .case-studies-area .wrapper .articles a {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles a, #technology .technology .case-studies-area .wrapper .articles a {
    display: flex;
    flex-wrap: wrap;
    padding: 3.846vw;
    box-sizing: border-box;
    background-color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles a .c-thumbnail, #technology .technology .case-studies-area .wrapper .articles a .c-thumbnail {
    order: 2;
    margin-bottom: 12px;
    width: 30.769vw;
    height: 17.436vw;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles a .date, #technology .technology .case-studies-area .wrapper .articles a .date {
    margin-top: 0;
    order: 1;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles a .title, #technology .technology .case-studies-area .wrapper .articles a .title {
    order: 3;
    margin: 0 0 12px 4.103vw;
    width: calc(100% - 34.872vw);
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles a .lead, #technology .technology .case-studies-area .wrapper .articles a .lead {
    order: 4;
    margin-bottom: 12px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .articles a .tags, #technology .technology .case-studies-area .wrapper .articles a .tags {
    order: 5;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .wrapper .mTextLink__arrow, #technology .technology .case-studies-area .wrapper .mTextLink__arrow {
    position: initial;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area .more, #technology .technology .case-studies-area .more {
    text-align: center;
  }
}
#technology .technology .interview-area {
  margin-bottom: 140px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .interview-area {
    margin-bottom: 30px;
  }
}
#technology .technology .searchform-area {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .searchform-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .searchform-area .searchform_inner {
    margin-bottom: 30px;
  }
}
#technology .technology .searchform-area .head-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #technology .technology .searchform-area .head-wrapper {
    margin-bottom: 20px;
  }
}
#technology .technology .searchform-area .more {
  text-align: right;
}
#technology .technology .updateinfo-area {
  padding: 100px 0;
  background-color: #F5F5F5;
}
@media only screen and (max-width: 767px) {
  #technology .technology .updateinfo-area {
    padding: 60px 0 30px;
  }
}
#technology .technology .banner-area {
  padding-top: 60px;
  padding-bottom: 60px;
}
#technology .technology .banner-area ul {
  display: flex;
  gap: 0 50px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .banner-area ul {
    flex-direction: column;
    gap: 30px 0;
  }
}
#technology .technology .banner-area ul li a {
  display: block;
  width: rsize(540, 1280);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #technology .technology .banner-area ul li a {
    width: auto;
  }
}
#technology .technology .banner-area ul li a img {
  width: 100%;
  transition: transform 0.4s ease;
}
@media print, screen and (min-width: 768px) {
  #technology .technology .banner-area ul li a:hover img {
    transform: scale(1.08);
  }
}
#technology .technology .btn-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area ul {
    display: block;
  }
}
#technology .technology .btn-area li {
  width: calc((100% - 2px) / 3);
  aspect-ratio: 480/197;
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li {
    width: auto;
    aspect-ratio: 390/112;
  }
}
#technology .technology .btn-area li a {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 9.275%;
  width: 100%;
  height: 100%;
  color: #FFF;
  background: center center/100% auto no-repeat;
  transition: background-size 0.4s ease;
}
@media print, screen and (min-width: 768px) {
  #technology .technology .btn-area li a:hover {
    background-size: 108% auto;
  }
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li a {
    padding-left: 6.41vw;
  }
}
#technology .technology .btn-area li a .ja {
  color: #FFF;
  font-size: min(1.528vw, 22px);
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li a .ja {
    font-size: 1rem;
  }
}
#technology .technology .btn-area li a .en {
  color: #FFF;
  font-size: min(1.181vw, 17px);
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li a .en {
    font-size: 0.75rem;
  }
}
#technology .technology .btn-area li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8.3%;
  margin: auto 0;
  width: min(2.361vw, 34px);
  height: min(2.361vw, 34px);
  background: left top/100% auto no-repeat url("/ja/technology/assets/images/top/icon-link.svg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li a::after {
    right: 6.41vw;
    width: 5.128vw;
    height: 5.128vw;
  }
}
#technology .technology .btn-area li.frontier a {
  background-image: url("/ja/technology/assets/images/top/btn01-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.frontier a {
    background-image: url("/ja/technology/assets/images/top/btn01-bg-sp.jpg");
  }
}
#technology .technology .btn-area li.frontier a .ja {
  display: flex;
  gap: 0 15px;
}
#technology .technology .btn-area li.frontier a .ja::after {
  content: "";
  display: block;
  margin: auto 0;
  width: min(1.736vw, 25px);
  height: min(1.736vw, 25px);
  background: left top/100% auto no-repeat url("/ja/technology/assets/images/top/icon-pdf.svg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.frontier a .ja::after {
    width: 5.128vw;
    height: 5.128vw;
  }
}
#technology .technology .btn-area li.intellectual a {
  background-image: url("/ja/technology/assets/images/top/btn02-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.intellectual a {
    background-image: url("/ja/technology/assets/images/top/btn02-bg-sp.jpg");
  }
}
#technology .technology .btn-area li.design a {
  background-image: url("/ja/technology/assets/images/top/btn03-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.design a {
    background-image: url("/ja/technology/assets/images/top/btn03-bg-sp.jpg");
  }
}
#technology .technology .btn-area li.monozukuri a {
  background-image: url("/ja/technology/assets/images/top/btn04-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.monozukuri a {
    background-image: url("/ja/technology/assets/images/top/btn04-bg-sp.jpg");
  }
}
#technology .technology .btn-area li.quality a {
  background-image: url("/ja/technology/assets/images/top/btn05-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.quality a {
    background-image: url("/ja/technology/assets/images/top/btn05-bg-sp.jpg");
  }
}
#technology .technology .btn-area li.recruitment a {
  background-image: url("/ja/technology/assets/images/top/btn06-bg.jpg");
}
@media only screen and (max-width: 767px) {
  #technology .technology .btn-area li.recruitment a {
    background-image: url("/ja/technology/assets/images/top/btn06-bg-sp.jpg");
  }
}

#cto-message .mv {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #cto-message .mv {
    margin-bottom: 40px;
    padding: 0;
  }
}
#cto-message .mv .mv-content {
  margin: 0;
}
#cto-message .section.evolution {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.evolution {
    margin-bottom: 40px;
  }
}
#cto-message .section.mechanism {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.mechanism {
    margin-bottom: 40px;
  }
}
#cto-message .section.platform {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.platform {
    margin-bottom: 60px;
    padding: 0;
  }
}
#cto-message .section.platform .mText__titleXsmall {
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.platform .mText__titleXsmall {
    margin-bottom: 20px;
  }
}
#cto-message .section.platform .picture {
  display: block;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.platform .picture {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 35px;
  }
  #cto-message .section.platform .picture.close {
    margin-bottom: -55px;
    overflow: hidden;
    height: 107.692vw;
  }
  #cto-message .section.platform .picture.close::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 250px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 69.23%);
    opacity: 1;
    transition: opacity 0.5s ease;
  }
}
#cto-message .section.platform .acc-btn_wrapper {
  padding: 0 12.5px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.platform .more_link {
    padding: 0 12.5px;
    margin-top: 50px;
  }
}
#cto-message .section.future {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #cto-message .section.future {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #cto-message .section.future figure.mImage__col2 {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #cto-message .section .mText__titleLarge {
    margin-bottom: 25px;
  }
}
#cto-message .name {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #cto-message .name {
    margin-bottom: 50px;
  }
}
#cto-message .name .mText__regular {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #cto-message .name .mText__regular {
    margin: 0 0 20px 0;
  }
}
#cto-message .name img {
  width: 299px;
}
@media only screen and (max-width: 767px) {
  #cto-message .name img {
    width: 150px;
  }
}
#cto-message .link_wrapper {
  display: flex;
  align-items: center;
  padding: 80px;
  max-width: 1200px;
  border: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  #cto-message .link_wrapper {
    flex-direction: column;
    margin: 0 12.5px;
    padding: 45px;
  }
}
#cto-message .link_wrapper .thumbnail {
  padding-right: 60px;
  border-right: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  #cto-message .link_wrapper .thumbnail {
    margin-bottom: 40px;
    padding: 0 0 40px;
    border-right: none;
    border-bottom: 1px solid #C8C8C8;
  }
}
#cto-message .link_wrapper .thumbnail img {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  #cto-message .link_wrapper .thumbnail img {
    width: auto;
  }
}
#cto-message .link_wrapper .content {
  flex: 1;
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  #cto-message .link_wrapper .content {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  #cto-message .link_wrapper .content .mText__titleSmall {
    text-align: center;
  }
}
#cto-message .link_wrapper .content .mText__regular {
  margin: 10px 0 15px;
}
@media only screen and (max-width: 767px) {
  #cto-message .link_wrapper .content .link {
    text-align: center;
  }
}

#rd .page_head .mPage__title-holder {
  padding-bottom: 50px;
}
#rd .page_head .lead_text {
  margin: 0 auto 50px;
  width: 850px;
  text-align: center;
  letter-spacing: 0.51px;
}
@media only screen and (max-width: 767px) {
  #rd .page_head .lead_text {
    width: auto;
    font-size: 4.359vw;
  }
}
@media only screen and (max-width: 767px) {
  #rd .chart {
    padding: 0;
  }
}
#rd .chart .acc-btn_wrapper {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #rd .chart .acc-btn_wrapper {
    margin-bottom: 12.821vw;
    padding: 0 12.5px;
  }
}
#rd .pages {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  #rd .pages {
    margin-bottom: 30px;
  }
}
#rd .pages section {
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  #rd .pages section {
    padding: 35px 0;
  }
}
#rd .pages section .link {
  margin-top: 25px;
}
#rd .pages section .is-reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  #rd .pages .production-area {
    padding-top: 0;
  }
}
#rd .pages .incorporated-area {
  background-color: #F5F5F5;
}
#rd .pages .support-area .section_inner {
  position: relative;
}
#rd .pages .support-area .section_inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -70px;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #C8C8C8;
}
@media only screen and (max-width: 767px) {
  #rd .pages .support-area .section_inner::after {
    bottom: -35px;
    width: calc(100% - 25px);
  }
}
@media only screen and (max-width: 767px) {
  #rd .pages .support-area .section_inner .head_wrapper {
    display: flex;
    align-items: flex-end;
  }
}
#rd .pages .global-area .section_inner {
  position: relative;
  align-items: center;
}
#rd .pages .global-area .section_inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -70px;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #C8C8C8;
}
@media only screen and (max-width: 767px) {
  #rd .pages .global-area .section_inner::after {
    bottom: -35px;
    width: calc(100% - 25px);
  }
}
#rd .links .mContentsBox {
  margin-top: 0;
}
#rd .links .mContentsBox__each {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #rd .links .mContentsBox__each {
    margin-bottom: 10px;
  }
}
#rd .links .mContentsBox__each:last-child {
  margin-bottom: 0;
}

.production-tech .mPage__outer {
  margin-top: 0;
}
.production-tech .mPage--line {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .production-tech .mText__regular {
    font-size: 1.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  .production-tech .mColumn__2 {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .production-tech .mColumn__2 .lW__50 {
    width: auto !important;
  }
}
.production-tech__head {
  margin-bottom: min(6.944vw, 100px);
}
@media only screen and (max-width: 767px) {
  .production-tech__head {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .production-tech__head__column .lW__50 {
    width: 100%;
  }
  .production-tech__head__column .lPl__50 {
    padding-left: 0 !important;
  }
  .production-tech__head__column__image {
    margin-bottom: 30px;
  }
}
.production-tech__head__title-holder {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .production-tech__head__title-holder {
    padding-bottom: 30px;
  }
}
.production-tech__head__title-sub {
  font-size: 2.0625rem;
  margin: 0 0 min(2.083vw, 30px);
}
@media only screen and (max-width: 767px) {
  .production-tech__head__title-sub {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }
}
.production-tech__content {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .production-tech__content {
    margin-bottom: 80px;
  }
}
.production-tech__content__title {
  font-size: 2.0625rem;
  margin: 0;
  line-height: 1.45;
}
@media only screen and (max-width: 767px) {
  .production-tech__content__title {
    font-size: 1.4375rem;
  }
}
.production-tech__content__column {
  display: grid;
  grid-template-columns: 68.75% auto;
}
@media only screen and (max-width: 767px) {
  .production-tech__content__column {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.production-tech__content__column__text {
  padding-right: min(3.125vw, 45px);
}
@media only screen and (max-width: 767px) {
  .production-tech__content__column__text {
    padding-right: 0;
  }
  .production-tech__content__column__text .mText__regular {
    margin-top: 20px;
  }
}
.production-tech__content__column__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.production-tech__content__column__image > figure {
  margin: 0;
}
.production-tech__content__column__image figcaption {
  padding: 0 1em;
}
@media only screen and (max-width: 767px) {
  .production-tech__content__column__image figcaption {
    padding: 0 0.5em;
  }
}
.production-tech .content02 .production-tech__content__column {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .production-tech .content02 .production-tech__content__column {
    display: block;
  }
}
.production-tech .content02 .production-tech__content__column__text {
  grid-area: 1/1/2/2;
}
.production-tech .content02 .production-tech__content__column__image {
  grid-area: 1/2/3/3;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .production-tech .content02 .production-tech__content__column__image figcaption {
    text-align: left !important;
  }
}
.production-tech .content02 .production-tech__content__column__link {
  grid-area: 2/1/3/2;
}
@media only screen and (max-width: 767px) {
  .production-tech .content02 .production-tech__content__column__link {
    padding-top: 30px;
  }
}
.production-tech .content03 .production-tech__content__column__image {
  margin: 30px 0 50px;
}
@media only screen and (max-width: 767px) {
  .production-tech .content03 .production-tech__content__column__image {
    margin: 40px 0 30px;
  }
}

#incorporated-tech .mPage__title-holder, #support-tech .mPage__title-holder {
  padding: 45px;
}
#incorporated-tech .lead_text, #support-tech .lead_text {
  margin: 0 auto 50px;
  width: 850px;
  text-align: center;
  letter-spacing: 0.51px;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech .lead_text, #support-tech .lead_text {
    margin-bottom: 0;
    width: auto;
    text-align: left;
    font-size: 1.0625rem;
  }
}
#incorporated-tech .articles, #support-tech .articles {
  margin: 0;
  gap: min(7.813vw, 100px) min(2.188vw, 28px);
}
@media only screen and (max-width: 767px) {
  #incorporated-tech .articles, #support-tech .articles {
    margin: 0 0 20px 0;
    gap: 7.692vw 2.564vw;
  }
}
#incorporated-tech .mImage__col4, #support-tech .mImage__col4 {
  width: min(21.797vw, 279px);
}
@media only screen and (max-width: 767px) {
  #incorporated-tech .mImage__col4, #support-tech .mImage__col4 {
    width: 45.385vw;
  }
}
@media print, screen and (min-width: 768px) {
  #incorporated-tech li a:hover .title, #incorporated-tech li a:hover .lead, #support-tech li a:hover .title, #support-tech li a:hover .lead {
    text-decoration: underline;
  }
}
#incorporated-tech li .date, #support-tech li .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
#incorporated-tech li .date::before, #support-tech li .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .date, #support-tech li .date {
    font-size: 0.75rem;
  }
}
#incorporated-tech li .title, #support-tech li .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .title, #support-tech li .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
#incorporated-tech li .lead, #support-tech li .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .lead, #support-tech li .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
#incorporated-tech li .tags, #support-tech li .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .tags, #support-tech li .tags {
    gap: 10px;
  }
}
#incorporated-tech li .tags li, #support-tech li .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .tags li, #support-tech li .tags li {
    padding: 5px;
  }
}
#incorporated-tech li .tags, #support-tech li .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .tags, #support-tech li .tags {
    gap: 10px;
  }
}
#incorporated-tech li .tags li, #support-tech li .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #incorporated-tech li .tags li, #support-tech li .tags li {
    padding: 5px;
  }
}

.global-rd .mPage__outer {
  margin-top: 0;
}
.global-rd .mPage--line {
  padding-top: 0;
}
.global-rd__head {
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .global-rd__head {
    margin-bottom: 70px;
  }
}
.global-rd__head__title-holder {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .global-rd__head__title-holder {
    padding-bottom: 30px;
  }
}
.global-rd__head__text {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .global-rd__head__text {
    text-align: left;
  }
}
.global-rd__head__carousel .pKv2__holder {
  height: auto;
  aspect-ratio: 1200/550;
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__holder {
    aspect-ratio: auto;
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__bg-holder {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__body-holder {
    height: 90px;
  }
}
@media print, screen and (min-width: 768px) {
  .global-rd__head__carousel .pKv2__body-inner:focus {
    outline: auto;
  }
}
.global-rd__head__carousel .pKv2__controller {
  width: 174px;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__controller {
    width: 210px;
    padding-right: 12px;
  }
}
.global-rd__head__carousel .pKv2__caption-holder {
  padding-top: min(2.778vw, 40px);
  padding-right: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__caption-holder {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__caption {
    background: transparent;
    color: #333;
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__caption-more {
    color: #BE000B;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__caption-more .mIcon__arrow-next::before {
    border-color: #BE000B;
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__indicator-holder {
    position: absolute !important;
    top: calc(100vw - 24px);
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__body--each {
    padding: 0;
  }
}
.global-rd__head__carousel .pKv2__indicator-container {
  padding-right: 0;
  padding-left: 174px;
}
@media only screen and (max-width: 767px) {
  .global-rd__head__carousel .pKv2__indicator-container {
    padding-left: 0;
  }
}
.global-rd__head__carousel .pKv2__indicator-wrapper {
  max-width: 100% !important;
}
.global-rd__area-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: min(6.389vw, 92px);
  margin-bottom: min(6.944vw, 100px);
}
@media only screen and (max-width: 767px) {
  .global-rd__area-wrapper {
    gap: 100px;
    margin-bottom: 40px;
  }
}
.global-rd__area__title {
  margin: 0 0 min(2.778vw, 40px);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .global-rd__area__title {
    margin: 0 0 30px;
    font-size: 1.4375rem;
  }
}
.global-rd__area__list {
  display: flex;
  flex-wrap: wrap;
  gap: min(4.167vw, 60px);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .global-rd__area__list {
    gap: 50px;
  }
}
.global-rd__area__item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 15px;
  width: calc((100% - min(8.333vw, 120px)) / 3);
}
@media screen and (max-width: 1169px) {
  .global-rd__area__item {
    width: calc((100% - min(4.167vw, 60px)) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .global-rd__area__item {
    width: 100%;
  }
}
.global-rd__area__item__image {
  width: 100%;
  height: auto;
  aspect-ratio: 360/203;
  margin: 0;
}
.global-rd__area__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.global-rd__area__item__name {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
}
.global-rd__area__item__name .num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  margin-right: 10px;
}
.global-rd__area__item__detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  font-size: 0.875rem;
  font-weight: 700;
}
.global-rd__area__item__detail dd {
  color: #BE000B;
}
.global-rd__area__item__text {
  margin: 0;
  line-height: 170%;
}
.global-rd__headquarters {
  display: flex;
  align-items: center;
  gap: min(3.472vw, 50px);
  margin: min(5.556vw, 80px) 0 min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  .global-rd__headquarters {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0 60px;
  }
}
.global-rd__headquarters__image {
  width: min(33.542vw, 483px);
  height: auto;
  aspect-ratio: 483/321;
  margin: 0;
}
.global-rd__headquarters__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .global-rd__headquarters__image {
    width: 100%;
  }
}
.global-rd__headquarters__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .global-rd__headquarters__content {
    width: 100%;
  }
}
.global-rd__headquarters__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .global-rd__headquarters__title {
    font-size: 1.4375rem;
  }
}
.global-rd__office {
  margin-bottom: min(5.556vw, 80px);
}
@media only screen and (max-width: 767px) {
  .global-rd__office {
    margin-bottom: 60px;
  }
}
.global-rd__office__title {
  margin: 0 0 min(1.389vw, 20px);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .global-rd__office__title {
    margin: 0 0 30px;
    font-size: 1.4375rem;
  }
}
.global-rd__office-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  padding: 15px 30px;
  border-top: 1px solid #C8C8C8;
}
.global-rd__office-item:last-child {
  border-bottom: 1px solid #C8C8C8;
}
.global-rd__office-item:nth-child(odd) {
  background: #F5F5F5;
}
.global-rd__office-item.row-3 {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}
.global-rd__office-item dt {
  font-weight: 600;
}
.global-rd__office-item .mText__regular {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .global-rd__office-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 5px;
    padding: 20px 30px;
  }
}
.global-rd__office-innerList {
  display: grid;
  border-top: 1px dashed #C8C8C8;
  margin-top: 15px;
  padding: 15px 0 0;
  gap: 5px;
}
.global-rd__office-innerList-item {
  display: grid;
  grid-template-columns: 250px 1fr;
}
@media only screen and (max-width: 767px) {
  .global-rd__office-innerList {
    margin-top: 14px;
    padding: 14px 0 0;
    gap: 18px;
  }
  .global-rd__office-innerList-item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 5px;
  }
}
.global-rd__office__note {
  margin-top: min(2.083vw, 30px);
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 767px) {
  .global-rd__office__note {
    margin-top: 30px;
  }
}

#technology_tech-hr .sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .sp {
    display: block;
  }
}
#technology_tech-hr .pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .pc {
    display: none;
  }
}
#technology_tech-hr .mPage__title-holder {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .mPage__title-holder {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .mText__regular {
    font-size: 1.0625rem;
  }
}
#technology_tech-hr .article_wrapper .section_head {
  margin-bottom: min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_head {
    margin-bottom: 0px;
  }
}
#technology_tech-hr .article_wrapper .section_head .mColumn__2 {
  margin-bottom: min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_head .mColumn__2 {
    display: block;
    margin-bottom: 60px;
  }
}
#technology_tech-hr .article_wrapper .section_head .mColumn__2 .lW__48 {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_head .mColumn__2 .lW__48 {
    width: 100%;
    margin-bottom: 20px;
  }
}
#technology_tech-hr .article_wrapper .section_head .mColumn__2 .lW__47 {
  width: 47%;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_head .mColumn__2 .lW__47 {
    width: 100%;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_head .section_ttl {
    margin-bottom: 0;
  }
}
#technology_tech-hr .article_wrapper .section_cont {
  margin-bottom: min(6.944vw, 100px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont {
    margin-bottom: 50px;
  }
  #technology_tech-hr .article_wrapper .section_cont.spmb-85 {
    margin-bottom: 85px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .gray_bg {
  background: #F5F5F5;
  padding: min(3.819vw, 55px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .gray_bg {
    padding: 25px 15px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .mColumn__4 {
  justify-content: space-between;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .mColumn__4 {
    flex-wrap: wrap;
    padding-bottom: 30px;
    gap: 30px 0;
  }
}
#technology_tech-hr .article_wrapper .section_cont .mColumn__4 .mImage__col4 {
  width: 23.3%;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .mColumn__4 .mImage__col4 {
    width: 48.5%;
  }
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .mColumn__4 .mImage__col4 .mText__regular {
    margin: 20px 0 0;
    font-size: 1rem;
    line-height: 1.15;
  }
}
#technology_tech-hr .article_wrapper .section_cont .type_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(1.736vw, 25px) min(4.861vw, 70px);
  gap: 0 min(6.944vw, 100px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .type_area {
    display: block;
    padding: 15px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .type_area_left {
  white-space: nowrap;
}
#technology_tech-hr .article_wrapper .section_cont .type_area_left h3 {
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .type_area_left h3 {
    margin-bottom: 10px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .type_area_right {
  width: 78%;
}
#technology_tech-hr .article_wrapper .section_cont .type_area_right p {
  font-size: 1.0625rem;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .type_area_right p {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .type_area_right {
    width: 100%;
  }
}
#technology_tech-hr .article_wrapper .section_cont .type_area_text {
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0;
}
#technology_tech-hr .article_wrapper .section_cont .career_example_ttl {
  font-size: 1.375rem;
  margin: 0 0 min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example_ttl {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example_ttl.icon_m {
  position: relative;
  padding-left: 65px;
}
#technology_tech-hr .article_wrapper .section_cont .career_example_ttl.icon_m::before {
  position: absolute;
  left: min(0vw, 0px);
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: "";
  width: 52px;
  height: 37px;
  display: inline-block;
}
#technology_tech-hr .article_wrapper .section_cont .career_example_list {
  margin-bottom: min(3.819vw, 55px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example_list {
    margin-bottom: 55px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example_list ol li {
  position: relative;
  display: block;
  padding: 15px 30px 15px 60px;
  text-align: left;
  line-height: 1.65;
  border-top: solid 1px #C8C8C8;
  margin: 0 !important;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example_list ol li {
    padding: 20px 20px 20px 50px;
    font-size: 1.0625rem;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example_list ol li::marker {
  display: none;
}
#technology_tech-hr .article_wrapper .section_cont .career_example_list ol li::before {
  position: absolute;
  left: 30px;
  top: 19px;
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example_list ol li::before {
    left: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example_list ol li:nth-child(odd) {
  background: #f5f5f5;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type {
    padding-bottom: 30px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .type_area {
  background: #FBE5E7;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_image {
  padding: min(3.819vw, 55px) 0 min(4.028vw, 58px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_image {
    padding: 20px 0 80px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:first-of-type::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-1.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(2)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-2.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(3)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-3.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(4)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-4.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(5)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-5.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(6)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-6.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(7) {
  border-bottom: solid 1px #C8C8C8;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_list ol li:nth-of-type(7)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-7.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:first-of-type .career_example_ttl.icon_m::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-m-1.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type {
  border-bottom: solid 1px #C8C8C8;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .type_area {
  background: #E0EEFF;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_image {
  padding: min(2.083vw, 30px) 0 min(4.028vw, 58px);
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_image {
    padding: 20px 0 80px;
  }
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:first-of-type::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-1-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(2)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-2-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(3)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-3-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(4)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-4-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(5)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-5-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(6)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-6-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(7) {
  border-bottom: solid 1px #C8C8C8;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_list ol li:nth-of-type(7)::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-7-b.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_cont .career_example:last-of-type .career_example_ttl.icon_m::before {
  background: url("/ja/technology/assets/images/rd/tech-hr/icon-m-2.svg") no-repeat center;
  background-size: contain;
}
#technology_tech-hr .article_wrapper .section_ttl {
  font-size: 2.0625rem;
  color: #333;
  font-weight: 700;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .section_ttl {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #technology_tech-hr .article_wrapper .mColumn__3 .mImage__col3.lMt__50:first-of-type {
    margin-top: 15px !important;
  }
  #technology_tech-hr .article_wrapper .mColumn__3 .mImage__col3.lMt__50:not(:first-of-type) {
    margin-top: 50px !important;
  }
}

@media print, screen and (min-width: 768px) {
  #rd-openinnovation .for-sp {
    display: none;
  }
}
#rd-openinnovation img {
  vertical-align: bottom;
}
#rd-openinnovation section {
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation section {
    margin-top: 60px;
  }
}
#rd-openinnovation .img-full {
  margin: 30px 0 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .img-full {
    margin-top: 20px;
  }
}
#rd-openinnovation .mod-col2 {
  display: flex;
  -moz-column-gap: min(3.125vw, 45px);
       column-gap: min(3.125vw, 45px);
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-col2 {
    display: block;
  }
}
#rd-openinnovation .mod-col2 .col-contents {
  margin: 0;
  padding: 0;
}
#rd-openinnovation .mod-col2 .col-contents.col-txt {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-col2 .col-contents.col-txt {
    width: 100%;
  }
}
#rd-openinnovation .mod-col2 .col-contents.col-img {
  width: min(25.972vw, 374px);
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-col2 .col-contents.col-img {
    width: 100%;
  }
}
#rd-openinnovation .mod-col2 .col-contents.col-img img {
  margin-top: 28px;
  width: 100%;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mText__regular {
    font-size: 1.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mListXsmall__each--num2 {
    font-size: 0.875rem;
    line-height: 170%;
  }
}
#rd-openinnovation .mod-article-box {
  display: flex;
  align-items: center;
  gap: 0 min(3.125vw, 45px);
  padding: min(2.778vw, 40px) min(4.167vw, 60px);
  background-color: #fff;
  border: 1px solid #C8C8C8;
  margin: 40px 0;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
    border: none;
    padding: 0;
    margin: 40px 0;
  }
}
@media print, screen and (min-width: 768px) {
  #rd-openinnovation .mod-article-box:hover .title, #rd-openinnovation .mod-article-box:hover .lead {
    text-decoration: underline;
  }
}
#rd-openinnovation .mod-article-box .thumbnail {
  position: relative;
  width: min(23.264vw, 335px);
  border: 4px solid;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .thumbnail {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  #rd-openinnovation .mod-article-box .thumbnail {
    overflow: hidden;
  }
  #rd-openinnovation .mod-article-box .thumbnail:hover img {
    transform: scale(1.08);
  }
}
#rd-openinnovation .mod-article-box .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media print, screen and (min-width: 768px) {
  #rd-openinnovation .mod-article-box .thumbnail img {
    transition: transform 0.4s ease;
  }
}
#rd-openinnovation .mod-article-box .thumbnail.blue {
  -o-border-image: linear-gradient(to right, #6464CD, #63B1D0) 1;
     border-image: linear-gradient(to right, #6464CD, #63B1D0) 1;
}
#rd-openinnovation .mod-article-box .thumbnail.gray {
  -o-border-image: linear-gradient(to right, #6F6F6F, #919191) 1;
     border-image: linear-gradient(to right, #6F6F6F, #919191) 1;
}
#rd-openinnovation .mod-article-box .caption {
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption {
    display: flex;
    flex-direction: column;
  }
}
#rd-openinnovation .mod-article-box .caption .date {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  margin: 0;
  margin-right: 1em;
  position: relative;
  margin-left: 42px;
}
#rd-openinnovation .mod-article-box .caption .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
#rd-openinnovation .mod-article-box .caption .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption .tags {
    gap: 10px;
  }
}
#rd-openinnovation .mod-article-box .caption .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption .tags li {
    padding: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption .tags {
    order: 2;
  }
}
#rd-openinnovation .mod-article-box .caption .texts {
  margin: min(1.736vw, 25px) 0 min(1.042vw, 15px) 0;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption .texts {
    margin: 18px 0 0 0;
    order: 1;
  }
}
#rd-openinnovation .mod-article-box .caption .title {
  margin: 0 0 min(1.042vw, 15px) 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption .title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
#rd-openinnovation .mod-article-box .caption .lead {
  font-size: 1.0625rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  #rd-openinnovation .mod-article-box .caption .lead {
    margin-bottom: 15px;
    font-size: 15px;
  }
}

#search img, #canon-tech img, #interview img, #case-studies img {
  width: 100%;
}
#search button, #canon-tech button, #interview button, #case-studies button {
  cursor: pointer;
}
#search .flex, #canon-tech .flex, #interview .flex, #case-studies .flex {
  display: flex;
}
#search .page_head, #canon-tech .page_head, #interview .page_head, #case-studies .page_head {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #search .page_head, #canon-tech .page_head, #interview .page_head, #case-studies .page_head {
    margin: 0 0 30px;
  }
}
#search .page_head .mPage__title-holder, #canon-tech .page_head .mPage__title-holder, #interview .page_head .mPage__title-holder, #case-studies .page_head .mPage__title-holder {
  padding-bottom: 30px;
}
#search .page_head .lead_text, #canon-tech .page_head .lead_text, #interview .page_head .lead_text, #case-studies .page_head .lead_text {
  margin: 0;
  text-align: center;
  font-size: 2.1875rem;
  line-height: 125%; /* 43.75px */
}
@media only screen and (max-width: 767px) {
  #search .page_head .lead_text, #canon-tech .page_head .lead_text, #interview .page_head .lead_text, #case-studies .page_head .lead_text {
    font-size: 1.0625rem;
  }
}
#search .page_head .mText__regular, #canon-tech .page_head .mText__regular, #interview .page_head .mText__regular, #case-studies .page_head .mText__regular {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #search .page_head .mText__regular, #canon-tech .page_head .mText__regular, #interview .page_head .mText__regular, #case-studies .page_head .mText__regular {
    text-align: left;
  }
}
#search .searchform-area, #canon-tech .searchform-area, #interview .searchform-area, #case-studies .searchform-area {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  #search .searchform-area, #canon-tech .searchform-area, #interview .searchform-area, #case-studies .searchform-area {
    display: none;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #search .searchform-btns, #canon-tech .searchform-btns, #interview .searchform-btns, #case-studies .searchform-btns {
    margin: 15px 0 40px;
  }
  #search .searchform-btns .btn-close, #canon-tech .searchform-btns .btn-close, #interview .searchform-btns .btn-close, #case-studies .searchform-btns .btn-close {
    text-align: right;
  }
  #search .searchform-btns .btn-close i, #canon-tech .searchform-btns .btn-close i, #interview .searchform-btns .btn-close i, #case-studies .searchform-btns .btn-close i {
    transform: rotate(180deg);
  }
  #search .searchform-btns .is-hidden, #canon-tech .searchform-btns .is-hidden, #interview .searchform-btns .is-hidden, #case-studies .searchform-btns .is-hidden {
    display: none;
  }
}
#search .articles_list, #canon-tech .articles_list, #interview .articles_list, #case-studies .articles_list {
  display: flex;
  flex-wrap: wrap;
  gap: min(4.603vw, 58px) 2.333%;
  margin: 0 0 50px;
}
@media only screen and (max-width: 767px) {
  #search .articles_list, #canon-tech .articles_list, #interview .articles_list, #case-studies .articles_list {
    justify-content: space-between;
    gap: 30px 0;
  }
}
#search .articles_list > li.is-hidden, #search .articles_list > li.is-filtered, #canon-tech .articles_list > li.is-hidden, #canon-tech .articles_list > li.is-filtered, #interview .articles_list > li.is-hidden, #interview .articles_list > li.is-filtered, #case-studies .articles_list > li.is-hidden, #case-studies .articles_list > li.is-filtered {
  display: none;
}
#search .articles_list > li, #canon-tech .articles_list > li, #interview .articles_list > li, #case-studies .articles_list > li {
  width: 23.25%;
}
@media only screen and (max-width: 767px) {
  #search .articles_list > li, #canon-tech .articles_list > li, #interview .articles_list > li, #case-studies .articles_list > li {
    width: 45.385vw;
  }
}
#search .articles_list a, #canon-tech .articles_list a, #interview .articles_list a, #case-studies .articles_list a {
  display: block;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  #search .articles_list a:hover, #canon-tech .articles_list a:hover, #interview .articles_list a:hover, #case-studies .articles_list a:hover {
    opacity: 0.5;
  }
}
#search .articles_list .thumbnail, #canon-tech .articles_list .thumbnail, #interview .articles_list .thumbnail, #case-studies .articles_list .thumbnail {
  position: relative;
  margin-bottom: min(1.389vw, 20px);
  width: min(19.375vw, 279px);
  height: min(10.903vw, 157px);
}
@media only screen and (max-width: 767px) {
  #search .articles_list .thumbnail, #canon-tech .articles_list .thumbnail, #interview .articles_list .thumbnail, #case-studies .articles_list .thumbnail {
    margin-bottom: 5.128vw;
    width: 100%;
    height: auto;
  }
}
#search .articles_list .thumbnail::before, #canon-tech .articles_list .thumbnail::before, #interview .articles_list .thumbnail::before, #case-studies .articles_list .thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-width: 5px;
  border-style: solid;
}
#search .articles_list .thumbnail.canon-rd::before, #canon-tech .articles_list .thumbnail.canon-rd::before, #interview .articles_list .thumbnail.canon-rd::before, #case-studies .articles_list .thumbnail.canon-rd::before {
  border-color: var(--semantic-primary, #FF0000);
}
#search .articles_list .thumbnail.advanced-tech::before, #canon-tech .articles_list .thumbnail.advanced-tech::before, #interview .articles_list .thumbnail.advanced-tech::before, #case-studies .articles_list .thumbnail.advanced-tech::before {
  border-color: var(--advanced-tech, #DE6043);
}
#search .articles_list .thumbnail.developer-stories::before, #canon-tech .articles_list .thumbnail.developer-stories::before, #interview .articles_list .thumbnail.developer-stories::before, #case-studies .articles_list .thumbnail.developer-stories::before {
  border-color: var(--developer-stories, #D04444);
}
#search .articles_list .thumbnail.mechanism-tech::before, #canon-tech .articles_list .thumbnail.mechanism-tech::before, #interview .articles_list .thumbnail.mechanism-tech::before, #case-studies .articles_list .thumbnail.mechanism-tech::before {
  border-color: var(--mechanism-tech, #6F6F6F);
}
#search .articles_list .thumbnail.tech-use-cases::before, #canon-tech .articles_list .thumbnail.tech-use-cases::before, #interview .articles_list .thumbnail.tech-use-cases::before, #case-studies .articles_list .thumbnail.tech-use-cases::before {
  border-color: var(--tech-use-cases, #6464CD);
}
#search .articles_list .thumbnail.core-foundations::before, #canon-tech .articles_list .thumbnail.core-foundations::before, #interview .articles_list .thumbnail.core-foundations::before, #case-studies .articles_list .thumbnail.core-foundations::before {
  border-color: var(--core-foundations, #BECFDB);
}
#search .articles_list .thumbnail img, #canon-tech .articles_list .thumbnail img, #interview .articles_list .thumbnail img, #case-studies .articles_list .thumbnail img {
  width: 100%;
}
#search .articles_list .date, #canon-tech .articles_list .date, #interview .articles_list .date, #case-studies .articles_list .date {
  display: flex;
  align-items: center;
  margin-bottom: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  #search .articles_list .date, #canon-tech .articles_list .date, #interview .articles_list .date, #case-studies .articles_list .date {
    margin-bottom: 5.128vw;
  }
}
#search .articles_list .date::before, #canon-tech .articles_list .date::before, #interview .articles_list .date::before, #case-studies .articles_list .date::before {
  content: "";
  display: block;
  margin-right: min(0.625vw, 9px);
  width: min(2.153vw, 31px);
  height: 1px;
  background-color: #7A7A7A;
}
@media only screen and (max-width: 767px) {
  #search .articles_list .date::before, #canon-tech .articles_list .date::before, #interview .articles_list .date::before, #case-studies .articles_list .date::before {
    margin-right: 2.308vw;
    width: 7.949vw;
  }
}
#search .articles_list .post_title, #canon-tech .articles_list .post_title, #interview .articles_list .post_title, #case-studies .articles_list .post_title {
  margin-bottom: min(1.181vw, 17px);
  font-size: 1.375em;
  font-weight: var(--weight-Bold, 700);
  line-height: 145%; /* 31.9px */
}
@media only screen and (max-width: 767px) {
  #search .articles_list .post_title, #canon-tech .articles_list .post_title, #interview .articles_list .post_title, #case-studies .articles_list .post_title {
    margin-bottom: 5.128vw;
    font-size: 1.125em;
  }
}
#search .articles_list .description, #canon-tech .articles_list .description, #interview .articles_list .description, #case-studies .articles_list .description {
  margin-bottom: min(1.181vw, 17px);
  color: #000;
  font-size: 1.063em;
  line-height: 175%; /* 29.75px */
}
@media only screen and (max-width: 767px) {
  #search .articles_list .description, #canon-tech .articles_list .description, #interview .articles_list .description, #case-studies .articles_list .description {
    margin-bottom: 5.128vw;
    font-size: 0.938em;
  }
}
#search .articles_list .tags, #canon-tech .articles_list .tags, #interview .articles_list .tags, #case-studies .articles_list .tags {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.694vw, 10px);
  margin-top: min(1.597vw, 23px);
}
@media only screen and (max-width: 767px) {
  #search .articles_list .tags, #canon-tech .articles_list .tags, #interview .articles_list .tags, #case-studies .articles_list .tags {
    gap: 0.769vw;
    margin-top: 7.692vw;
  }
}
#search .articles_list .tags li, #canon-tech .articles_list .tags li, #interview .articles_list .tags li, #case-studies .articles_list .tags li {
  padding: 8px 10px;
  color: #BE000B;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 100%; /* 12px */
  border: 1px solid #BE000B;
}
@media only screen and (max-width: 767px) {
  #search .articles_list .tags li, #canon-tech .articles_list .tags li, #interview .articles_list .tags li, #case-studies .articles_list .tags li {
    padding: 1.282vw 1.538vw;
    font-size: 0.75em;
  }
}

.article .mBreadCrumb__holder {
  margin-bottom: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .article .mBreadCrumb__holder {
    margin-bottom: 35px;
  }
}
.article .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .article .tags {
    gap: 10px;
  }
}
.article .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .article .tags li {
    padding: 5px;
  }
}
.article .thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 177/100;
}
.article .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.article .main_visual {
  margin-bottom: min(5.556vw, 80px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .article .main_visual {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .article .main_visual img {
    width: 100%;
  }
}
.article .article_wrapper {
  display: flex;
  justify-content: center;
  gap: 0 min(4.167vw, 60px);
  margin: 0 auto;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .article .article_wrapper {
    display: block;
  }
}
.article .content {
  margin-bottom: min(4.167vw, 60px);
  width: 57.5%;
}
@media only screen and (max-width: 767px) {
  .article .content {
    margin: 0 12px 50px;
    width: auto;
  }
}
.article .content > * {
  margin: 0 0 min(2.778vw, 40px);
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .article .content > * {
    margin: 0 0 20px;
  }
}
.article .content .mColumn__2 {
  gap: min(2.778vw, 40px) 0;
}
@media only screen and (max-width: 767px) {
  .article .content .mColumn__2 {
    gap: 20px 0;
  }
}
.article .content .mColumn__2.bordered .mImage__col2 {
  border: 1px solid #C8C8C8;
}
.article .content .mImage__col1 {
  width: 100%;
}
.article .content picture {
  display: block;
}
.article .content picture img {
  width: 100%;
}
.article .content iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}
.article .content .article_info {
  margin-bottom: min(2.431vw, 35px);
}
@media only screen and (max-width: 767px) {
  .article .content .article_info {
    margin-bottom: 35px;
  }
}
.article .content .article_info .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 25px;
}
@media only screen and (max-width: 767px) {
  .article .content .article_info .wrapper {
    flex-direction: column-reverse;
    justify-self: flex-start;
    align-items: flex-start;
    gap: 25px 0;
  }
}
.article .content .article_info .tags {
  flex: 1;
}
.article .content .article_info .tags li {
  font-size: 1.0625rem;
}
@media only screen and (max-width: 767px) {
  .article .content .article_info .tags li {
    font-size: 0.75rem;
  }
}
.article .content .article_info .postdate {
  flex: 0 0 auto;
  position: relative;
  margin-left: 42px;
}
.article .content .article_info .postdate::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
.article .content .article_info .postdate {
  font-size: 1.0625rem;
}
@media print, screen and (min-width: 768px) {
  .article .content .article_info .postdate {
    line-height: 180%;
  }
}
@media only screen and (max-width: 767px) {
  .article .content .article_info .postdate {
    font-size: 0.875rem;
  }
}
.article .content .lead {
  margin-bottom: min(1.389vw, 20px);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article .content .lead {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}
.article .content .page_title {
  margin-bottom: min(2.083vw, 30px);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article .content .page_title {
    margin-bottom: 25px;
    font-size: 1.4375rem;
  }
}
.article .content .head2 {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin: 40px 0;
  font-size: 1.875rem;
  line-height: 145%; /* 43.5px */
}
@media only screen and (max-width: 767px) {
  .article .content .head2 {
    margin: 30px 0;
    font-size: 1.4375rem;
  }
}
.article .content .head2::before {
  content: "";
  display: block;
  width: 2px;
  align-self: stretch;
  height: auto;
  background: #BE000B;
}
.article .content .head2 span {
  flex: 1;
}
.article .content .head3 {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  font-size: 1.375rem;
  line-height: 145%;
  background: #F5F5F5;
}
@media only screen and (max-width: 767px) {
  .article .content .head3 {
    font-size: 1.125rem;
  }
}
.article .content .head3::before {
  content: "";
  display: block;
  width: 2px;
  align-self: stretch;
  height: auto;
  background: #BE000B;
}
.article .content .head3 span {
  flex: 1;
}
.article .content .head4 {
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article .content .head4 {
    font-size: 1.125rem;
  }
}
.article .content .head5 {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
  font-size: 1.125rem;
  line-height: 145%; /* 26.1px */
}
.article .content .head5::before {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  margin-top: calc(0.725em - 1px); /* span1行目の中心に配置 */
  background: #BE000B;
}
.article .content .head5 span {
  flex: 1;
}
.article .content .text {
  color: #333;
  font-size: 1.0625rem;
  line-height: 180%;
}
.article .content .text a {
  line-height: 180%;
}
.article .content .cols_subtitle {
  display: flex;
  align-items: center;
  gap: 0 min(1.944vw, 28px);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article .content .cols_subtitle {
    margin-bottom: 10px;
  }
}
.article .content .cols_subtitle::before, .article .content .cols_subtitle::after {
  flex: 1;
  display: block;
  content: "";
  height: 1px;
  background-color: #C8C8C8;
}
.article .content .col-2, .article .content .col-2-no-border {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(2.778vw, 40px) 0;
}
@media only screen and (max-width: 767px) {
  .article .content .col-2, .article .content .col-2-no-border {
    gap: 20px 0;
  }
}
.article .content .col-2 .mImage__col2, .article .content .col-2-no-border .mImage__col2 {
  margin-top: 0;
  width: 47.5%;
}
.article .content .col-2 .text, .article .content .col-2-no-border .text {
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .article .content .col-2 .text, .article .content .col-2-no-border .text {
    font-size: 0.9375rem;
  }
}
.article .content .col-2 .mImage__col2 {
  border: 1px solid #C8C8C8;
}
.article .content .col-2 .text {
  font-weight: 700;
}
.article .content .col-2-no-border .text {
  font-size: 1.0625rem;
  line-height: 180%;
}
.article .content .movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.article .content .inner_section {
  padding: 40px;
  background: #F5F5F5;
}
@media only screen and (max-width: 767px) {
  .article .content .inner_section {
    padding: 40px 10px;
  }
}
.article .content .inner_section .title {
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145%; /* 31.9px */
}
.article .content .inner_section .text {
  margin-bottom: 20px;
}
.article .content .inner_section img {
  width: 100%;
}
.article .sidebar {
  width: 27.5%;
}
@media only screen and (max-width: 767px) {
  .article .sidebar {
    display: none;
  }
}
.article .sidebar > div:not(:last-child) {
  margin-bottom: min(1.042vw, 15px);
  padding-bottom: min(1.736vw, 25px);
  border-bottom: 1px solid #C8C8C8;
}
.article .sidebar .sidebar_title {
  margin: 0 0 min(1.042vw, 15px) 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145%;
}
.article .sidebar .next_article .sidebar_title {
  display: flex;
  align-items: center;
}
.article .sidebar .next_article .title {
  margin: min(0.694vw, 10px) 0 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 145%;
}
.article .sidebar .next_article .link a {
  display: flex;
  justify-content: center;
  margin-top: min(2.083vw, 30px);
  padding: min(1.042vw, 15px);
  text-align: center;
  border: 1px solid var(--color-grey-45, #737373);
  background: var(--natural-white, #FFF);
}
.article .sidebar .next_article .link a:hover {
  border-color: rgba(192, 0, 11, 0.75);
}
.article .sidebar .recommended_articles ul, .article .sidebar .article_rankings ul {
  display: flex;
  flex-direction: column;
  gap: min(1.042vw, 15px) 0;
  margin: 0;
  padding: 0;
}
.article .sidebar .recommended_articles a, .article .sidebar .article_rankings a {
  display: flex;
  align-items: center;
  gap: 0 min(1.042vw, 15px);
}
.article .sidebar .recommended_articles a .thumbnail, .article .sidebar .article_rankings a .thumbnail {
  width: min(8.819vw, 127px);
}
.article .sidebar .recommended_articles a .thumbnail img, .article .sidebar .article_rankings a .thumbnail img {
  display: block;
}
.article .sidebar .recommended_articles a .caption, .article .sidebar .article_rankings a .caption {
  flex: 1;
}
.article .sidebar .recommended_articles a .title, .article .sidebar .article_rankings a .title {
  margin: 0;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 24.65px */
  letter-spacing: 0.51px;
}
.article .sidebar .article_rankings {
  margin-bottom: min(4.167vw, 60px);
}
.article .sidebar .article_rankings ul li a {
  position: relative;
}
.article .sidebar .article_rankings ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(1.25vw, 18px);
  height: min(1.25vw, 18px);
  background-color: #BE000B;
  color: #fff;
  font-size: min(0.972vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.article .sidebar .article_rankings ul li:nth-child(1) a::before {
  content: "1";
}
.article .sidebar .article_rankings ul li:nth-child(2) a::before {
  content: "2";
}
.article .sidebar .article_rankings ul li:nth-child(3) a::before {
  content: "3";
}
.article .sidebar .article_rankings ul li:nth-child(4) a::before {
  content: "4";
}
.article .sidebar .article_rankings ul li:nth-child(5) a::before {
  content: "5";
}
.article .sidebar .sidebar_index {
  padding: 20px 0 45px;
}
@media print, screen and (min-width: 768px) {
  .article .sidebar .sidebar_index {
    position: sticky;
    top: 60px;
  }
}
.article .sidebar .sidebar_index h2 {
  margin: 0 0 min(0.694vw, 10px) 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 145%;
  margin-bottom: min(1.389vw, 20px);
}
.article .sidebar .sidebar_index ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.article .sidebar .sidebar_index ul::before {
  content: "";
  position: absolute;
  left: min(0.556vw, 8px);
  top: min(1.042vw, 15px);
  width: 1px;
  height: calc(100% - 1.2em);
  background: #888;
  z-index: 0;
}
.article .sidebar .sidebar_index li {
  position: relative;
  margin-bottom: min(0.972vw, 14px);
  padding-left: min(2.083vw, 30px);
}
.article .sidebar .sidebar_index li:last-child {
  margin-bottom: 0;
}
.article .sidebar .sidebar_index li::after {
  content: "";
  position: absolute;
  left: min(0.208vw, 3px);
  top: min(0.417vw, 6px);
  width: min(0.764vw, 11px);
  height: min(0.764vw, 11px);
  background-color: #888;
  border: 3px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  z-index: 2;
}
.article .sidebar .sidebar_index li:not(:first-child)::after {
  top: 50%;
  transform: translateY(-50%);
}
.article .sidebar .sidebar_index li:has(a.is-active) {
  font-weight: 700;
}
.article .sidebar .sidebar_index li:has(a.is-active)::after {
  left: 0;
  width: min(1.181vw, 17px);
  height: min(1.181vw, 17px);
  background-color: #BE000B;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #BE000B;
}
.article .sidebar .sidebar_index li:last-child::before {
  content: "";
  position: absolute;
  left: min(0.556vw, 8px);
  top: 50%;
  width: 1px;
  bottom: 0;
  background-color: #fff;
  z-index: 1;
}
.article .sidebar .sidebar_index li a {
  font-size: 1.0625rem;
  line-height: 175%;
}
.article .sidebar .sidebar_index li i {
  display: none;
}
.article .content_footer .inner {
  margin: 0 auto;
  width: min(83.333vw, 1200px);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .inner {
    margin: 0 12px;
    width: auto;
  }
}
.article .content_footer .related_links {
  width: auto;
  max-width: 1200px;
  padding: 0 min(5vw, 60px);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .related_links {
    padding: 0;
  }
}
.article .content_footer .next_article {
  padding: min(3.472vw, 50px) 0;
  background: var(--semantic-bg, #F5F5F5);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article {
    margin: 0 0 35px;
    padding: 35px 0;
  }
}
.article .content_footer .next_article .footer_title {
  font-size: 1.375rem;
  line-height: 145%;
}
@media print, screen and (min-width: 768px) {
  .article .content_footer .next_article .footer_title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .footer_title {
    font-size: 1.125rem;
  }
}
.article .content_footer .next_article .footer_title a {
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .inner {
    padding-bottom: 30px;
    border-bottom: 1px solid #C8C8C8;
  }
}
.article .content_footer .next_article .inner > a {
  display: flex;
  align-items: center;
  gap: 0 min(3.125vw, 45px);
  padding: min(2.778vw, 40px) min(4.167vw, 60px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .inner > a {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px 0;
    padding: 0;
    background: none;
  }
}
@media print, screen and (min-width: 768px) {
  .article .content_footer .next_article .inner > a:hover .title, .article .content_footer .next_article .inner > a:hover .lead {
    text-decoration: underline;
  }
}
.article .content_footer .next_article .inner > a .thumbnail {
  width: min(23.264vw, 335px);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .inner > a .thumbnail {
    width: 100%;
  }
}
.article .content_footer .next_article .inner > a .thumbnail img {
  display: block;
}
.article .content_footer .next_article .inner > a .caption {
  flex: 1;
}
.article .content_footer .next_article .inner > a .caption .wrapper {
  display: flex;
  align-items: center;
  gap: min(1.042vw, 15px);
  margin-bottom: min(1.736vw, 25px);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .inner > a .caption .wrapper {
    margin-bottom: 20px;
  }
}
.article .content_footer .next_article .inner > a .caption .date {
  display: block;
  margin: 0;
  position: relative;
  margin-left: 42px;
}
.article .content_footer .next_article .inner > a .caption .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
.article .content_footer .next_article .inner > a .caption .date {
  flex: 0 0 auto;
  font-size: 0.875rem;
}
.article .content_footer .next_article .inner > a .caption .tags {
  display: flex;
}
.article .content_footer .next_article .inner > a .caption .title {
  margin: 0 0 min(1.042vw, 15px) 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .inner > a .caption .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
.article .content_footer .next_article .inner > a .caption .lead {
  margin: 0 0 min(1.042vw, 15px) 0;
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .inner > a .caption .lead {
    margin-bottom: 15px;
    font-size: 0.9375rem;
  }
}
.article .content_footer .next_article .link a {
  display: flex;
  justify-content: center;
  margin: min(2.778vw, 40px) auto 0;
  padding: min(1.042vw, 15px);
  width: 330px;
  text-align: center;
  border: 1px solid var(--color-grey-45, #737373);
  background: var(--natural-white, #FFF);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .next_article .link a {
    margin: 35px 12px 0;
    padding: 15px;
    width: auto;
  }
}
.article .content_footer .next_article .link a:hover {
  border-color: rgba(192, 0, 11, 0.75);
}
.article .content_footer .recommended_articles {
  margin-bottom: 35px;
  padding: min(6.944vw, 100px) 0 0;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .inner {
    padding: 0 0 50px;
    border-bottom: 1px solid #C8C8C8;
  }
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles {
    padding: 0;
  }
}
.article .content_footer .recommended_articles .footer_title {
  margin-bottom: min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .footer_title {
    margin-bottom: 25px;
  }
}
.article .content_footer .recommended_articles .articles {
  display: flex;
  gap: 0 min(1.944vw, 28px);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0;
  }
}
.article .content_footer .recommended_articles .articles > li {
  width: min(19.375vw, 279px);
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles > li {
    width: 45.385vw;
  }
}
@media print, screen and (min-width: 768px) {
  .article .content_footer .recommended_articles .articles a:hover .title, .article .content_footer .recommended_articles .articles a:hover .lead {
    text-decoration: underline;
  }
}
.article .content_footer .recommended_articles .articles .date {
  display: block;
  margin: 1em 0;
  font-size: 0.875rem;
  position: relative;
  margin-left: 42px;
}
.article .content_footer .recommended_articles .articles .date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -42px;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles .date {
    font-size: 0.75rem;
  }
}
.article .content_footer .recommended_articles .articles .title {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles .title {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}
.article .content_footer .recommended_articles .articles .lead {
  margin-bottom: min(1.736vw, 25px);
  font-size: 1.0625rem;
  line-height: 175%;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles .lead {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
.article .content_footer .recommended_articles .articles .tags {
  display: flex;
  gap: min(0.694vw, 10px);
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles .tags {
    gap: 10px;
  }
}
.article .content_footer .recommended_articles .articles .tags li {
  padding: 7px;
  color: #BE000B;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--semantic-primary, #BE000B);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .article .content_footer .recommended_articles .articles .tags li {
    padding: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .article .content_footer .article_rankings {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .article .content_footer .article_rankings ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .article .content_footer .article_rankings ul li a {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  .article .content_footer .article_rankings ul li .thumbnail {
    position: relative;
    margin: 0;
    width: 140px;
  }
  .article .content_footer .article_rankings ul li .thumbnail img {
    display: block;
  }
  .article .content_footer .article_rankings ul li .thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #BE000B;
    color: #fff;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .article .content_footer .article_rankings ul li:nth-child(1) .thumbnail::before {
    content: "1";
  }
  .article .content_footer .article_rankings ul li:nth-child(2) .thumbnail::before {
    content: "2";
  }
  .article .content_footer .article_rankings ul li:nth-child(3) .thumbnail::before {
    content: "3";
  }
  .article .content_footer .article_rankings ul li:nth-child(4) .thumbnail::before {
    content: "4";
  }
  .article .content_footer .article_rankings ul li:nth-child(5) .thumbnail::before {
    content: "5";
  }
  .article .content_footer .article_rankings ul li .caption {
    flex: 1;
  }
  .article .content_footer .article_rankings ul li .caption .title {
    margin: 0;
    font-size: 0.9375rem;
  }
}
.article.template01 hr {
  margin: 0 0 min(1.389vw, 20px);
  height: 1px;
  background-color: #888;
  border: none;
}
@media only screen and (max-width: 767px) {
  .article.template01 hr {
    margin: 40px 0 20px;
  }
}
.article.template01 .main_index {
  margin: min(3.125vw, 45px) 0 min(4.167vw, 60px);
  padding: min(1.389vw, 20px) min(3.819vw, 55px);
  border-radius: 20px;
  background: var(--semantic-bg, #F5F5F5);
}
@media only screen and (max-width: 767px) {
  .article.template01 .main_index {
    margin: 35px 0 40px;
    padding: 20px 30px 30px 20px;
    border-radius: 10px;
  }
}
.article.template01 .main_index p {
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: min(1.042vw, 15px);
  padding: min(0.556vw, 8px) min(1.042vw, 15px);
  color: #fff;
  border-radius: min(1.389vw, 20px) min(1.389vw, 20px) 0 min(1.389vw, 20px);
  background-color: var(--semantic-text, #333);
}
@media only screen and (max-width: 767px) {
  .article.template01 .main_index p {
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 1rem;
    border-radius: 20px 20px 0 20px;
    background: var(--semantic-text, #333);
  }
}
.article.template01 .main_index ul {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .article.template01 .main_index ul {
    margin-bottom: 0;
  }
}
.article.template01 .main_index li:not(:last-child) {
  border-bottom: 1px solid #C8C8C8;
}
.article.template01 .main_index li {
  position: relative;
  padding: min(1.181vw, 17px) min(1.528vw, 22px);
}
@media only screen and (max-width: 767px) {
  .article.template01 .main_index li {
    padding: 0;
  }
}
.article.template01 .main_index a {
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article.template01 .main_index a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 12px 10px;
    font-size: 1.0625rem;
  }
}
.article.template01 .main_index i {
  margin-left: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}
.article.template01 .section_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(0.347vw, 5px);
  margin: min(2.778vw, 40px) 0 min(2.778vw, 40px) 0;
  padding: min(1.736vw, 25px) min(1.736vw, 25px);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  border: 2px solid var(--semantic-primary, #BE000B);
  background: var(--natural-white, #FFF);
  box-shadow: 6px 6px 0 0 #BE000B;
}
@media only screen and (max-width: 767px) {
  .article.template01 .section_title {
    gap: 5px;
    margin: 30px 0;
    padding: 20px;
    border-radius: 6px;
    border: 2px solid var(--semantic-primary, #BE000B);
    background: var(--natural-white, #FFF);
    box-shadow: 4px 4px 0 0 #BE000B;
  }
}
.article.template01 .section_title span {
  display: inline-block;
}
.article.template01 .section_title .sTitle {
  font-size: 1.375rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article.template01 .section_title .sTitle {
    font-size: 1rem;
  }
}
.article.template01 .section_title .lTitle {
  font-size: 1.625rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article.template01 .section_title .lTitle {
    font-size: 1.125rem;
  }
}
.article.template01 .section_subtitle {
  padding: min(0.694vw, 10px) min(1.736vw, 25px);
  font-size: 1.625rem;
  line-height: 145%;
  border-left: 5px solid #BE000B;
}
@media only screen and (max-width: 767px) {
  .article.template01 .section_subtitle {
    padding: 5px 20px;
    font-size: 1.125rem;
    line-height: 145%;
    border-left: 3px solid #BE000B;
  }
}
@media only screen and (max-width: 767px) {
  .article.template01 .profiles {
    margin-bottom: 20px;
  }
}
.article.template01 .profile-item {
  position: relative;
  margin-bottom: min(1.736vw, 25px);
  padding: min(2.083vw, 30px) 0;
  border: 1px solid #333;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item {
    margin-bottom: 15px;
    padding: 55px 15px 20px;
  }
}
.article.template01 .profile-item .profile_title {
  position: absolute;
  top: 0;
  left: 0;
  padding: min(0.347vw, 5px) min(2.431vw, 35px);
  color: var(--natural-white, #FFF);
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #333;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .profile_title {
    padding: 10px 25px;
    font-size: 1rem;
    line-height: 145%; /* 23.2px */
  }
}
.article.template01 .profile-item .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 0 min(2.431vw, 35px);
  padding: 0 min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .inner {
    display: block;
    margin-top: 0;
  }
}
.article.template01 .profile-item .image {
  width: 167px;
  height: 167px;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .image {
    margin: 0 auto 25px;
    width: 42.821vw;
    height: 42.821vw;
  }
}
.article.template01 .profile-item .image img {
  width: 100%;
}
.article.template01 .profile-item .content {
  margin: 0;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .content {
    width: auto;
  }
}
.article.template01 .profile-item .content > * {
  margin: 0;
}
.article.template01 .profile-item .dept {
  color: var(--semantic-primary, #BE000B);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .dept {
    margin-bottom: 5px;
    font-size: 0.75rem;
  }
}
.article.template01 .profile-item .dept .position {
  margin-left: 1em;
}
.article.template01 .profile-item .name {
  margin-bottom: min(1.042vw, 15px);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145%; /* 31.9px */
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .name {
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}
.article.template01 .profile-item .name small {
  font-size: 1.0625rem;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .name small {
    font-size: 1rem;
  }
}
.article.template01 .profile-item .overview {
  font-size: 1.0625rem;
  line-height: 175%;
}
.article.template01 .profile-item .overview small {
  margin-top: 10px;
  display: block;
  font-size: 0.875rem;
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article.template01 .profile-item .overview small {
    font-size: 1.0625rem;
  }
}
.article.template01 .question {
  display: flex;
  align-items: flex-start;
  margin: 40px 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145%; /* 31.9px */
}
@media only screen and (max-width: 767px) {
  .article.template01 .question {
    font-size: 1.125rem;
    margin: 30px 0;
  }
}
.article.template01 .question::before {
  content: "Q";
  display: inline-block;
  margin-top: max(-0.347vw, -5px);
  margin-right: min(1.042vw, 15px);
  padding: min(0.208vw, 3px) min(1.667vw, 24px) min(0.556vw, 8px);
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 700;
  border-radius: min(1.736vw, 25px) min(1.736vw, 25px) 0 min(1.736vw, 25px);
  background-color: var(--semantic-primary, #BE000B);
}
@media only screen and (max-width: 767px) {
  .article.template01 .question::before {
    margin-top: -6px;
    margin-right: 15px;
    padding: 5px 20px 7px;
    font-size: 1rem;
    border-radius: 20px 20px 0 20px;
  }
}
.article.template01 .dialog {
  display: flex;
}
.article.template01 .dialog .name {
  flex: 0 0 auto;
  margin-right: 0.5em;
  color: var(--semantic-primary, #BE000B);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 145%; /* 26.1px */
}
.article.template01 .dialog .text {
  flex: 1;
  margin: 0;
  min-width: 0;
  color: var(--semantic-text, #333);
  font-size: 1.0625rem;
  line-height: 180%; /* 30.6px */
}
.article.template01 .dialog .text p {
  margin: 0 0 1.8em;
}
.article.template01 .dialog .text p:last-child {
  margin-bottom: 0;
}
.article.template01 .dialog.indent {
  flex-direction: column;
}
.article.template01 .dialog.indent .name {
  line-height: 180%;
}
.article.template01 .dialog.indent .text {
  margin-left: 1em;
}
.article.template01 .figure img {
  width: 100%;
}
.article.template01 .figure .figcaption {
  margin-top: min(1.389vw, 20px);
  font-size: 1.0625rem;
  line-height: 180%;
}
@media only screen and (max-width: 767px) {
  .article.template01 .figure .figcaption {
    margin-top: 10px;
  }
}
.article.template02 .main_index {
  margin-top: min(3.125vw, 45px);
  padding: min(1.389vw, 20px) min(2.361vw, 34px) 0 min(2.361vw, 34px);
  border: 1px solid #C8C8C8;
}
@media only screen and (max-width: 767px) {
  .article.template02 .main_index {
    margin: 40px 0 -10px;
    padding: 20px 30px;
  }
}
.article.template02 .main_index p {
  font-size: 1.125rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .article.template02 .main_index p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .article.template02 .main_index ul {
    margin-bottom: 0;
  }
}
.article.template02 .main_index li {
  position: relative;
  padding: min(1.181vw, 17px) min(1.528vw, 22px);
}
@media only screen and (max-width: 767px) {
  .article.template02 .main_index li {
    padding: 0;
  }
}
.article.template02 .main_index li:not(:last-child) {
  border-bottom: 1px solid #C8C8C8;
}
.article.template02 .main_index a {
  line-height: 145%;
}
@media only screen and (max-width: 767px) {
  .article.template02 .main_index a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 12px 0;
    font-size: 1.0625rem;
  }
}
.article.template02 .main_index i {
  margin-left: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}
.article.template02 .section_title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(0.694vw, 10px);
  margin-top: min(5.833vw, 70px);
  margin-bottom: min(3.472vw, 50px);
  padding-top: min(2.083vw, 30px);
  margin-left: calc(50% - 50vw);
  width: calc(50vw + min(57.5vw, 690px) / 2);
  padding-left: calc(50vw - min(57.5vw, 690px) / 2);
  background-color: #F5F5F5;
}
@media only screen and (max-width: 767px) {
  .article.template02 .section_title {
    gap: 5px 0;
    margin: 50px -12px 50px;
    padding: 0 12px;
    width: auto;
  }
}
.article.template02 .section_title span {
  position: relative;
  top: min(1.389vw, 20px);
  display: inline-block;
  padding: min(0.694vw, 10px) min(1.181vw, 17px);
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 145%;
  background: #333;
}
@media only screen and (max-width: 767px) {
  .article.template02 .section_title span {
    top: 20px;
    padding: 10px;
    font-size: 1.125rem;
  }
}/*# sourceMappingURL=style.css.map */