/*==========================================================================
 c-article_list
==========================================================================*/
.s-main_column {
  width: 100%;
}
.c-article_list {
  list-style: none;
  margin: 0 auto;
  padding-bottom: 5.6rem;
}
.c-article_list li.article_box {
  box-sizing: border-box;
  max-width: none;
  border: 1px solid #DDD;
  border-radius: 20px;
}
.c-article_list li.article_box:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 883px) {
  /* 3カラム */
  .c-article_list {
    display: flex;
    justify-content: space-between;
    gap: 3.3rem;
    margin-bottom: 1.6rem;
  }
  .c-article_list li.article_box {
    box-sizing: border-box;
    width: calc(1200px / 3);
    margin-bottom: 0;
  }
  .c-article_list li.article_box:not(:last-child) {
    margin-bottom: 0;
  }
}
.c-article_list li.article_box .title_image {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}
.c-article_list li.article_box a img {
  position: absolute;
  width: 100%;
  height: 200px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1);
  transition: all .3s ease-out;
  object-fit: cover;
}
.c-article_list li.article_box a:hover img {
  transform: scale(1.05);
}
.c-article_list li.article_box .text {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #fff;
  padding: 2.4rem;
  border-radius: 0 0 20px 20px;
}

.c-article_list li.article_box .text .title,
.c-article_list li.article_box .text .summary {
  color: #23305b;
  transition: all .3s ease-out;
}
.c-article_list li.article_box a:hover .text .title {
  color: #2DA4BA;
}
.c-article_list li.article_box .text .title {
  display: block;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  color: #000;
  font-weight: bold;
  vertical-align: middle;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-article_list li.article_box .text .summary {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.c-article_list li.article_box .text .date_time {
  display: block;
  color: #b3b3b3;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 1.6rem;
}
.c-article_list .article_box .category_list {
  display: flex;
  flex-wrap: wrap;
}
.c-article_list .article_box .category_list li {
  display: block;
  padding: 6px 16px;
  color: #666;
  font-size: 1.4rem;
  background: #F2F2F2;
  border: 1px solid #F2F2F2;
  border-radius: 100px;
  line-height: 1;
  margin-top: .8rem;
}
.c-article_list .article_box .category_list li:not(:last-child) {
  margin-right: .8rem;
}
@media screen and (min-width: 883px) {
  .c-article_list li a {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .c-article_list li.article_box .title_image {
    height: 200px;
  }
}
.s-main_column .c-article_list {
  padding-bottom: 0;
}

@media screen and (min-width: 883px) {
  /* 1カラム＋sub */
  .s-main_column .c-article_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 3.2rem;
  }
  .s-main_column .c-article_list li.article_box {
    width: 100%;
    margin-bottom: 0;
  }
  .s-main_column .c-article_list li.article_box {
    margin-right: 0;
  }
}
@media screen and (min-width: 1100px) {
  /* 2カラム＋sub */
  .s-main_column .c-article_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    width: 100%;
  }
  .s-main_column .c-article_list li.article_box {
    width: 100%;
    max-width: calc(50% - 1.6rem);
  }
}


/*==========================================================================
 s-sub_column
==========================================================================*/
.s-sub_column {
  margin-top: 4.8rem;
}
.s-sub_column .c-banner {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto 5.6rem;
}
.s-sub_column .s-consultation_list,
.s-sub_column .s-tag_list {
  margin: 0 auto 5.6rem;
  border-top: 1px solid #e5e5e5;
}
.s-sub_column .s-consultation_list li,
.s-sub_column .s-tag_list li {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}
.s-sub_column .s-consultation_list li a,
.s-sub_column .s-tag_list li a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
  font-weight: normal;
  padding: 2rem 2.4rem 2rem 0;
}
.s-sub_column .s-consultation_list li a:after,
.s-sub_column .s-tag_list li a:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto;
}
.s-sub_column .s-consultation_list li a:hover,
.s-sub_column .s-tag_list li a:hover {
  color: #2DA4BA;
  padding-left: 1rem;
}
@media screen and (min-width: 883px) {
  .s-sub_column {
    display: block;
    width: 300px;
    min-width: 300px;
    margin-top: 0;
    margin-left: 8rem;
  }
  .s-sub_column .s-consultation_list li a,
  .s-sub_column .s-tag_list li a {
    font-size: 1.6rem;
    padding: 2.4rem 4rem 2.4rem 1.6rem;
  }
  .s-sub_column .s-consultation_list li a:after,
  .s-sub_column .s-tag_list li a:after {
    right: 2.4rem;
  }
  .s-sub_column .s-consultation_list li a:hover,
  .s-sub_column .s-tag_list li a:hover {
    color: #2DA4BA;
    padding-left: 2rem;
  }
}
.s-sub_column .c-sub_article_list {
  margin: 0 auto 5.6rem;
}
.s-sub_column .c-sub_article_list li.article_box:not(:last-child) {
  margin-bottom: 1.6rem;
}
.s-sub_column .c-sub_article_list li.article_box a {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.6rem;
}
.s-sub_column .c-sub_article_list li.article_box a .title_image {
  display: block;
  width: 90px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.s-sub_column .c-sub_article_list li.article_box a img {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1);
  transition: all .3s ease-out;
}
.s-sub_column .c-sub_article_list li.article_box a:hover img {
  transform: scale(1.1);
  transition: all .3s ease-out;
}
.s-sub_column .c-sub_article_list li.article_box .text {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 1.6rem;
  color: #000;
}
.s-sub_column .c-sub_article_list li.article_box .text .title {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.s-sub_column .c-sub_article_list li.article_box a:hover .text .title {
  color: #2DA4BA;
  transition: all .3s ease-out;
}
.s-sub_column .c-sub_article_list li.article_box .text .date_time {
  color: #b3b3b3;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: .4rem;
}

/*==========================================================================
 s-listpager
==========================================================================*/
.s-listpager {
  display: flex;
  height: 50px;
  margin: 3.2rem auto 8rem;
}
.s-listpager > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-listpager .is-active {
  cursor: pointer;
}
.s-listpager .is-active:hover {
  background-color: #eaf6f9;
  transition: all .3s ease-out;
}
.s-listpager_first {
  border: 1px solid #ddd;
  width: 55px;
  border-radius: 30px 0 0 30px;
}
.s-listpager_last {
  border: 1px solid #ddd;
  width: 55px;
  border-radius: 0 30px 30px 0;
}
.s-listpager_prev {
  border: 1px solid #ddd;
  border-left: none;
  width: 55px;
}
.s-listpager_next {
  border: 1px solid #ddd;
  border-right: none;
  width: 55px;
}
.s-listpager_first img,
.s-listpager_prev img {
  transform: rotate(180deg);
}
.s-listpager_num {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 1.4rem;
  color: #000;
  padding: 0 0.8rem;
  flex: 1;
}
@media screen and (min-width: 883px) {
  .s-listpager {
    width: 374px;
    height: 52px;
    margin: 0 auto;
  }
}

/*==========================================================================
 s-article_editoriald_epartment_box
==========================================================================*/
.s-article_editoriald_epartment_box {
  border: 1px solid #E5E5E5;
  padding: 16px;
  margin-bottom: 3.2rem;
}
.s-article_editoriald_epartment_box .head {
  display: flex;
  gap: 16px;
  margin-bottom: .8rem;
}
.s-article_editoriald_epartment_box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.s-article_editoriald_epartment_box .icon img {
  max-width: 80px;
  width: 80px;
  height: 80px;
  margin: 0;
}
.s-article_editoriald_epartment_box .title {
  position: relative;
  margin-top: 3rem;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.s-article_editoriald_epartment_box .title span {
  display: block;
}
.s-article_editoriald_epartment_box .title::before {
  content: "監修者";
  position: absolute;
  top: -30px;
  left: 0;
  background: #666;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  width: 58px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-article_editoriald_epartment_box .explanation {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 883px) {
  .s-article_editoriald_epartment_box {
    display: flex;
    gap: 24px;
    padding: 24px;
  }
  .s-article_editoriald_epartment_box .icon {
    position: relative;
    margin-top: 3.2rem;
  }
  .s-article_editoriald_epartment_box .icon img {
    max-width: 100px;
    width: 100px;
    height: 100px;
  }
  .s-article_editoriald_epartment_box .title {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .s-article_editoriald_epartment_box .title::before {
    content: none;
  }
  .s-article_editoriald_epartment_box .icon::before {
    content: "監修者";
    position: absolute;
    top: -32px;
    left: 0;
    background: #666;
    color: #fff;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1;
    width: 100px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .s-article_editoriald_epartment_box .explanation {
    margin-top: .8rem;
  }
}

/*==========================================================================
 c-main_article
==========================================================================*/
h1.c-article_title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 5.6rem;
}
@media only screen and (min-width: 883px) {
  h1.c-article_title {
    font-size: 4rem;
    padding-bottom: 8rem;
  }
}

.c-main_article {
  margin-bottom: 8rem;
}
.s-main_column article .category_list {
  display: flex;
  flex-wrap: wrap;
}
.s-main_column article .category_list li {
  display: block;
  margin-top: .8rem;
  margin-bottom: 2.4rem;
}
.s-main_column article .category_list li:not(:last-child) {
  margin-right: .8rem;
}
.s-main_column article .category_list li a {
  padding: 6px 16px;
  font-size: 1.4rem;
  color: #666;
  background: #F2F2F2;
  border: 1px solid #F2F2F2;
  border-radius: 100px;
  line-height: 1;
}
.s-main_column article .category_list li a:hover {
  color: #2DA4BA;
  background: #fff;
  border: 1px solid #E5E5E5;
}
.s-main_column article .date_time {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.s-main_column article .c-article_head {
  margin-bottom: 3.2rem;
}
.s-main_column article .consultant_info {
  border: 2px solid #2DA4BA;
  padding: 1.6rem;
  margin-bottom: 3.2rem;
}
.s-main_column article .consultant_info dt {
  float: left;
  display: inline-block;
  width: 80px;
  height: 28px;
  vertical-align: top;
  text-align: center;
  color: #fff;
  padding: 0.6rem 0.8rem;
  font-size: 1.6rem;
  line-height: 1;
  background: #2DA4BA;
  margin-right: .8rem;
}
.s-main_column article .consultant_info dd {
  display: block;
  min-width: 12rem;
  line-height: 2.8rem;
  font-weight: bold;
}
.s-main_column article .consultant_info dt:not(:first-of-type),
.s-main_column article .consultant_info dd:not(:first-of-type) {
  margin-top: .8rem;
}
.s-main_column.news_article .c-article_head .item_category {
  display: block;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 883px) {
  .s-main_column article .consultant_info {
    display: flex;
    padding: 1.6rem 2.4rem;
  }
  .s-main_column article .consultant_info dt:not(:first-of-type) {
    margin-left: 3.2rem;
  }
  .s-main_column article .consultant_info dt:not(:first-of-type),
  .s-main_column article .consultant_info dd:not(:first-of-type) {
    margin-top: 0;
  }
  .s-main_column.news_article {
    border: 1px solid #E5E5E5;
    padding: 8rem 8rem 0;
  }
  .s-main_column article .c-article_head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .s-main_column article .category_list li {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.c-main_article h2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 8rem;
  padding-bottom: 1.6rem;
  margin-bottom: 3.2rem;
}
.c-main_article h2:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-main_article h2::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #2DA4BA;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (min-width: 883px) {
  .c-main_article h2 {
    font-size: 3.2rem;
    margin-top: 8rem;
    padding-bottom: 1.6rem;
    margin-bottom: 3.2rem;
  }
  .c-main_article h2::after {
    width: 200px;
  }
}

.c-main_article h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  border-left: 4px solid #2DA4BA;
  padding-left: 1.2rem;
  margin-top: 5.6rem;
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 883px) {
  .c-main_article h3 {
    font-size: 2.4rem;
    border-left: 6px solid #2DA4BA;
    padding-left: 1.6rem;
    margin-bottom: 3.2rem;
  }
}

.c-main_article h4 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 3.2rem;
  margin-bottom: .8rem;
}
@media only screen and (min-width: 883px) {
  .c-main_article h4 {
    font-size: 2rem;
  }
}

.c-main_article {
  font-size: 1.6rem;
  line-height: 2;
}

.c-main_article p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 3.2rem;
}
.c-main_article p+p {
  margin-top: -1.6rem;
}
.c-main_article strong {
  font-weight: bold;
}
@font-face {
  font-family: Meiryo;
  src: local('Meiryo'), local('メイリオ');
}
.c-main_article em {
  font-family: Meiryo, "メイリオ", sans-serif;
  font-style: italic;
}

.c-main_article hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  border: 0;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
.c-main_article p+hr {
  margin-top: -1.6rem;
}

.c-main_article a {
  color: #2DA4BA;
  text-decoration: underline;
}
@media only screen and (min-width: 883px) {
  .c-main_article a {
    text-decoration: none;
  }
  .c-main_article a span {
    border-bottom: 1px solid #2DA4BA;
    transition: border-bottom .3s ease-out;
  }
  .c-main_article a:hover span {
    border-bottom: 0 solid transparent;
  }
}

.c-main_article ul {
  padding-left: 2.5rem;
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 3.2rem;
}
.c-main_article ol {
  padding-left: 2.5rem;
  list-style-type: decimal;
  list-style-position: outside;
  margin-bottom: 3.2rem;
}
.c-main_article ul li,
.c-main_article ol li {
  font-size: 1.6rem;
  line-height: 2rem;
}
.c-main_article ul li:not(:last-child),
.c-main_article ol li:not(:last-child) {
  margin-bottom: .4rem;
}
.c-main_article figure {
  margin-bottom: 3.2rem;
}
.c-main_article figure img {
  display: block;
  width: 500px;
  margin: 0 auto;
}
.c-main_article table {
  display: block;
  overflow: auto;
  width: 100%;
  border: 1px solid #CCC;
  margin-bottom: 3.2rem;
}
.c-main_article table thead th {
  min-width: 157px;
}
.c-main_article table th,
.c-main_article table td {
  padding: 1.3rem 1.6rem;
  border: 1px solid #CCC;
  font-size: 1.6rem;
  line-height: 1.4rem;
}
.c-main_article table thead {
  background-color: #EAF6F9;
  font-weight: bold;
  text-align: center;
}
.c-main_article table tbody th {
  background-color: #F7F7F7;
  font-weight: bold;
}
.c-main_article table tbody td {
  vertical-align: top;
  width: 100%;
  line-height: 1.6rem;
}
.c-main_article pre {
  padding: 2rem;
  margin-bottom: 5rem;
  background: #fff;
  box-shadow: 0px 0px 10px #23305b29;
  font-family: inherit;
  line-height: 3.2rem;
  white-space: pre-wrap;
}
.c-main_article code {
  font-family: inherit;
}

.s-form_section {
  border-top: 2px solid #ddd;
  padding-top: 5.6rem;
  padding-bottom: 2.4rem;
  border-bottom: 2px solid #ddd;
}
.s-form_section *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 883px) {
  .s-form_section {
    border: 1px solid #ddd;
    padding: 3.2rem;
  }
}
@media screen and (max-width: 884px) {
  .s-form_section {
    margin: 0 calc(50% - 50vw) 8rem;
    width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-article_bottom {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.c-article_bottom {
  border-top: 1px solid #e5e5e5;
}
.c-article_bottom .s-article_prev_link,
.c-article_bottom .s-article_next_link {
  position: relative;
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.4;
  border-bottom: 1px solid #e5e5e5;
}
.c-article_bottom .s-article_prev_link {
  padding: 1.6rem 2rem 1.6rem 4.8rem;
}
.c-article_bottom .s-article_prev_link:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  margin: auto;
  transform: rotate(180deg);
}
.c-article_bottom .s-article_next_link {
  text-align: right;
  padding: 1.6rem 4.8rem 1.6rem 2rem;
}
.c-article_bottom .s-article_next_link:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon/arrow-right-single-blue.svg) no-repeat center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
}
.s-article_top_link {
  margin-top: 4.8rem;
  display: block;
  text-align: center;
  text-decoration: underline;
}

