@charset "UTF-8";
/* ▼▼▼ 記事一覧
====================================================== */
#main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.column_contents {
  padding: 0 19px 85px;
}
@media screen and (max-width: 767px) {
  .column_contents {
    padding-bottom: 40px;
  }
}

.subject_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 0;
  font-size: 88px;
  font-family: "Jost", sans-serif;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 59px;
}
.subject_ttl span {
  font-size: 26px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .subject_ttl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 5px 10px;
    margin-bottom: 24px;
    font-size: 36px;
    text-align: left;
  }
  .subject_ttl span {
    display: inline-block;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .detail .subject_ttl {
    gap: 10px 0;
    font-size: 42px;
    margin-bottom: 30px;
  }
  .detail .subject_ttl span {
    font-size: 14px;
  }
}

.tag_wrap {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 48px 20px;
  width: min(100%, 1144px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tag_wrap {
    padding: 20px 12px;
  }
}
.tag_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: min(100%, 900px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tag_wrap ul {
    gap: 10px 5px;
  }
}
.tag_wrap ul li {
  background: #fff;
  border: 1px solid #ADBDCC;
  border-radius: 52px;
  padding: 0 18px;
  height: 50px;
  line-height: 48px;
  color: #ADBDCC;
  font-weight: 500;
  cursor: pointer;
}
.tag_wrap ul li.active {
  color: #000;
}
@media screen and (max-width: 767px) {
  .tag_wrap ul li {
    padding: 0 13px;
    height: 45px;
    line-height: 43px;
    font-size: 13px;
  }
}

#result {
  width: min(100%, 1129px);
  padding: 0 20px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  #result {
    margin-top: 25px;
    padding: 0;
  }
}

.result_txt {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  width: 100%;
  gap: 12px 15px;
}
.result_txt::before {
  content: "";
}
@media screen and (max-width: 767px) {
  .result_txt {
    display: block;
  }
  .result_txt::before {
    display: none;
  }
}
.result_txt .result_item {
  justify-self: center;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  max-width: 550px;
}
@media screen and (max-width: 767px) {
  .result_txt .result_item {
    margin-bottom: 12px;
    font-size: 26px;
  }
}
.result_txt .result_num {
  justify-self: end;
  font-size: 16px;
  font-weight: 500;
}
.result_txt .result_num span {
  font-size: 26px;
  font-family: "Jost", sans-serif;
  padding-right: 0.1em;
}
@media screen and (max-width: 767px) {
  .result_txt .result_num {
    width: 100%;
    text-align: left;
  }
}

.new_article a, .column_list a {
  display: block;
  height: 100%;
  padding: 68% 14px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .new_article a, .column_list a {
    padding: 68% 7px 0;
  }
}
.new_article .img, .column_list .img {
  border: 3px solid #fff;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.8;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.new_article .img img, .column_list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new_article .txt_wrap, .column_list .txt_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 20px 20px 24px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .new_article .txt_wrap, .column_list .txt_wrap {
    padding: 15px 11px;
    height: auto;
  }
}
.new_article .txt_wrap .ttl, .column_list .txt_wrap .ttl {
  margin-bottom: 12px;
  min-height: 4em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .new_article .txt_wrap .ttl, .column_list .txt_wrap .ttl {
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.38;
  }
}
.new_article .txt_wrap .tags, .column_list .txt_wrap .tags {
  gap: 10px;
  font-size: 12px;
}
.new_article .txt_wrap .date, .column_list .txt_wrap .date {
  border-top: 1px dashed currentColor;
  padding-top: 14px;
  margin-top: auto;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .new_article .txt_wrap .date, .column_list .txt_wrap .date {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .article_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 8px;
  }
}

