@charset "UTF-8";

.articles {
  width: 84vw;
  margin-left: auto;
  margin-right: auto;
}

.articles .top-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.articles-inner {
  display: grid;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 100%;
}

.articles-header {
  grid-row: 2;
}

.articles-primary {
  grid-row: 1;
  border-top: 2px solid #08287F;
  border-bottom: 1px solid #CCCCCC;
}

.articles-secondary {
  grid-row: 3;
}

.articles-header ~ .articles-secondary {
  border-top: 2px solid #08287F;
}

.articles-footer {
  grid-row: 4;
}

.articles-nav-filter {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

.articles-nav-filter .btn {
  padding-top: 17px;
  padding-bottom: 17px;
  margin-right: auto;
  margin-left: auto;
}

.articles-nav-filter .btn .btn-text-JP {
  font-size: 15px;
}

.articles-nav-filter-tag[data-visible='true'] {
  padding: 10px 0;
}

.articles-nav-filter-tag-list {
  display: grid;
  grid-template-columns: repeat(2, 47.46032%);
  -moz-column-gap: 4.26667vw;
  column-gap: 4.26667vw;
  row-gap: 10px;
  align-items: center;
}

.articles-nav-filter-tag-list:not(:empty) {
  margin-top: 30px;
}

.articles-nav-filter-tag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  padding: 5px 1.33333vw 5px 2.66667vw;
  background-color: #F0F0F0;
  border-radius: 4px;
}

.articles-nav-filter-tag-item[data-visible='false'] {
  opacity: 0;
  transform: translate3d(20%, 0, 0);
  transition: opacity 250ms ease-in, transform 250ms ease-out;
}

.articles-nav-filter-tag-text {
  width: calc(100% - 20px - 6px);
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  color: #08287F;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.articles-nav-filter-tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
}

.articles-nav-filter-tag-icon *[class^='icon-'] {
  font-size: 18px;
  color: #08287F;
}

.articles-nav-filter-tag-btn {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  color: #08287F;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.06em;
  border-bottom: solid 1px #08287F;
  margin-top: 18px;
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 16px;
}

.articles-header .results {
  font-size: 13px;
  color: #08287F;
}

.articles-header .results strong {
  padding-right: 4px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.articles-secondary-navmenu {
  position: sticky;
  top: 60px;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  z-index: 1;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 50px;
  pointer-events: none;
}

.articles-secondary-navmenu *[class*='icon-'] {
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 4px;
  font-size: 20px;
  color: #4D4D4D;
}

.articles-secondary-navmenu *[class*='text-'] {
  letter-spacing: 0.04em;
}

.articles-secondary-navmenu p {
  opacity: 0;
  transition: opacity 200ms;
}

.articles-secondary-navmenu[data-active='true'] {
  pointer-events: auto;
}

.articles-secondary-navmenu[data-active='true'] p {
  opacity: 1;
}

.articles-secondary .card-item-date:empty::before {
  content: '　';
  display: block;
}

.articles-secondary .card-item-title:empty::before {
  content: '　';
  display: block;
  width: 100%;
  background: #F0F0F0;
}

.articles-secondary .card-item-tag:empty::before {
  content: '　';
  display: block;
  width: 10em;
}

.articles-footer {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.articles-filter-more {
  text-align: right;
  line-height: 1;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #08287F;
  letter-spacing: 0.06em;
}

.articles-filter-more:nth-child(odd) {
  grid-column: 1 / 3;
}

.articles-filter-more span {
  display: inline-block;
  position: relative;
}

.articles-filter-more span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  border-top: 1px solid #08287F;
}

.perpage {
  position: relative;
  display: flex;
  align-items: center;
}

.perpage #open_perpage_accordion {
  display: none;
}

.perpage span {
  margin-right: 10px;
}

.perpage label {
  display: block;
  width: 103px;
  height: 48px;
  border-radius: 4px;
  border: solid 1px #CCCCCC;
  cursor: pointer;
  padding: 10px 16px 14px;
  font-weight: 600;
}

.perpage label::after {
  content: "\e926";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 26px;
  color: #08287F;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.perpage .accordion {
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms;
}

.perpage .accordion .accordion-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}

