@charset "UTF-8";

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
  transition: all 0.3s ease-in-out;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.iframe {
  height: 0;
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.iframe:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  z-index: 0;
}

.iframe iframe {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.article_page {
  color: #111;
}

.article_page .sub_page__content.container {
  padding: 60px 90px;
}

@media screen and (max-width: 959px) {
  .article_page .sub_page__content.container {
    padding: 30px 20px 0;
  }
}

.article_page .sub_page__keyvisual {
  background: url(./_template/img/keyvisual.png) center center no-repeat;
  background-size: cover;
}

.article_page .breadcrumb.breadcrumb--pc {
  color: #fff;
}

.article_page .breadcrumb.breadcrumb--pc li span {
  color: #fff;
}

.article_page .breadcrumb.breadcrumb--sp {
  margin-top: 48px;
  margin-bottom: 100px;
}

.article img {
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 959px) {
  .article img {
    width: 100%;
    height: auto;
    max-width: 375px;
  }
}

.article__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0;
}

@media screen and (max-width: 959px) {
  .article__title {
    font-size: 20px;
    line-height: 130%;
  }
}

.article__date {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
  color: #949494;
}

@media screen and (max-width: 959px) {
  .article__date {
    font-size: 13px;
    line-height: 200%;
  }
}

.article_tag {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
}

.article_tag__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0;
  padding: 8px;
  color: #205B85;
  background-color: #D6E4E6;
  margin-right: 4px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.article_toc {
  display: block;
  margin-top: 44px;
  padding: 28px;
  background-color: #F6F6F6;
}

@media screen and (max-width: 959px) {
  .article_toc {
    margin-top: 32px;
    padding: 16px;
  }
}

.article_toc__title {
  display: block;
  color: #111111;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .article_toc__title {
    font-size: 16px;
  }
}

.article_toc__list {
  margin-top: 16px;
}

@media screen and (max-width: 959px) {
  .article_toc__list {
    margin-top: 4px;
  }
}

/* sub TOC for H3 under H2 (page019) */
.article_toc__sublist {
  list-style: disc;
  margin: 0 0 8px 20px;
  padding-left: 20px;
}

.article_toc__subitem {
  list-style: disc;
}

.article_toc__subitem .article_toc__anchor_link {
  padding: 6px 0;
  font-size: 14px;
}

@media screen and (max-width: 959px) {
  .article_toc__subitem .article_toc__anchor_link {
    font-size: 12px;
  }
}

.article_toc__item {
  border-bottom: 1px solid #D2D2D2;
}

.article_toc__item:last-child {
  border-bottom: none;
}

.article_toc__anchor_link {
  display: flex;
  padding: 8px 0;
  color: #205B85;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 959px) {
  .article_toc__anchor_link {
    font-size: 13px;
    line-height: 2;
  }
}

.article_toc__anchor_link:hover {
  color: #0095DD;
  text-decoration-line: underline;
}

.article_sub_menu {
  margin-top: 44px;
  padding: 24px;
  border: 1px solid #205B85;
}

@media screen and (max-width: 959px) {
  .article_sub_menu {
    margin-top: 32px;
    padding: 8px;
  }
}

.article_sub_menu__title {
  display: block;
  color: #205B85;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
}

@media screen and (max-width: 959px) {
  .article_sub_menu__title {
    padding: 8px 8px 0 8px;
    font-size: 16px;
  }
}

.article_sub_menu__list {
  margin-top: 16px;
}

@media screen and (max-width: 959px) {
  .article_sub_menu__list {
    margin-top: 8px;
  }
}

.article_sub_menu__item {
  border-bottom: 1px solid #D2D2D2;
}

.article_sub_menu__item:last-child {
  border-bottom: none;
}

.article_sub_menu__item--selected {
  color: white;
  border-bottom: none;
}