.new_article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 45px;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .new_article {
    display: contents;
  }
}
.new_article > div {
  position: relative;
}
.new_article > div .icon_wrap {
  top: -20px;
  left: -34px;
}
.new_article > div .icon_wrap span {
  z-index: 2;
}
.new_article > div .icon_wrap span:nth-child(2) {
  z-index: 1;
  margin-left: -15px;
}
@media screen and (max-width: 767px) {
  .new_article > div .icon_wrap {
    top: -10px;
    left: -7px;
  }
  .new_article > div .icon_wrap span {
    width: 42px;
  }
  .new_article > div .icon_wrap span:nth-child(2) {
    margin-left: -8px;
  }
}
@media screen and (min-width: 768px) {
  .new_article > div {
    width: calc((100% - 45px) / 2);
    position: relative;
  }
  .new_article > div a {
    padding: 65% 22px 0;
  }
  .new_article > div .txt_wrap {
    padding: 25px 28px;
  }
  .new_article > div .txt_wrap .ttl {
    font-size: 21px;
    line-height: 1.62;
  }
  .new_article > div .txt_wrap .tags {
    font-size: 14px;
    gap: 14px;
  }
  .new_article > div .txt_wrap .date {
    border-top: 1.5px dashed currentColor;
    padding-top: 24px;
    margin-top: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .new_article > div:nth-child(1) {
    grid-column: 1/3;
    width: 100%;
    margin: 0;
    margin: 30px 0 0;
  }
  .new_article > div:nth-child(1) .icon_wrap {
    top: -13px;
    left: -11px;
  }
  .new_article > div:nth-child(1) .icon_wrap span {
    width: 62px;
  }
  .new_article > div:nth-child(1) .icon_wrap span:nth-child(2) {
    margin-left: -12px;
  }
  .new_article > div:nth-child(1) a {
    padding: 65% 18px 0;
  }
  .new_article > div:nth-child(1) .txt_wrap {
    padding: 20px;
  }
  .new_article > div:nth-child(1) .txt_wrap .ttl {
    font-size: 16px;
    line-height: 1.44;
  }
  .new_article > div:nth-child(1) .txt_wrap .tags {
    font-size: 14px;
    gap: 14px;
  }
  .new_article > div:nth-child(1) .txt_wrap .date {
    padding-top: 16px;
    margin-top: 16px;
    font-size: 10px;
  }
}

.column_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: min(100%, 1059px);
  margin: 0 auto;
}
.column_list > div {
  position: relative;
}
@media screen and (max-width: 767px) {
  .column_list {
    display: contents;
  }
}
.column_list .icon_wrap {
  top: -10px;
  left: -23px;
}
.column_list .icon_wrap span {
  width: 62px;
}
.column_list .icon_wrap span:nth-child(2) {
  margin-left: -12px;
}
@media screen and (max-width: 767px) {
  .column_list .icon_wrap {
    top: -10px;
    left: -7px;
  }
  .column_list .icon_wrap span {
    width: 42px;
  }
  .column_list .icon_wrap span:nth-child(2) {
    margin-left: -8px;
  }
}