.perpage .accordion ul {
  background: #fff;
  width: 103px;
  border-radius: 4px;
  border: solid 1px #f0f0f0;
  box-shadow: 4px 4px 4px #000;
}

.perpage .accordion ul li:nth-child(even) {
  background-color: rgba(240, 240, 240, 0.5);
}

.perpage .accordion ul li:first-child button {
  padding-top: 8px;
}

.perpage .accordion ul li:last-child button {
  padding-bottom: 8px;
}

.perpage .accordion ul button {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  position: relative;
  width: calc(100% - 38px);
  height: 40px;
  padding-left: 38px;
  font-weight: 600;
}

.perpage .accordion ul button::before {
  content: "\e90e";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #08287F;
  opacity: 0;
  transition: opacity 400ms ease;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.perpage .accordion ul li:first-child button::before {
  top: calc(50% + 4px);
}

.perpage .accordion ul li:last-child button::before {
  top: calc(50% - 4px);
}

.perpage .accordion ul button.cu::before {
  opacity: 1;
}

.perpage #open_perpage_accordion:checked ~ .accordion {
  grid-template-rows: 1fr;
}

.hidden-wrap {
  overflow: hidden;
}

.hero {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-bottom: 44vw;
}

.hero-info {
  opacity: 0;
  transition: opacity 600ms ease 300ms, transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms;
}

.hero-info a {
  display: block;
  outline-offset: -3px;
}

.hero-info h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.hero-info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
}

.hero-slide {
  position: relative;
  width: 76vw;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  overflow-anchor: none;
}

.hero-slide.is-ready {
  animation: 1500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms 1 forwards show-animation;
}

.hero-slide .swiper {
  overflow: visible;
  height: 114.66667vw;
}

.hero-slide .swiper-wrapper {
  display: block;
}

.hero-slide .swiper-slide {
  display: none;
  overflow: visible;
  backface-visibility: hidden;
}

.hero-slide .swiper-slide:first-child {
  display: block;
}

.hero-slide .swiper-slide-prev .hero-info {
  transition-delay: 0ms, 0ms;
}

.hero-slide .swiper-slide-next .hero-info {
  transform: translateX(-3%);
}

.hero-slide .swiper-slide-next .hero-slide-img a {
  width: 0;
}

.hero-slide .swiper-slide-active .hero-info {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide .swiper-slide-active .hero-slide-img a {
  transition-duration: 600ms;
  transition-delay: 0ms;
}

.hero-slide.is-ready .swiper {
  visibility: visible;
}

.hero-slide.is-ready .swiper-wrapper {
  display: flex;
}

.hero-slide.is-ready .swiper-slide {
  display: block;
}

.hero-slide-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.hero-slide-img {
  position: relative;
  padding-top: 76vw !important;
}

.hero-slide-img a {
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: width 0ms ease 600ms;
  outline-offset: 2px;
}

.hero-slide-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left center;
  object-position: left center;
  width: 100%;
  height: 100%;
}

.hero-slide .pager {
  position: absolute;
  top: 76vw;
  right: 50%;
  z-index: 10;
  margin-right: -46.66667vw;
  transform: translateY(-100%);
}

.hero-slide .pager.pager-vertical.pager-slide .pager-control:not(:last-child) {
  margin-bottom: 0;
}

.hero-slide .pager .pager-indicator-prev,
.hero-slide .pager .pager-indicator-next {
  font-size: 28px;
  line-height: 1;
  color: #08287F;
  cursor: pointer;
}

.hero-slide .pager-arrow.next {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin-top: 100%;
  background: #08287F;
  background: linear-gradient(160deg, #4B76D2 0%, #08287F 100%);
  border-radius: 4px 0 0 0;
  font-size: 24px;
  transform: translateY(-100%);
}

.hero-slide .pager-arrow.next *[class^='icon-'] {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  transform: translate(-50%, -50%);
}

.hero-obj {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(-90deg, black 20%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0) 50%);
  mask-image: linear-gradient(-90deg, black 20%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0) 50%);
  -webkit-mask-size: 450% 100%;
  mask-size: 450% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  animation: 1000ms ease-out 1000ms forwards mask-animation-reverse;
}

.hero-obj img {
  display: block;
}