@media screen and (min-width: 883px) {
  .c-article_bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 0;
    border-bottom: 1px solid #e5e5e5;
  }
  .c-article_bottom li {
    flex: 1;
  }
  .c-article_bottom li:not(:last-child) {
    border-right: 1px solid #E5E5E5;
  }
  .c-article_bottom .s-article_prev_link,
  .c-article_bottom .s-article_next_link {
    border-bottom: none;
  }
  .c-article_bottom .s-article_prev_link {
    padding: .8rem 3.2rem .8rem 4.4rem;
  }
  .c-article_bottom .s-article_prev_link:hover {
    color: #2DA4BA;
    padding: .8rem 4rem .8rem 3.6rem;
  }
  .c-article_bottom .s-article_prev_link:after {
    left: 0;
  }
  .c-article_bottom .s-article_next_link {
    padding: .8rem 4.4rem .8rem 3.2rem;
  }
  .c-article_bottom .s-article_next_link:hover {
    color: #2DA4BA;
    padding: .8rem 3.6rem .8rem 4rem;
  }
  .c-article_bottom .s-article_next_link:after {
    right: 0;
  }
  .s-article_top_link {
    text-decoration: none;
  }
}

/*==========================================================================
 news_list
==========================================================================*/
@media screen and (min-width: 883px) {
  .l-page_contents.news_size .u-cw {
    max-width: 980px;
  }
}