.more {
  text-align: center;
  width: 100%;
  height: 355px;
  padding-top: 230px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .more {
    padding-top: 47px;
    height: 165px;
  }
}
.more::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(32%, rgba(240, 247, 249, 0.5019607843)), color-stop(62%, #f0f7f9));
  background-image: linear-gradient(transparent, rgba(240, 247, 249, 0.5019607843) 32%, #f0f7f9 62% 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .more::before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(22%, rgba(240, 247, 249, 0.5019607843)), color-stop(52%, #f0f7f9));
    background-image: linear-gradient(transparent, rgba(240, 247, 249, 0.5019607843) 22%, #f0f7f9 52% 100%);
  }
}
.more div {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.more .arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.circle_wrap {
  height: 2290px;
}
.circle_wrap .circle.circle1 {
  top: 240px;
  left: -240px;
}
@media screen and (max-width: 767px) {
  .circle_wrap .circle.circle1 {
    top: 125px;
    left: -100px;
  }
}
.circle_wrap .circle.circle2 {
  top: 15px;
  left: -80px;
}
@media screen and (max-width: 767px) {
  .circle_wrap .circle.circle2 {
    top: 47px;
    left: -42px;
  }
}
.circle_wrap .circle.circle3 {
  top: 1130px;
  right: -300px;
}
@media screen and (max-width: 767px) {
  .circle_wrap .circle.circle3 {
    top: 905px;
    right: -145px;
  }
}
.circle_wrap .circle.circle4 {
  top: 860px;
  right: -200px;
}
@media screen and (max-width: 767px) {
  .circle_wrap .circle.circle4 {
    top: 765px;
    right: -130px;
  }
}
.circle_wrap .circle.circle5 {
  left: -55px;
  bottom: 410px;
}
@media screen and (max-width: 767px) {
  .circle_wrap .circle.circle5 {
    left: -39px;
    bottom: 240px;
  }
}
.circle_wrap .circle.circle6 {
  left: -340px;
  bottom: 510px;
}
@media screen and (max-width: 767px) {
  .circle_wrap .circle.circle6 {
    left: -157px;
    bottom: 280px;
  }
}

.icon_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: -23px;
  position: absolute;
}
.icon_wrap span {
  z-index: 2;
}
.icon_wrap span:nth-child(2) {
  z-index: 1;
  margin-left: -15px;
}
@media screen and (max-width: 767px) {
  .icon_wrap {
    left: -10px;
  }
  .icon_wrap span {
    width: 62px;
  }
  .icon_wrap span:nth-child(2) {
    margin-left: -12px;
  }
}

/* ▼▼▼ 記事詳細
====================================================== */
.mv_warp {
  max-width: 810px;
  margin: 0 auto;
  padding: 15px 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv_warp {
    padding: 15px 0 0;
  }
}
.mv_warp .mv {
  border: 4px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
.mv_warp .mv_txt {
  border-radius: 10px;
  width: min(80%, 682px);
  padding: 30px 40px;
  margin: -73px auto 0;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv_warp .mv_txt {
    width: calc(100% - 42px);
    padding: 20px;
    margin-top: -50px;
  }
}
.mv_warp .mv_txt .tag {
  display: inline-block;
  background: #ADBDCC;
  border-radius: 50px;
  padding: 12px 20px;
  margin-bottom: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .mv_warp .mv_txt .tag {
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 13px;
  }
}
.mv_warp .mv_txt h1 {
  border-bottom: 1px dashed currentColor;
  padding-bottom: 23px;
  margin-bottom: 28px;
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mv_warp .mv_txt h1 {
    padding-bottom: 16px;
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.mv_warp .mv_txt .date {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .mv_warp .mv_txt .date {
    font-size: 10px;
  }
}

.toc_wrap {
  background: #fff;
  border-radius: 20px;
  margin-top: 48px;
  padding: 40px 50px;
  height: 312px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .toc_wrap {
    margin-top: 32px;
    padding: 20px 19px;
  }
}
.toc_wrap .toc_ttl {
  margin: 0;
  font-size: 22px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .toc_wrap .toc_ttl {
    margin-bottom: 0;
    font-size: 24px;
  }
}
.toc_wrap .toc_list {
  display: grid;
  gap: 8px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}
.toc_wrap .toc_list li {
  border-bottom: 1px dashed currentColor;
}
.toc_wrap .toc_list a {
  display: block;
  padding: 12px 42px 12px 0;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.toc_wrap .toc_list a::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  background-color: #ADBDCC;
  background-image: url(../img/btn_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  top: 50%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .toc_wrap .toc_list {
    gap: 0;
  }
  .toc_wrap .toc_list li {
    margin-bottom: 10px;
    padding-bottom: 20px;
  }
  .toc_wrap .toc_list li a {
    padding: 0 42px 0 0;
  }
}

.toc_more {
  padding-top: 40px;
  margin-top: -116px;
  height: 116px;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .toc_more {
    padding-top: 16px;
    margin-top: -77px;
    height: 77px;
  }
}
.toc_more::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(22%, rgba(255, 255, 255, 0.5019607843)), color-stop(52%, #ffffff));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5019607843) 22%, #ffffff 52% 100%);
  width: 100%;
  height: 116px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .toc_more::before {
    height: 77px;
  }
}
.toc_more .arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.article {
  width: min(100%, 800px);
  margin: 0 auto;
  text-align: center;
}
.article p, .article img {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .article p, .article img {
    margin-top: 26px;
  }
}
.article p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.article p.red {
  color: #D93232;
}
.article p.txt_large {
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .article p.txt_large {
    font-size: 19px;
  }
}
.article h2 {
  border-top: 1px dashed currentColor;
  margin-top: 100px;
  padding: 40px 0 0;
  font-size: 25px;
  line-height: 1.52;
}
@media screen and (max-width: 767px) {
  .article h2 {
    margin-top: 48px;
    padding: 40px 0 0;
    font-size: 22px;
  }
}
.article h2 + p, .article h2 + img {
  margin-top: 0;
}
.article h3 + p {
  margin-top: 24px;
}
.article h4 + p, .article h5 + p, .article h6 + p {
  margin-top: 16px;
}
.article a {
  color: #125FA7;
  text-decoration: underline;
}
.article a:hover {
  opacity: 1;
  text-decoration: none;
}

.block-body ul {
  list-style: disc;
  padding-left: 1em;
}
.block-body ol {
  list-style: decimal;
  padding-left: 1em;
}

/* ▼ スライダー
--------------------------------------- */
#recommend {
  background: #E9ECEE;
  padding: 90px 0 65px 80px;
}
@media screen and (max-width: 767px) {
  #recommend {
    padding: 40px 0 40px 19px;
  }
  #recommend .btn {
    margin-top: 24px;
    text-align: center;
  }
}
#recommend .sect_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  gap: 10px 24px;
  margin-bottom: 10px;
}
#recommend .sect_ttl span {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #recommend .sect_ttl {
    margin-bottom: 13px;
  }
}

