@charset "UTF-8";
.articles-index {
  padding-top: 10px;
}
.tabs {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.tabs .ib {
  display: inline-block;
}
.tabs > li {
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .tabs > li {
    flex-grow: 0;
    flex-shrink: 0;
    margin-bottom: 10px;
    width: 33.33%;
  }
}
@media screen and (max-width: 667px) {
  .tabs > li {
    width: 50%;
  }
}
.tabs > li > a {
  align-items: center;
  backface-visibility: hidden;
  background: #e6e7ea;
  border-radius: 10px;
  color: #333;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: flex-end;
  line-height: 1.2;
  padding: 9px 22px 9px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .tabs > li > a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .tabs > li > a {
    border-radius: 6px;
    font-size: 1.6rem;
    justify-content: center;
    min-height: 50px;
  }
}
.tabs > li > a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1025px) {
  .tabs > li > a.is-small {
    padding-left: 26px;
    padding-right: 26px;
  }
}
.tabs > li > a.is-active {
  background-color: #002b62;
  color: #fff;
  pointer-events: none;
}
.tabs > li > a.is-active::before {
  border-color: #002b62 transparent transparent transparent;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  bottom: -10px;
  content: "";
  display: block;
  height: 0;
  left: calc(50% - 5px);
  position: absolute;
  width: 0;
}
@media screen and (max-width: 767px) {
  .tabs > li > a.is-active::before {
    display: none;
  }
}
.tabs > li > a[data-category="すべての記事"]::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tabs .text {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.tabs .icon {
  align-items: center;
  display: flex;
  flex-grow: 1;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .tabs .icon {
    display: none;
  }
}
.tabs svg .blue {
  fill: #002b62;
}
.tabs svg .white {
  fill: #fff;
}
.tabs a.is-active svg .blue {
  fill: #fff;
}
.tabs a.is-active svg .white {
  fill: #002b62;
}
.tabBody {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .tabBody {
    padding-top: 10px;
  }
}
.tabBody .tabBody-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 43, 98, 0.05);
  display: none;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .tabBody .tabBody-box {
    margin-bottom: 20px;
  }
}
.tabBody .tabBody-box-inner {
  display: flex;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .tabBody .tabBody-box-inner {
    flex-direction: column;
    padding-bottom: 50px;
  }
}
.tabBody .tabBody-box-image {
  flex-shrink: 0;
  margin-right: 40px;
  max-width: 320px;
}
.tabBody .tabBody-box-image img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .tabBody .tabBody-box-image {
    align-self: center;
    flex: 1 1 auto;
    margin-bottom: 20px;
    margin-right: 0;
    min-height: 1%;
    min-width: 1%;
    text-align: center;
    width: auto;
  }
}
.tabBody .tabBody-box-text {
  font-size: 1.4rem;
  line-height: 1.72;
  max-width: 100%;
  min-width: 1%;
}
@media screen and (max-width: 767px) {
  .tabBody .tabBody-box-text {
    font-size: 1.2rem;
  }
}
.tabBody .tabBody-box-text > p {
  margin: 0;
}
.tabBody .tabBody-box-text > p + p {
  margin-top: 20px;
}
.articles-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  outline: none;
}
@media screen and (max-width: 1024px) {
  .articles-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.articles-wrapper .articles-col {
  flex: 1 1 auto;
  margin-bottom: 55px;
  max-width: 33.33%;
  padding: 0 30px;
  width: 33.33%;
}
@media screen and (max-width: 1024px) {
  .articles-wrapper .articles-col {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .articles-wrapper .articles-col {
    margin-bottom: 28px;
    max-width: 50%;
    width: 50%;
  }
}
@media screen and (max-width: 667px) {
  .articles-wrapper .articles-col {
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
    max-width: 390px;
    width: 100%;
  }
}
.articles-col .articles-link {
  backface-visibility: hidden;
  color: #333;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: opacity 0.3s;
}
.articles-col .articles-link:hover {
  opacity: 0.7;
}
.articles-col .articles-image {
  margin-bottom: 23px;
  min-height: 1%;
  min-width: 1%;
}
@media screen and (max-width: 767px) {
  .articles-col .articles-image {
    margin-bottom: 13px;
  }
}
.articles-col .articles-image img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
.articles-col .articles-category {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .articles-col .articles-category {
    margin-bottom: 0;
  }
}
.articles-col .articles-category > li {
  background-color: #3d5d87;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  margin-right: 10px;
  min-width: 120px;
  padding: 7px 6px 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .articles-col .articles-category > li {
    font-size: 1.2rem;
    margin-bottom: 5px;
    min-width: 124px;
    padding: 4px 10px;
  }
}
.articles-col .articles-category > li:last-child {
  margin-right: 0;
}
.articles-col .articles-category > li.cat-01 {
  background-color: #3d5d87;
}
.articles-col .articles-category > li.cat-02 {
  background-color: #786c55;
}
.articles-col .articles-category > li.cat-03 {
  background-color: #006b7e;
}
.articles-col .articles-category > li.cat-04 {
  background-color: #9e4531;
}
.articles-col .articles-category > li.cat-05 {
  background-color: #594771;
}
.articles-col .articles-category > li:empty {
  display: none;
}
.articles-col .articles-title {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
}
.button-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .button-wrapper {
    margin-left: -10px;
    margin-right: -10px;
  }
  .button-wrapper > * {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .button-wrapper {
    flex-direction: column;
  }
  .button-wrapper > * {
    margin-bottom: 20px;
  }
  .button-wrapper > *:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .button-wrapper.pc-left {
    justify-content: flex-start;
  }
}
.button {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.button a {
  background-image: linear-gradient(to right, #05305f 0, #476589 50%, #05305f 100%);
  background-size: 200% auto;
  border: 0;
  border-radius: 1000px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  min-width: 180px;
  padding: 11px 42px 10px 32px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease;
}
@media screen and (max-width: 767px) {
  .button a {
    font-size: 1.6rem;
  }
}
.button a::before {
  backface-visibility: hidden;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  margin: auto;
  position: absolute;
  right: 16px;
  top: 0;
  transform: rotate(45deg);
  transition: right 0.2s;
  width: 20px;
}
.button a:hover,.button a:focus {
  background-position: right center;
}
@media screen and (min-width: 768px) {
  .button a.js-moreButton {
    font-size: 2rem;
    min-width: 300px;
    padding: 14px;
  }
  .button a.js-moreButton::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .button a.js-moreButton {
    padding-left: 0;
    padding-right: 0;
  }
  .button a.js-moreButton::before {
    display: none;
  }
}
.button.button-anchor a::before {
  bottom: 12px;
  transform: rotate(135deg);
}
.bocceBox-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.bocceBox {
  padding: 10px;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .bocceBox {
    width: 33.33%;
  }
}
@media screen and (max-width: 640px) {
  .bocceBox {
    width: 50%;
  }
}
.bocceBox-link {
  color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
}
.bocceBox-link::before {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
}
.bocceBox-link.is-comming {
  pointer-events: none;
}
.bocceBox-link:not(.is-comming) .bocceBox-text > span {
  position: relative;
}
.bocceBox-link:not(.is-comming) .bocceBox-text > span::before {
  background: #fff;
  border-radius: 100%;
  bottom: -24px;
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 20px;
}
.bocceBox-link:not(.is-comming) .bocceBox-text > span::after {
  border-left: 2px solid #3c5d86;
  border-top: 2px solid #3c5d86;
  bottom: -18px;
  content: "";
  display: block;
  height: 8px;
  left: 50%;
  margin-left: -6px;
  position: absolute;
  transform: rotate(135deg);
  width: 8px;
}
.bocceBox img {
  height: auto;
  opacity: 1 !important;
  transition: none !important;
  vertical-align: top;
  width: 100%;
}
.bocceBox-text {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  left: 0;
  line-height: 1.4;
  opacity: 1;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
}
.bocceBox-text .bocceBox-team {
  font-size: 1.6rem;
}
.bocceBox-link:hover .bocceBox-text {
  opacity: 0;
}
.bocceBox-link:hover::before {
  opacity: 0;
}