@charset "UTF-8";
/* main.scss */
/* _reset.scss */
:where(:not(.atlas-header *, .atlas-nav *, .atlas-sp-header *, .atlas-footer *, .atlas-sp-footer *, .sb-slidebar *)):is(html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video) {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* ... 他のリセットスタイル ... */
/* KVセクション */
.kv-wrapper {
  position: relative;
  width: 100%;
}
.kv-wrapper .kv-bg-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv-wrapper .kv-contents {
  display: flex;
  padding: var(--pls-spacing-xl) var(--pls-spacing-l);
  flex-direction: column;
  align-items: center;
  gap: var(--pls-spacing-xl);
  align-self: stretch;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .kv-wrapper .kv-contents {
    padding: var(--pls-spacing-xxl) 0;
    max-width: 730px;
  }
}
.kv-wrapper .kv-title {
  color: var(--pls-basic-primary);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 4%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .kv-wrapper .kv-title {
    font-size: 64px;
  }
}
.kv-wrapper .kv-message {
  display: flex;
  padding: var(--pls-spacing-m) var(--pls-spacing-m) var(--pls-spacing-m) 96px;
  justify-content: center;
  align-items: flex-end;
  background: var(--pls-object-inverse-primary);
  gap: var(--pls-spacing-l, 24px);
  align-self: stretch;
  position: relative;
}
@media screen and (min-width: 769px) {
  .kv-wrapper .kv-message {
    padding: var(--pls-spacing-m) var(--pls-spacing-xl) var(--pls-spacing-m) 164px;
  }
}
.kv-wrapper .kv-message p {
  color: var(--pls-basic-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 4%;
}
@media screen and (min-width: 769px) {
  .kv-wrapper .kv-message p {
    font-size: 26px;
  }
}
.kv-wrapper .kv-message img {
  position: absolute;
  left: -10px;
  bottom: 0px;
  width: 100px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .kv-wrapper .kv-message img {
    left: 40px;
  }
}

/* 概要セクション */
.overview-section {
  display: flex;
  padding: var(--pls-spacing-xl) var(--pls-spacing-l);
  flex-direction: column;
  align-items: center;
  gap: var(--pls-spacing-l);
  align-self: stretch;
  background: linear-gradient(149deg, rgba(237, 218, 227, 0.24) 1.72%, rgba(204, 204, 224, 0.24) 97.81%);
}
@media screen and (min-width: 769px) {
  .overview-section {
    padding: var(--pls-spacing-xxl) var(--pls-spacing-xl);
    gap: var(--pls-spacing-xl);
  }
}

.overview-title {
  color: var(--pls-object-primary);
  text-align: center;
  font-size: var(--pls-font-size-l);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) {
  .overview-title {
    font-size: var(--pls-font-size-xxl);
  }
}

/* 詳細セクション */
.detail-section {
  display: flex;
  padding: var(--pls-spacing-xl) var(--pls-spacing-l);
  flex-direction: column;
  align-items: center;
  gap: var(--pls-spacing-l);
  align-self: stretch;
}
@media screen and (min-width: 769px) {
  .detail-section {
    padding: var(--pls-spacing-xxl) var(--pls-spacing-xl);
    gap: var(--pls-spacing-xl);
  }
}

.detail-title {
  font-size: var(--pls-font-size-l);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .detail-title {
    font-size: var(--pls-font-size-xxl);
  }
}

.p-grid-container {
  max-width: 900px;
  display: grid;
  gap: var(--pls-spacing-l);
  grid-template-columns: 1fr;
}
@media screen and (min-width: 769px) {
  .p-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-grid-item {
  border-radius: var(--pls-border-radius-l);
  border: 1px solid var(--grey-light);
  background: var(--pls-gray-100);
  /* pls-shadow-filter */
  box-shadow: 0 6px 9px 0 rgba(51, 51, 64, 0.1), 0 0 20px 0 rgba(51, 51, 64, 0.08);
}

.p-grid-item__inner {
  display: flex;
  padding: var(--pls-spacing-l);
  flex-direction: column;
  align-items: center;
  gap: var(--pls-spacing-l);
  align-self: stretch;
}
.p-grid-item__inner img {
  width: auto;
  height: 100px;
}

/* _text-color.scss */
.u-text-red {
  color: var(--pls-red-600);
}

/* _font-weight.scss */
.u-font-weight-regular {
  font-weight: var(--pls-font-weight-regular);
}

.u-font-weight-bold {
  font-weight: var(--pls-font-weight-bold);
}

.u-break-pc-tb {
  display: none;
}

@media screen and (min-width: 769px) {
  .u-break-pc-tb {
    display: inline;
  }
}
.u-sp-hidden {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .u-sp-hidden {
    display: flex !important;
  }
}
@media screen and (min-width: 769px) {
  .u-pc-tb-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pls-body.--s.u-size-m-on-tb-up {
    font-size: var(--pls-font-size-m);
    line-height: var(--pls-line-height-l);
  }
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

@media screen and (min-width: 769px) {
  .u-text-center-tb-up {
    text-align: center !important;
  }
}/*# sourceMappingURL=main.css.map */