.recommend_slide {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  margin-left: -10px;
}
@media screen and (max-width: 767px) {
  .recommend_slide {
    margin-bottom: 30px;
  }
  .recommend_slide .sub_ttl {
    font-size: 26px;
  }
}
.recommend_slide .swiper-slide {
  height: auto;
  width: max(25%, 311px);
  position: relative;
  padding: 20px 0 0 10px;
}
.recommend_slide .swiper-slide.icon01::before {
  background-image: url(../img/icon01.svg);
}
.recommend_slide .swiper-slide.icon02::before {
  background-image: url(../img/icon02.svg);
}
.recommend_slide .swiper-slide.icon03::before {
  background-image: url(../img/icon03.svg);
}
.recommend_slide .swiper-slide.icon04::before {
  background-image: url(../img/icon04.svg);
}
.recommend_slide .swiper-slide::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 58px;
  height: 53px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.recommend_slide .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.recommend_slide .img {
  border: 3px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/0.797;
}
.recommend_slide .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.recommend_slide .txt_area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 28px;
  margin: -30px auto 0;
  width: calc(100% - 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .recommend_slide .txt_area {
    padding: 18px 20px;
  }
}
.recommend_slide .txt_area .tag {
  background: #ADBDCC;
  border-radius: 50px;
  padding: 8px 10px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recommend_slide .txt_area .tag {
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 12px;
  }
}
.recommend_slide .txt_area .ttl {
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recommend_slide .txt_area .ttl {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.38;
  }
}
.recommend_slide .txt_area .date {
  width: 100%;
  border-top: 1px dashed #020202;
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .recommend_slide .txt_area .date {
    padding-top: 15px;
    font-size: 10px;
  }
}
.recommend_slide .swiper-parts {
  width: calc(100% - 80px);
  margin-top: 40px;
  padding-right: 0;
  margin-left: 10px;
}
.recommend_slide .swiper-parts .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 64px;
}
@media screen and (max-width: 767px) {
  .recommend_slide .swiper-parts {
    width: calc(100% - 29px);
    margin-top: 24px;
  }
}

/* PCは3件以下／SPは1件以下でスライドなし。2〜3件時はPC=静的・SP=スライド */
.recommend_static--pc {
  display: none !important;
}

.recommend_slide--sp {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .recommend_static--pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .recommend_slide--sp {
    display: block !important;
  }
  .recommend_static--pc {
    display: none !important;
  }
}
.recommend_static {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  margin-left: -10px;
}
@media screen and (max-width: 767px) {
  .recommend_static {
    margin-bottom: 30px;
  }
}
.recommend_static .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.recommend_static .swiper-slide {
  height: auto;
  width: max(25%, 311px);
  position: relative;
  padding: 20px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .recommend_static .swiper-slide {
    width: 100%;
    max-width: calc(100% - 20px);
  }
}
.recommend_static .swiper-slide::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 58px;
  height: 53px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.recommend_static .swiper-slide.icon01::before {
  background-image: url(../img/icon01.svg);
}
.recommend_static .swiper-slide.icon02::before {
  background-image: url(../img/icon02.svg);
}
.recommend_static .swiper-slide.icon03::before {
  background-image: url(../img/icon03.svg);
}
.recommend_static .swiper-slide.icon04::before {
  background-image: url(../img/icon04.svg);
}
.recommend_static .swiper-slide::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 58px;
  height: 53px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.recommend_static .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.recommend_static .img {
  border: 3px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/0.797;
}
.recommend_static .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.recommend_static .txt_area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 28px;
  margin: -30px auto 0;
  width: calc(100% - 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .recommend_static .txt_area {
    padding: 18px 20px;
  }
}
.recommend_static .txt_area .tag {
  background: #ADBDCC;
  border-radius: 50px;
  padding: 8px 10px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recommend_static .txt_area .tag {
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 12px;
  }
}
.recommend_static .txt_area .ttl {
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recommend_static .txt_area .ttl {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.38;
  }
}
.recommend_static .txt_area .date {
  width: 100%;
  border-top: 1px dashed #020202;
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .recommend_static .txt_area .date {
    padding-top: 15px;
    font-size: 10px;
  }
}
.recommend_static .swiper-parts {
  width: calc(100% - 80px);
  margin-top: 40px;
  padding-right: 0;
  margin-left: 10px;
}
.recommend_static .swiper-parts .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 64px;
}
@media screen and (max-width: 767px) {
  .recommend_static .swiper-parts {
    width: calc(100% - 29px);
    margin-top: 0;
  }
}