/*
  File Name   : top.css
  Description : Write top content styles
*/
.top-section {
  padding: 120px 0;
}
@media only screen and (max-width: 1024px) {
  .top-section {
    padding: 80px 0;
  }
}
.top-section.bgSection {
  background-color: var(--color_sub);
}

.top-section-hl {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25em;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: left;
  margin: 0 0 1.2em;
  padding: 0 0 0.2em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-section-hl {
    font-size: 40px;
  }
}
@media only screen and (max-width: 599px) {
  .top-section-hl {
    font-size: 35px;
  }
}
.top-section-hl::before {
  content: "";
  position: absolute;
  display: block;
  width: 2em;
  height: 4px;
  background-color: var(--color_main);
  border-radius: 2px;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .top-section-hl::before {
    height: 3px;
  }
}

.top-contentBox.type01 {
  display: grid;
  grid-template-columns: minmax(200px, 50%) auto;
  gap: 5%;
}
@media only screen and (max-width: 1024px) {
  .top-contentBox.type01 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
  }
}
.top-contentBox .top-contentBox-pict {
  display: block;
  margin: 0 0 0;
}
@media only screen and (max-width: 1024px) {
  .top-contentBox .top-contentBox-pict {
    max-width: 450px;
  }
}
.top-contentBox .top-contentBox-txtContainer {
  display: grid;
  grid-template-rows: auto;
  gap: 3rem;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.top-contentBox .top-contentBox-moreBtn {
  margin: 0 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .top-contentBox .top-contentBox-moreBtn {
    margin: 0 auto 0;
  }
}

.top-kv {
  padding: 0 0 0;
}
/* @media only screen and (max-width: 1024px) {
  .top-kv {
    padding: 40px 0 0;
  }
} */
.top-kv .top-kv-slide {
  position: relative;
  font-size: 0;
  line-height: 0;
  padding: 0 0 2rem;
}
.top-kv .top-kv-slide .top-kv-slide-item {
  padding: 0 1rem 0;
}
.top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.top-kv .top-kv-slide .top-kv-slide-item .top-kv-slide-item-img > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.top-kv .top-kv-slide .slick-arrow {
  position: absolute;
  display: block;
  top: calc(50% - 1.0rem);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.top-kv .top-kv-slide .slick-arrow .arrowInner {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--color_main);
}
.top-kv .top-kv-slide .slick-arrow .arrowInner::before, .top-kv .top-kv-slide .slick-arrow .arrowInner::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #fff;
  border-bottom: none;
  border-left: none;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(30%, -50%) rotate(45deg);
          transform: translate(30%, -50%) rotate(45deg);
  pointer-events: none;
}
.top-kv .top-kv-slide .slick-arrow.slick-prev {
  left: 20%;
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-slide .slick-arrow.slick-prev {
    left: 10%;
  }
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slide .slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: translate(0, -50%) scale(-1, 1);
            transform: translate(0, -50%) scale(-1, 1);
  }
}
.top-kv .top-kv-slide .slick-arrow.slick-next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: 20%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-kv .top-kv-slide .slick-arrow.slick-next {
    right: 10%;
  }
}
@media only screen and (max-width: 599px) {
  .top-kv .top-kv-slide .slick-arrow.slick-next {
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.top-kv .top-kv-slide .slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 0.5em;
  width: 100%;
  bottom: 0;
  left: 0;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
.top-kv .top-kv-slide .slick-dots > li {
  position: relative;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color_sub);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.top-kv .top-kv-slide .slick-dots > li > button {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  top: 0;
  left: 0;
}
.top-kv .top-kv-slide .slick-dots > li.slick-active {
  background-color: var(--color_main);
}

.top-importantNotice {
  margin: 5rem 0 0;
}
.top-importantNotice .top-importantNotice-noticeBlock {
  display: grid;
  grid-template-columns: 12rem auto;
  gap: 0;
  border: 1px solid var(--color_importantNotice);
  border-radius: 0.25rem;
}
@media only screen and (max-width: 1024px) {
  .top-importantNotice .top-importantNotice-noticeBlock {
    grid-template-columns: 1fr;
  }
}
.top-importantNotice .top-importantNotice-noticeBlock__hl {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  text-align: center;
  background-color: var(--color_importantNotice);
  padding: 0.5em;
}
.top-importantNotice .top-importantNotice-noticeBlock > ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 0;
  width: 100%;
  font-size: 1rem;
  padding: 0.5em 1em;
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li {
  display: block;
  border-bottom: 1px solid #ccc;
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li > a {
  position: relative;
  display: grid;
  grid-template-columns: 7em auto;
  width: 100%;
  text-decoration: none;
  padding: 0.5em 1.5em 0.5em 0.5em;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
@media only screen and (max-width: 599px) {
  .top-importantNotice .top-importantNotice-noticeBlock > ul > li > a {
    grid-template-columns: 1fr;
    gap: 0.25em;
  }
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.5em;
  height: auto;
  aspect-ratio: 1/1;
  border: 0.3em solid transparent;
  border-left: 0.4em solid var(--color_importantNotice);
  border-right: none;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: right 0.2s ease-in;
  transition: right 0.2s ease-in;
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-importantNotice .top-importantNotice-noticeBlock > ul > li > a:hover {
    color: var(--color_importantNotice);
    text-decoration: underline;
  }
  .top-importantNotice .top-importantNotice-noticeBlock > ul > li > a:hover::after {
    right: 0.25em;
  }
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li:last-child {
  border-bottom: none;
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  gap: 0.25em 0.75em;
}
.top-importantNotice .top-importantNotice-noticeBlock > ul > li .new {
  display: block;
  color: var(--color_importantNotice);
  font-size: 0.9em;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
  border: 1px solid var(--color_importantNotice);
  padding: 0.1em 0.25em 0.2em;
}

.top-news .top-news-header .top-news-header-catTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 0.5em;
}
@media only screen and (max-width: 1024px) {
  .top-news .top-news-header .top-news-header-catTab {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top-news .top-news-header .top-news-header-catTab > li {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-news .top-news-header .top-news-header-catTab > li {
    width: calc((100% / 3) - (0.5em * 2 / 3));
    min-width: inherit;
  }
}
@media only screen and (max-width: 599px) {
  .top-news .top-news-header .top-news-header-catTab > li {
    width: calc(50% - 0.25em);
    min-width: inherit;
  }
}
.top-news .top-news-header .top-news-header-catTab > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  letter-spacing: var(--letterSpacing_base);
  text-indent: var(--letterSpacing_base);
  text-decoration: none;
  background-color: var(--color_accent);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.top-news .top-news-header .top-news-header-catTab > li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .top-news .top-news-header .top-news-header-catTab > li > a:hover {
    background-color: var(--color_main);
  }
}
.top-news .top-news-header .top-news-header-catTab > li > a.active {
  background-color: var(--color_main);
}
.top-news .top-news-list-wrap {
  margin: 2rem 0;
}
.top-news .top-news-moreBtn {
  margin: 3rem auto 0;
}

.top-linkBannersInner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .top-linkBannersInner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 599px) {
  .top-linkBannersInner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-linkBanners .linkBanner {
  display: block;
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: 272/113;
  /* border: 1px solid var(--tableLine_color); */
  /* border-radius: 0.4rem; */
  overflow: hidden;
}
.top-linkBanners .linkBanner > img {
  position: absolute;
  display: block;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}