.article_sub_menu__item--selected .article_sub_menu__link {
  color: white !important;
  font-weight: 700;
  background: linear-gradient(90deg, #0192C2 0%, #0175BA 100%);
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.article_sub_menu__item--selected .article_sub_menu__link span {
  color: white !important;
  text-decoration-line: none;
}

.article_sub_menu__link {
  display: flex;
  align-items: center;
  padding: 7px 20px;
  color: #205B85 !important;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  transition: all 0.3s ease-in-out;
}

.article_sub_menu__link span {
  color: #0095DD !important;
}

@media screen and (max-width: 959px) {
  .article_sub_menu__link {
    padding: 8px 16px;
    font-size: 18px;
  }
}

.article_sub_menu__link span {
  margin-left: 16px;
  font-size: 16px;
  text-decoration-line: underline;
}

@media screen and (max-width: 959px) {
  .article_sub_menu__link span {
    margin-left: 8px;
    font-size: 13px;
  }
}

.article_sub_menu__link:hover {
  background-color: #F3FBFF;
}

.article_sub_menu__link--not-active:hover {
  background-color: inherit;
}

.article_sub_menu__link--not-active:hover span {
  color: #111111 !important;
}

.article_sub_menu__link--not-active span {
  text-decoration: none;
  color: #111111 !important;
}

.article__content {
  margin-top: 40px;
}

@media screen and (max-width: 959px) {
  .article__content {
    margin-top: 28px;
  }
}

.article__content a,
.article_related_link a {
  color: #0095DD !important;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.article__content a:hover,
.article_related_link a:hover {
  color: #0074AC !important;
}

.article__content a[target=_blank] span,
.article_related_link a[target=_blank] span {
  position: relative;
}

.article__content a[target=_blank] span:after,
.article_related_link a[target=_blank] span:after {
  display: inline-block;
  content: "";
  height: 12px;
  width: 14px;
  background: url(../img/common/ico_window_blue.svg) no-repeat center;
  background-size: contain;
  margin-left: 8px;
}
/*H2*/
.article_heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0;
  padding-left: 20px;
  position: relative;
  margin-top: 40px;
}

.article_heading:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background-color: #0095DD;
  left: 0;
  top: 2px;
}

/*H3*/
.article_heading_lg {
  margin-top: 32px;
  color: #205B85;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

/*H4*/
.article_heading_md {
  margin-top: 24px;
  color: #111;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

/*H5*/
.article_heading_sm {
  margin-top: 16px;
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

/*H6*/
.article_heading_xs {
  margin-top: 14px;
  color: #111;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 959px) {
  .article_heading {
    font-size: 16px;
    line-height: 150%;
    margin-top: 28px;
  }

  .article_heading:before {
    height: 100%;
  }

  /*H3*/
  .article_heading_lg {
    margin-top: 16px;
    font-size: 15px;
  }

  /*H4*/
  .article_heading_md {
    margin-top: 16px;
    font-size: 14px;
  }

  /*H5*/
  .article_heading_sm {
    margin-top: 12px;
    font-size: 13px;
  }

  /*H6*/
  .article_heading_xs {
    margin-top: 12px;
    font-size: 12px;
  }
}

.article_modal,
.article_tooltip {
  color: #0095DD;
  text-decoration-line: underline;
  cursor: pointer;
}

.article_modal img {
  margin-right: 5px;
  margin-left: 5px;
}

.article_text {
  margin-top: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  word-break: break-all;
}

@media screen and (max-width: 959px) {
  .article_text {
    margin-top: 16px;
    font-size: 13px;
    line-height: 200%;
  }
}

.article_text strong {
  color: #0095DD;
  font-weight: 700;
}

.article_text strong.text-black {
  color: #000000;
  font-weight: 700;
}

.article_text--bullet {
  padding-left: 20px;
  text-indent: -20px;
}

.article_text--bullet:before {
  content: "※";
  padding-right: 4px;
}

.article_text--bullet_number {
  padding-left: 30px;
  text-indent: -30px;
}

.article_text--bullet_number:before {
  content: "※" attr(data-number);
  padding-right: 4px;
}

@media screen and (max-width: 959px) {
  .article_text--bullet_number {
    padding-left: 20px;
    text-indent: -20px;
  }
}

.article_point {
  margin-top: 32px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #0095DD;
  background: #F3FBFF;
}

@media screen and (max-width: 959px) {
  .article_point {
    padding: 20px;
  }
}

.article_point__title {
  display: flex;
  align-items: center;
  color: #0095DD;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.article_point__title:before {
  display: block;
  margin-right: 12px;
  content: "";
  width: 30px;
  height: 4px;
  background: #0095DD;
}

@media screen and (max-width: 959px) {
  .article_point__title:before {
    width: 24px;
  }
}

.article_point__list {
  margin-top: 16px;
  counter-reset: custom-counter;
}

@media screen and (max-width: 959px) {
  .article_point__list {
    margin-top: 8px;
  }
}

.article_point__item {
  display: inline-flex;
  padding: 8px 0;
  counter-increment: custom-counter;
  color: #111111;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.article_point__item:before {
  display: inline-block;
  min-width: 30px;
  width: 30px;
  height: 30px;
  content: counter(custom-counter);
  margin-right: 12px;
  color: white;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  background: #0095DD;
}

@media screen and (max-width: 959px) {
  .article_point__item {
    font-size: 16px;
  }

  .article_point__item:before {
    min-width: 24px;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}

.article_contact {
  margin-top: 32px;
}

.article_contact.-bg-linear {
  background: linear-gradient(90deg, #0192C2 0%, #0175BA 100%);

  &:hover {
    background: linear-gradient(90deg, #3884B2 0%, #295A99 100%);
  }
}

.article_contact a {
  font-weight: 700;
  font-size: 17.6px;
  line-height: 120%;
  color: #fff !important;
  background-color: #0095dd;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 18px 20px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-decoration: none !important;
}

.article_contact a::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left: 6px solid #fff;
  transition: 0.2s;
}

.article_contact a::after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 16px - 26px);
  background: #fff;
  transition: 0.2s;
}

.article_contact .btn-contact {
  max-width: 780px;
  background: linear-gradient(180deg, #1EE4EE 0%, #17B5BE 116.25%);
  transition: all 0.3s ease-in-out;
}

.article_contact .btn-contact span {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: rgba(0, 86, 99, 1);
  display: flex;
  align-items: center;
}

.article_contact .btn-contact::before,
.article_contact .btn-contact::after {
  display: none;
}

.article_contact .btn-contact span::before {
  content: attr(data-label);
  display: inline-block;
  color: #fff;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  padding: 0 4px;
  background: rgba(193, 81, 94, 1);
  height: 24px;
}

.article_contact .btn-contact span::after,
.article_contact .btn-contact[target="_blank"] span::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 16px;
  height: 16px;
  mask-image: url(../img/common/ico_download_bold.svg);
  background: rgba(0, 86, 99, 1);
}

@media screen and (min-width: 960px) {

  .article_contact .btn-contact,
  .article_contact .btn-contact[target="_blank"] {
    position: relative;
    display: inline-flex;
  }

  .article_contact .btn-contact:after {
    content: "";
    display: block;
    position: absolute;
    transform: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }

  .article_contact .btn-contact:hover:after {
    width: 100%;
    animation: none;
    background: rgba(29, 220, 230, 0.4);
  }

}

@media screen and (max-width: 959px) {
  .article_contact a {
    justify-content: flex-start;
    font-size: 14px;
    line-height: 16px;
    height: 48px;
  }

  .article_contact .btn-contact {
    justify-content: center;
    height: auto;
  }

  .article_contact .btn-contact span {
    font-size: 14px;
  }

  .article_contact .btn-contact span:before {
    font-size: 12px;
    line-height: 20px;
    height: 20px;
  }

  .article_contact .btn-contact span::after {
    width: 12px;
    height: 12px;
    mask-size: cover;
  }

  .article_contact a:before {
    left: auto;
    right: 15px;
  }

  .article_contact a:after {
    left: auto;
    right: 23px;
  }
}

@media screen and (min-width: 960px) {
  .article_contact a:hover {
    color: #fff !important;
    background-color: #0074AC;
  }

  .article_contact a:hover::before {
    opacity: 1;
    border-left: 6px solid #fff;
    animation: articleArrow1 1s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
  }

  .article_contact a:hover::after {
    width: 0;
    background: #fff;
    animation: articleArrow2 1s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
  }
}

.article_text_list {
  margin-top: 32px;
}

@media screen and (max-width: 959px) {
  .article_text_list {
    margin-top: 16px;
  }
}

.article_text_list .article_text {
  margin-top: 8px;
  text-indent: -15px;
  padding-left: 15px;
}

@media screen and (max-width: 959px) {
  .article_text_list .article_text {
    text-indent: -13px;
  }
}

.article_text_order_list {
  margin-top: 32px;
}

@media screen and (max-width: 959px) {
  .article_text_order_list {
    margin-top: 16px;
  }
}

.article_text_order_list .article_text {
  margin-top: 8px;
  text-indent: -30px;
  padding-left: 30px;
}

@media screen and (max-width: 959px) {
  .article_text_order_list .article_text {
    text-indent: -20px;
    padding-left: 20px;
  }
}

.article_box {
  margin-top: 32px;
  background-color: #F6F6F6;
  padding: 24px;
}

@media screen and (max-width: 959px) {
  .article_box {
    margin-top: 16px;
    padding: 16px;
  }
}

.article_box .article_text:first-child {
  margin-top: 0;
}

.article_list,
.article_order_list {
  margin-top: 32px;
  list-style: none;
  padding-left: 20px;
}

@media screen and (max-width: 959px) {

  .article_list,
  .article_order_list {
    margin-top: 16px;
  }
}

.article_list li,
.article_order_list li {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0;
  font-weight: 400;
}

@media screen and (max-width: 959px) {

  .article_list li,
  .article_order_list li {
    font-size: 13px;
    line-height: 200%;
  }
}

.article_list li:before,
.article_order_list li:before {
  content: "•";
  color: #111;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.article_order_list {
  list-style: decimal;
}

.article_order_list li:before {
  content: none;
}

.article_figure {
  margin: 32px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.article_figure--iframe {
  width: 100%;
}

.article_figure--w60per {
  width: 60%;
}

@media screen and (max-width: 959px) {
  .article_figure--w60per {
    max-width: 375px;
  }
}

.article_figcaption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .article_figcaption {
    font-size: 13px;
    line-height: 150%;
    margin-top: 8px;
  }
}

.article_table_title {
  color: #205B85;
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  margin-top: 32px;
  margin-bottom: 24px;
}

@media screen and (max-width: 959px) {
  .article_table_title {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 16px;
  }
}

.article_table {
  width: 100%;
  box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 0;
}

.article_table th,
.article_table td {
  padding: 16px;
}

@media screen and (max-width: 959px) {

  .article_table th,
  .article_table td {
    padding: 8px;
  }
}

.article_table th {
  background-color: #f6f6f6;
}

.article_table td,
.article_table th {
  border-top: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
  box-sizing: border-box;
}

.article_table tr {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

@media screen and (max-width: 959px) {
  .article_table tr {
    font-size: 13px;
    line-height: 200%;
  }
}

.article_table tr td {
  line-height: 28px;
}

@media screen and (max-width: 959px) {
  .article_table tr td {
    line-height: 26px;
  }
}

.article_table tr th {
  vertical-align: middle;
  line-height: 24px;
}

@media screen and (max-width: 959px) {
  .article_table tr th {
    line-height: 26px;
  }
}

.article_table tr td:last-child {
  border-right: none;
}

.article_table tr:first-child th,
.article_table tr:first-child td {
  border-top: none;
}

.article_table_container {
  position: relative;
  z-index: 1;
}

.article_table_wrap::-webkit-scrollbar {
  height: 8px;
}

.article_table_wrap::-webkit-scrollbar-track {
  background: #f4f4f4;
}

.article_table_wrap::-webkit-scrollbar-thumb {
  background: #949494;
  border-radius: 10px;
}

@media screen and (max-width: 959px) {
  .article_table tbody tr th {
    width: 167px !important;
  }

  .article_table_wrap {
    overflow: auto;
  }

  .article_table--scroll {
    min-width: 800px;
  }
}

@media screen and (max-width: 835px) {
  .article_table_wrap {
    margin-right: -20px;
    padding-bottom: 12px;
  }
}

.article_table tbody tr th,
.article_table thead tr th:last-child {
  border-right: none;
}

.article_table--thead_cyan thead th {
  background-color: #C1DADE;
  border-color: #fff;
}

.article_table--sticky tr {
  font-size: 15px;
}

.article_table--sticky thead tr th {
  width: 156px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .article_table--sticky tr {
    font-size: 13px;
    line-height: 2;
  }

  .article_table--sticky thead tr th {
    width: 162px;
  }
}

.article_table--sticky tbody tr td {
  padding: 8px;
  vertical-align: middle;
}

.article_table--sticky tbody tr:last-child th,
.article_table--sticky tbody tr:last-child td {
  border-bottom: 1px solid #d2d2d2;
}

.article_table--sticky thead th:first-child,
.article_table--sticky tbody tr th {
  position: sticky;
  left: 0;
  max-width: 156px;
  width: 156px;
  font-weight: bold;
  z-index: 1;
}

@media screen and (max-width: 959px) {

  .article_table--sticky thead th:first-child,
  .article_table--sticky tbody tr th {
    max-width: 132px;
  }
}

.article_related_link {
  margin-top: 44px;
  background-color: #f6f6f6;
  padding: 32px;
}

.article_related_link.--no-bg {
  background-color: transparent;
  padding: 0;
}

@media screen and (max-width: 959px) {
  .article_related_link {
    margin-top: 32px;
  }
}

.article_related_link__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
}

@media screen and (max-width: 959px) {
  .article_related_link__title {
    font-size: 15px;
    line-height: 130%;
  }
}

.article_related_link .article_list {
  list-style: none;
  margin-top: 16px;
  padding-left: 20px;
}

.article_related_link .article_list li {
  margin-bottom: 5px;
}

.article_related_link .article_list li:before {
  color: #0095DD;
}

.article_related_link .article_list li:last-child {
  margin-bottom: 0;
}

.article_related_link .article_text {
  margin-top: 0;
  display: contents;
}

.scroll_control {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: handFadeIn 0.4s forwards;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.scroll_control_text {
  box-sizing: border-box;
  font-size: 13px;
  color: #fff;
  padding: 11px 10px 12px;
  background-color: #205B85;
  width: 138px;
  text-align: center;
}

.scroll_control_text span {
  position: relative;
}

.scroll_control_text span:before,
.scroll_control_text span:after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  top: 2px;
}

.scroll_control_text span:before {
  background: url(../img/article/arrow_back.svg) no-repeat center;
  background-size: contain;
  left: -20px;
}

.scroll_control_text span:after {
  background: url(../img/article/arrow_forward.svg) no-repeat center;
  background-size: contain;
  right: -20px;
}

.article_navigation {
  display: flex;
  margin-top: -150px;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .article_navigation {
    margin-top: 40px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.article_navigation__item {
  flex: 1;
}

.article_navigation__item:first-child {
  border-right: 1px solid #C7C7C7;
}

@media screen and (max-width: 959px) {
  .article_navigation__item:first-child .article_navigation__link {
    padding-right: 16px;
  }
}

@media screen and (max-width: 959px) {
  .article_navigation__item:last-child .article_navigation__link {
    padding-left: 16px;
  }
}

.article_navigation__item:last-child .article_navigation__name {
  display: flex;
  justify-content: flex-end;
}

.article_navigation__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 959px) {
  .article_navigation__link {
    gap: 8.5px;
    padding: unset;
  }
}

@media screen and (min-width: 960px) {
  .article_navigation__link:hover {
    background: #F6F6F6;
  }
}

.article_navigation__name {
  display: inline-flex;
  color: #0095DD;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 959px) {
  .article_navigation__name {
    font-size: 16px;
  }
}

.article_navigation__name .icon_prev {
  margin-right: 8px;
}

.article_navigation__name .icon_next {
  margin-left: 8px;
}

.article_navigation__text {
  color: #111111;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 959px) {
  .article_navigation__text {
    font-size: 13px;
    line-height: 2;
  }
}

.article_navigation__item:hover .article_navigation__text {
  color: #0074AC;
  text-decoration: underline;
}

.article_related {
  padding-top: 60px;
  padding-bottom: 100px;
  background: #F6F6F6;
}

@media screen and (max-width: 959px) {
  .article_related {
    padding-top: 32px;
    padding-bottom: 28px;
  }
}

.article_related__list {
  margin-top: 32px;
}

@media screen and (max-width: 959px) {
  .article_related__list {
    margin-top: 0;
  }
}

.article_related__title {
  color: #205B85;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .article_related__title {
    font-size: 18px;
  }
}

.article_related .article_block {
  margin-top: 0;
}

@media screen and (max-width: 959px) {
  .article_related .article_block {
    padding-right: 0;
  }
}

@media screen and (max-width: 959px) {
  .article_related .article_block__list {
    display: inline-flex;
    width: 100%;
    overflow-x: scroll;
    gap: 12px;
    padding: 20px 0 20px 0;
  }

  .article_related .article_block__item {
    min-width: 284px;
    width: 284px;
  }
}

.icon_prev {
  display: inline-flex;
  background: url(../img/article/arrow_previous.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.icon_next {
  display: inline-flex;
  background: url(../img/article/arrow_next.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.scroll_control--active {
  animation: handFadeOut 0.4s forwards;
}

@keyframes handFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes handFadeOut {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    z-index: 0;
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes articleArrow1 {
  0% {
    right: 32px;
  }

  10% {
    right: 32px;
  }

  70% {
    right: 16px;
  }

  100% {
    right: 16px;
  }
}

@keyframes articleArrow2 {
  0% {
    width: 0;
  }

  10% {
    width: 0;
  }

  70% {
    width: 16px;
  }

  100% {
    width: 16px;
  }
}

.article_page .sub_page__keyvisual:after {
  display: none;
}

.article_page .sub_page__title .heading,
.article_page .breadcrumb.breadcrumb--pc {
  animation-delay: 1s;
}

.article_page .sub_page__keyvisual {
  overflow: hidden;
  /* transform: translateX(100%);
  animation: curtaininrevert 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards; */
}

.lang_en .article_page {
  font-family: "Poppins", sans-serif;
}

.lang_en .article_page .heading--en {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.04px;
}

.lang_en .article_page .heading--ja {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.lang_en .article_page .breadcrumb.breadcrumb--pc {
  margin-top: 44px;
}

.lang_en .article_page .article__date {
  font-weight: 400;
}

.lang_en .article_page .article_point__item {
  font-weight: 400;
}

.lang_en .article_page .article_table th {
  font-weight: 500;
}

.lang_en .article_page .article_block__item_date {
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  .lang_en .article_page .sub_page__keyvisual {
    min-height: 130px;
    height: 130px;
    padding: 12px 0;
  }

  .lang_en .article_page .sub_page__title .heading {
    gap: 0;
  }

  .lang_en .article_page .heading--en {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0.56px;
  }

  .lang_en .article_page .heading--ja {
    font-size: 13px;
    line-height: 1.3;
  }

  .lang_en .article_page .sub_page__keyvisual {
    border-top-left-radius: unset;
  }

  .lang_en .article_page .article_figcaption {
    text-align: left;
  }

  .lang_en .article_page .article_table th {
    font-weight: 700;
  }

  .lang_en .article_page .article_navigation__name {
    font-size: 14px;
  }
}

.txt-center {
  text-align: center;
}

/* Added Inquiry Block to WordPress Block Editor - 2025/3/3 */
.article_contact_2025 {
  margin-top: 32px;
}

.article_contact_2025 a {
  font-weight: 700;
  font-size: 17.6px;
  line-height: 120%;
  color: #fff !important;
  background: var(--conversion, #C1515E);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 18px 20px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-decoration: none !important;
}

.article_contact_2025 a:hover {
  background: var(--hover, #9F2739);
}

.article_contact_2025 a::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left: 6px solid #fff;
  transition: 0.2s;
}

.article_contact_2025 a::after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 16px - 26px);
  background: #fff;
  transition: 0.2s;
}

.download_pdf {
  margin-top: 32px;
}

.download_pdf a {
  font-weight: 700;
  font-size: 17.6px;
  line-height: 120%;
  color: #fff !important;
  background: var(--liner, linear-gradient(90deg, #0192C2 0%, #0175BA 100%));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 18px 20px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-decoration: none !important;
}

.download_pdf a:hover {
  color: white !important;
  background: var(--dl_hover, linear-gradient(90deg, #3884B2 0%, #295A99 100%));
}

.download_pdf a::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left: 6px solid #fff;
  transition: 0.2s;
}

.download_pdf a::after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 16px - 26px);
  background: #fff;
  transition: 0.2s;
}
