@charset "UTF-8";
/**************************************
* Under 共通
***************************************/
:root {
  --pink: #e19fd2;
}

img {
  border-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.under-body {
  background-color: #f7f6f1;
}

.under__bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/top/bg.webp) no-repeat center/cover;
}

.under__main {
  padding-top: 250px;
  padding-block: 22rem 17rem;
}
@media (max-width: 834px) {
  .under__main {
    padding-block: 10rem 5rem;
  }
}

/* ページ見出し */
.under__title {
  max-width: 1400px;
  width: 90%;
  margin-left: calc((100vw - min(1400px, 90vw)) / 2);
  margin-bottom: 13rem;
}
@media (max-width: 834px) {
  .under__title {
    margin-bottom: 5rem;
  }
}

.under__title.with-mv {
  margin-bottom: 13rem;
}
@media (max-width: 834px) {
  .under__title.with-mv {
    margin-bottom: 3rem;
  }
}

.under__title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .under__title-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.under__title-group + .under__mv {
  margin-top: 6rem;
}
@media (max-width: 834px) {
  .under__title-group + .under__mv {
    margin-top: 2rem;
  }
}

.under__title-heading {
  font-size: clamp(4.5rem, 3.227rem + 6.36vw, 8rem);
  line-height: 1.1;
  vertical-align: bottom;
  font-weight: normal;
}

.under-inner {
  max-width: 1350px;
  width: 90%;
  margin: 0 auto;
}

.under-inner--1100 {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

/* パンくずリスト */
.aioseo-breadcrumbs {
  font-family: Inter, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  font-size: 1.2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 834px) {
  .aioseo-breadcrumbs {
    margin-left: auto;
  }
}

.aioseo-breadcrumbs .current {
  color: #8c9195;
}

/* 404 */
html:has(body.u-404-body),
body.u-404-body {
  height: 100%;
  margin: 0;
}

.u-404-body {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.u-404-body .footer {
  margin-top: auto;
}

.u-404 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-404__link {
  text-decoration: underline;
}

/* ページネーション */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10rem;
  font-family: Inter, sans-serif;
}
@media (max-width: 834px) {
  .pagination {
    margin-top: 5rem;
  }
}
.pagination .next-link,
.pagination .prev-link {
  aspect-ratio: 12/10;
  width: 12px;
  height: auto;
}
.pagination .next-link a:hover,
.pagination .prev-link a:hover {
  opacity: 0.7;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  display: inline-block;
}

.pagination a,
.pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  color: #748faa;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pagination .current {
  color: #8c9195;
  pointer-events: none;
  border-bottom: 1px solid #4f667d;
}

.aioseo-breadcrumbs .aioseo-breadcrumb:last-of-type {
  color: #8c9195;
}

.pagination .material-icons {
  font-size: 1.2rem;
  vertical-align: middle;
}

/* フォント */
.ff-ja {
  font-family: "Noto Serif JP", serif;
}

.ff-inter {
  font-family: Inter, sans-serif;
}

.ttl {
  font-weight: 500;
}

/* フォントサイズ */
.f40 {
  font-size: 4rem;
}
@media (max-width: 834px) {
  .f40 {
    font-size: 2rem;
  }
}

.f22 {
  font-size: 2.2rem;
}
@media (max-width: 834px) {
  .f22 {
    font-size: 1.8rem;
  }
}

.f20 {
  font-size: 2rem;
}
@media (max-width: 834px) {
  .f20 {
    font-size: 1.6rem;
  }
}

.f14 {
  font-size: 1.4rem;
}

/* 改行 */
.br-499 {
  display: none;
}
@media (max-width: 499px) {
  .br-499 {
    display: block;
  }
}

.no-br-499 {
  display: block;
}
@media (max-width: 499px) {
  .no-br-499 {
    display: none;
  }
}

.br-1024 {
  display: none;
}
@media (max-width: 1024px) {
  .br-1024 {
    display: block;
  }
}

.no-br-1024 {
  display: block;
}
@media (max-width: 1024px) {
  .no-br-1024 {
    display: none;
  }
}/*# sourceMappingURL=under.css.map */