/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
body {
  color: #2C2F36;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.mv {
  position: relative;
}

.mv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}

.mv__heading {
  text-align: center;
  color: #fff;
  font-size: 68px;
  letter-spacing: 0.16em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__heading {
    font-size: 42px;
  }
}

.mv__ja {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #fff;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}
@media print, screen and (max-width: 1023.9px) {
  .mv__ja {
    font-size: 15px;
  }
}

.main-body {
  padding-bottom: 120px;
  background-color: rgba(222, 229, 235, 0.75);
}
@media print, screen and (max-width: 1023.9px) {
  .main-body {
    padding-bottom: 60px;
  }
}

.pagination-text {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
}
.pagination-text.-mt_large {
  margin-top: 50px;
}
@media print, screen and (min-width: 1024px) {
  .pagination-text.-mt_large {
    margin-top: 100px;
  }
}

.pagination {
  margin-top: 16px;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: #181b22;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination__item.-active {
  background: #bbccdb;
  color: #2c2f36;
}
@media print, screen and (max-width: 1023.9px) {
  .pagination__item {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
.pagination__item img {
  width: 6px;
}

.pagination__ellipsis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #666;
  font-size: 14px;
}
@media print, screen and (max-width: 1023.9px) {
  .pagination__ellipsis {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 80px;
  margin-top: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
}