@charset "utf-8";
.fV {
  width: 100%;
  background: #005792;
  padding: 2.5rem 0;
}
.fV > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.mVWrap,
.mTWrap {
  display: flex;
}
.mVWrap {
  justify-content: flex-end;
}
.mVWrap img {
  width: 80%;
  object-fit: contain;
}
.mTWrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.mTWrap img {
  width: 20%;
  object-fit: contain;
}
.mTWrap p {
  writing-mode: vertical-rl;
  font-family: 'fot-tsukuardgothic-std', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.mTWrap .bF {
  font-size: 2.5rem;
  font-weight: bold;
}
h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
}
h2 span:first-child {
  font-weight: bold;
}
h2 span:last-child {
  font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
  display: block;
}
.mainWrap section:last-child {
  margin-bottom: 8rem;
}
section > div:first-child {
  margin-top: 6rem;
}
.areaContents {
  background-color: #f6f6e9;
  font-weight: bold;
  border-radius: 10px;
}
.areaContents > div:first-child {
  display: flex;
  justify-content: center;
  margin: 0 2rem;
  border-bottom: 2px solid #fff;
}
.catSec ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
}
.catSec ul li a {
  display: block;
  background-color: #f6f6e9;
  text-align: center;
  border-radius: 10px;
  padding: 1rem 0;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
.catSec ul li a:hover {
  -webkit-animation: buttonHover 0.3s forwards;
  animation: buttonHover 0.3s forwards;
}
.catSec ul li img {
  margin-bottom: 0.5rem;
}
.tab {
  display: block;
  position: relative;
  margin-right: 10px;
  padding: 0.8rem;
  cursor: pointer;
}
.tab.active {
  background-color: #f6f6e9;
}
.tab:hover::after,
.tab.active::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #fd5f00;
}
.content {
  display: none;
  padding: 2.5rem 0;
}
.content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 1rem;
  margin: auto;
  max-width: 615px;
}
.content ul li a {
  position: relative;
  text-align: center;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem 0;
  border: 3px solid #fff;
  box-sizing: border-box;
}
.content ul li a:hover {
  border: 3px solid #fd5f00;
  background: rgba(253, 95, 0, 0.1);
}
.content.active {
  display: block;
}
.tagSec {
  border-radius: 10px;
  background: #f2f3f7;
  padding: 2rem;
}
.tagSec ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tagSec ul li {
  margin: 0 0.5rem 1rem;
}
.tagSec ul li a {
  position: relative;
  display: block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: #fff;
  font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
}
.tagSec ul li a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50px;
}
.tagSec ul li a:hover::after {
  border: 2px solid #fd5f00;
  background: rgba(253, 95, 0, 0.1);
}
.popularSec ul li:not(:last-child) {
  margin-bottom: 2rem;
}
.popularSec ul li .detail {
  display: flex;
}
.popularSec ul li .detail > .figure {
  width: 55%;
  border: 1px solid #707070;
  padding: 0.6rem;
  display: grid;
  vertical-align: middle;
}
.popularSec ul li .detail > .figure img {
  aspect-ratio: 700 / 380;
  object-fit: cover;
}
.popularSec ul li .detail > div {
  width: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.popularSec ul li .detail > div > div {
  width: 90%;
}
.popularSec dl {
  margin-bottom: 2.5rem;
}
.popularSec dt,
.newSec dt {
  font-size: 1.25rem;
  font-weight: bold;
}
.popularSec dt {
  margin-bottom: 0.625rem;
}
.popularSec time {
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 0.9rem;
}
.newSec {
  margin-bottom: 6rem;
}
.newSec ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
.newSec ul li .detail {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.newSec ul time {
  position: absolute;
  bottom: 0;
  right: 0;
}
.newSec ul li a,
.popularSec ul li a {
  transition: 0.2s;
}
.newSec ul li a:hover,
.popularSec ul li a:hover {
  opacity: 0.6;
}
.newSec ul li .detail > .figure {
  border: 1px solid #707070;
  padding: 0.6rem;
  display: inline-flex;
  width: 100%;
}
.newSec ul li .detail > .figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 700 / 380;
  object-fit: cover;
  vertical-align: middle;
}
.newSec dl {
  margin-bottom: 2.5rem;
}
.newSec dl dt {
  margin: 1rem 0 0.5rem;
}
.newSec dl dt a {
  display: block;
}
.popularSec ul li a:hover,
.newSec ul li a:hover {
  opacity: 0.6;
}
.more {
  margin-top: 3.125rem;
}
.columnTagPopularArticles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.columnTagPopularArticles li {
  border-radius: 20px;
  margin-left: 0.625rem;
  font-weight: bold;
  color: #005792;
}
.newSec .columnTagPickUpColumn {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 0.625rem;
  margin-top: 8px;
}
.newSec .columnTagPickUpColumn li {
  border-radius: 20px;
  font-weight: bold;
  color: #005792;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .fV > div {
    display: flex;
  }
  .mVWrap {
    padding-top: 9rem;
    width: 65%;
  }
  .mVWrap img {
    width: 100%;
  }
  .mTWrap {
    width: 35%;
    align-items: flex-start;
  }
  .mTWrap img {
    width: 45%;
  }

  section > div:first-child {
    margin-top: 2rem;
  }
  .catWrap {
    background-color: #f6f6e9;
    border-radius: 10px;
    padding: 2rem 1rem;
  }
  .selectBox {
    display: flex;
    justify-content: center;
    font-weight: bold;
  }

  .selectWrap {
    position: relative;
    margin-right: 1rem;
  }
  .selectWrap::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 1px #3c3c3c;
    border-right: solid 1px #3c3c3c;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -10px;
    transform: translateX(-50%) rotate(135deg);
  }
  .selectBox select {
    appearance: none;
    min-width: 150px;
    padding: 1rem 2rem;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background-color: #fff;
    color: #333333;
    font-size: clamp(0.625rem, 0.357rem + 1.34vw, 1rem);
    cursor: pointer;
  }

  option {
    border: solid 2px red;
  }
  .selectBox button {
    background: #005792;
    padding: 1rem 1.5rem;
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: clamp(0.625rem, 0.357rem + 1.34vw, 1rem);
  }
  .selectBox button span:first-child {
    padding-right: 0.8rem;
  }
  .selectBox button span:last-child {
    display: flex;
  }
  .selectBox button span img {
    width: 15px;
    height: auto;
  }
  .tagSec {
    padding: 2rem 0;
    margin-left: 16px;
    margin-right: 16px;
    width: calc(100% - 32px);
  }
  .tagSec ul li a {
    padding: 0.5rem 1rem;
  }
  .catSec ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .catSec ul li a {
    padding: 0.5rem 0;
  }
  .catSec ul li figure {
    width: 75%;
    margin: 0 auto;
  }
  .catSec ul li img {
    margin-bottom: 0;
  }
  .popularSec ul li .detail {
    flex-wrap: wrap;
  }
  .popularSec ul li .detail > .figure,
  .popularSec ul li .detail > .figure img,
  .popularSec ul li .detail > div,
  .popularSec ul li .detail > div > div {
    width: 100%;
  }
  .popularSec ul li .detail > .figure img {
    height: auto;
  }
  .popularSec dt {
    margin: 1rem 0 0.5rem;
  }
  .popularSec dt,
  .newSec dt {
    font-size: clamp(1.125rem, 0.886rem + 1.02vw, 1.375rem);
  }
  .popularSec dd,
  .newSec dd {
    font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  }
  .newSec ul {
    display: block;
  }
  .newSec ul li {
    margin-bottom: 2rem;
  }
  .newSec dl {
    margin-bottom: 8px;
  }

  .newSec ul time {
    position: relative;
  }
  .newSec dl dt {
    margin-top: 0.5rem;
  }
  .newSec ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