.s-news_section .c-title_2 {
  margin-bottom: 3.2rem;
}
.c-news_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 3.2rem 0;
}
.c-news_list li {
  width: 100%;
  border-top: none;
  background: #fff;
  border-bottom: 1px solid #E5E5E5;
}
.c-news_list li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  color: #000;
  margin: 2.5rem 0;
}
.c-news_list li a:hover .item_title {
  color: #2DA4BA;
  transition: all .3s ease-out;
}
.c-news_list li .date_time {
  font-size: 1.2rem;
  line-height: 22px;
  margin-right: 1.6rem;
}
.c-news_list li .item_category,
.c-article_head .item_category {
  display: inline-block;
  width: 114px;
  height: 22px;
  vertical-align: top;
  text-align: center;
  color: #fff;
  padding: .5rem .8rem;
  font-size: 1.4rem;
  background-color: #99999A;
}
.c-news_list li .item_category.notice,
.c-article_head .item_category.notice {
  background-color: #008FAA;
}
.c-news_list li .item_category.caution,
.c-article_head .item_category.caution {
  background-color: #B93332;
}
.c-news_list li .item_category.report,
.c-article_head .item_category.report {
  background-color: #E68219;
}
.c-news_list li .item_category.release,
.c-article_head .item_category.release {
  background-color: #2B679D;
}
.c-news_list li .item_title {
  width: 100%;
  margin-top: .8rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