.economist {
  position: relative;
  width: 84vw;
  margin-left: auto;
  margin-right: auto;
}

.economist::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -8vw;
  width: 100vw;
  height: 100%;
  background: #F0F0F0;
}

.economist-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
}

.economist-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.economist-img img {
  position: relative;
}

.economist-img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #08287F;
  transform: translateX(-100%);
}

.economist-content {
  width: 100%;
}

.economist-content .btn {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .articles {
    width: 84%;
  }

  .articles .top-title {
    gap: 20px;
  }

  .articles-inner {
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 196px 1fr;
    gap: 0 4.34783%;
  }

  .articles-header {
    grid-row: 1;
    grid-column: 2 / 3;
  }

  .articles-primary {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    border-bottom: none;
  }

  .articles-secondary {
    grid-row: 2;
    grid-column: 2 / 3;
    border-top: 2px solid #08287F;
  }

  .articles-footer {
    grid-row: 3;
    grid-column: 1 / 3;
  }

  .articles-nav {
    display: block;
  }

  .articles-nav-filter {
    border-bottom: 1px solid #CCCCCC;
  }

  .articles-nav-filter .btn {
    width: 100%;
    padding: 7px 18px 7px 10px;
  }

  .articles-nav-filter .btn:focus-visible {
    outline-offset: 3px;
  }

  .articles-nav-filter .btn .btn-text-JP {
    font-size: 13px;
  }

  .articles-nav-filter .btn *[class^='icon-'] {
    right: 10px;
    font-size: 20px;
  }

  .articles-nav-filter-tag {
    display: block;
  }

  .articles-nav-filter-tag-list {
    grid-template-columns: 1fr;
  }

  .articles-nav-filter-tag-item {
    gap: 13px;
    padding: 6px 10px;
  }

  .articles-nav-filter-tag-text {
    width: calc(100% - 20px - 13px);
  }

  .articles-header {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .articles-header .results {
    font-size: 16px;
  }

  .articles-header .results strong {
    font-size: 28px;
  }

  .articles-secondary-navmenu {
    display: none;
  }

  .articles-footer {
    margin-top: 80px;
  }

  .articles-filter-more {
    margin-top: 10px;
    text-align: left;
  }

  .articles-filter-more:nth-child(odd) {
    grid-column: 1 / 1;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .hero-info {
    width: 50.85034%;
  }

  .hero-info h1 {
    display: block;
    margin-bottom: 1vw;
    -webkit-line-clamp: 1;
    white-space: nowrap;
  }

  .hero-info p {
    -webkit-line-clamp: 2;
    line-height: 1.6;
  }

  .hero-slide {
    width: 84%;
  }

  .hero-slide .swiper {
    height: 37.71429vw;
  }

  .hero-slide .swiper-slide-active .hero-slide-img a {
    width: calc(100% + 1px);
  }

  .hero-slide-box {
    flex-direction: row;
    gap: 4.2517%;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-slide-img {
    width: 44.89796%;
    padding-top: 44.89796% !important;
  }

  .hero-slide .pager {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
    margin-right: 0;
    transform: translateY(0);
  }

  .hero-slide .pager .pager-indicator {
    flex-direction: row;
    gap: 10px;
  }

  .hero-slide .pager.pager-vertical.pager-slide .pager-indicator.swiper-pagination-bullets:not(:last-child),
  .hero-slide .pager.pager-vertical.pager-slide .pager-control:not(:last-child) {
    margin-bottom: 0;
  }

  .hero-slide .pager.pager-vertical.pager-slide .pager-indicator.swiper-pagination-bullets .pager-indicator-item:not(:last-child) {
    margin-bottom: 0;
  }

  .hero-slide .pager .pager-control {
    border-color: transparent;
  }

  .hero-obj {
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
    width: 53.92857%;
  }

  .economist {
    width: 92%;
  }

  .economist::before {
    left: -4.34783%;
    width: 108.69565%;
  }

  .economist-inner {
    flex-direction: row;
    gap: 8.69565%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 4.34783%;
    padding-right: 4.34783%;
  }

  .economist-img {
    width: 42.85714%;
  }

  .economist-content {
    width: 47.61905%;
  }

  .economist-content .btn {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1025px) {
  .hero-info p {
    line-height: 1.8;
  }
}