@charset "UTF-8";
/* ========================================
   Design Tokens (CSS Variables)
======================================== */
:root {
  /* Color */
  --color-text: #333333;
  --color-accent: #3EB6CF;
  --color-sub: #C5CFD1;
  --color-blue: #EBF8FA;
  --color-beige: #F7F4ED;
  --color-gray: #ECECEC;
  --color-l-gray: #F7F7F7;
  --color-line: #BDDEE5;
  --color-white: #ffffff;
  /* Font */
  --font-base: "Noto Sans JP", sans-serif;
  --font-weight-base: 400;
  --line-height-base: 1.5;
  --letter-spacing-base: 0.01rem;
  /* Layout */
  --base-font-size: 16px;
  --content-width: 1080px;
  --content-padding: 40px;
}

/* ========================================
   Sass Variables (設計用のみ)
======================================== */
/* ========================================
   Breakpoints
======================================== */
/* ========================================
   Base
======================================== */
html {
  font-family: var(--font-base);
  color: var(--color-text);
  font-weight: var(--font-weight-base);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

/* 可変フォントサイズ */
@media (max-width: 1080px) {
  :root {
    --base-font-size: calc(100vw * 16 / 1080);
  }
}
@media (max-width: 768px) {
  :root {
    --base-font-size: calc(100vw * 16 / 375);
  }
}
/* ========================================
   Utility
======================================== */
.u-sp {
  display: none;
}

@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .u-flex {
    display: flex;
    align-items: center;
  }
}
/* ========================================
   Layout
======================================== */
.inner {
  max-width: var(--content-width);
  width: calc(100% - var(--content-padding));
  margin: 0 auto;
}

.color-accent {
  color: var(--color-accent);
}

.color-primary {
  color: var(--color-sub);
}

.ff-marcellus {
  font-family: "Marcellus", sans-serif;
}

.ff-quicksand {
  font-family: "Quicksand", sans-serif;
}

.l-page {
  margin-top: 80px;
  padding-bottom: 17.5rem;
}
@media (max-width: 768px) {
  .l-page {
    padding-bottom: 513px;
  }
}

.l-section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 50px 0;
  }
}

.p-post-content {
  padding-bottom: 17.5rem;
}

.c-sec-title-wrap {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .c-sec-title-wrap {
    margin-bottom: 30px;
  }
}

.c-sec-title-en {
  font-size: 4.375rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1;
}
.c-sec-title-en span {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .c-sec-title-en {
    font-size: 28px;
  }
}

.c-sec-title {
  font-size: 18px;
}
@media (max-width: 768px) {
  .c-sec-title {
    font-size: 14px;
  }
}

.c-sec-title-text {
  font-size: 16px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .c-sec-title-text {
    font-size: 14px;
  }
}

a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.c-btn {
  border: 2px solid var(--color-accent);
  background: var(--color-white);
  width: 350px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--color-accent);
  font-size: 18px;
  margin: 0 auto;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  .c-btn {
    width: 213px;
    height: 43px;
    font-size: 15px;
  }
}
.c-btn::after {
  content: "";
  display: block;
  width: 29px;
  height: 6px;
  background-image: url(../img/top/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .c-btn::after {
    width: 21px;
    height: 4px;
    right: 15px;
  }
}
.c-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.c-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}
.c-btn:hover::after {
  filter: brightness(0) invert(1);
  transform: translateY(-50%) translateX(4px);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-white);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 3.125rem;
}

.l-header__logo-title {
  width: 10.125rem;
  line-height: 0;
}
@media (max-width: 768px) {
  .l-header__logo-title {
    width: 94px;
    position: relative;
    z-index: 100;
  }
}

/* ハンバーガーメニュー非表示 */
.l-header__toggle-menu {
  display: none;
}

/* ヘッダーリンク */
.l-header__nav-list-items {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .l-header__nav-list-items {
    gap: min(2.5rem, 16px);
  }
}

.l-header__nav-list-link {
  font-size: 1.0625rem;
  position: relative;
}
@media (min-width: 769px) {
  .l-header__nav-list-link:hover {
    opacity: 1;
  }
  .l-header__nav-list-link:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    position: absolute;
    top: 70%;
    left: 0;
    animation: underline 0.3s forwards;
  }
}

@keyframes underline {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-header {
    padding: 10px 0;
  }
  .l-header__inner {
    display: block;
    margin: 0 20px;
  }
  .l-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  /* ハンバーガーメニュー */
  .l-header__toggle-menu {
    display: inline-block;
    width: 40px;
    height: 24px;
    position: relative;
    z-index: 100;
  }
  .l-header__toggle-menu-line {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    text-indent: -9999px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
  }
  .l-header__toggle-menu-line::before,
  .l-header__toggle-menu-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    transition: 0.3s;
    opacity: 1;
  }
  .l-header__toggle-menu-line::before {
    left: -10px;
  }
  .l-header__toggle-menu-line::after {
    left: 10px;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 90;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .l-header__nav-list {
    margin-top: 80px;
    padding: 0 35px;
  }
  .l-header__nav-list-items {
    flex-flow: column;
    align-items: flex-start;
    gap: 0;
  }
  .l-header__toggle-menu-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .l-header__toggle-menu-text::before {
    content: "Menu";
    display: block;
    width: 100%;
    height: 100%;
    color: var(--color-accent);
    font-family: "Quicksand", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
  }
  .open .l-header__toggle-menu {
    -webkit-transition: all 0.5s linear 1s;
    transition: all 0.5s linear 1s;
  }
  .open .l-header__toggle-menu-line {
    background-color: var(--color-text);
  }
  .open .l-header__toggle-menu-line::before,
  .open .l-header__toggle-menu-line::after {
    opacity: 0;
  }
  .open .l-header__toggle-menu-line::before {
    background-color: var(--color-text);
    left: 0px;
  }
  .open .l-header__toggle-menu-line::after {
    background-color: var(--color-text);
    left: 0px;
  }
  .open .l-header__nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    overflow: auto;
  }
  .open .l-header__toggle-menu-text::before {
    content: "Close";
    color: var(--color-text);
  }
  .l-header__nav-list-item {
    margin-bottom: 15px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--color-text);
    width: 100%;
  }
}
.l-header__nav-list-item--model {
  background: var(--color-l-gray);
}

.l-header__nav-list-item--event {
  background: var(--color-text);
}
.l-header__nav-list-item--event .l-header__nav-list-link {
  color: var(--color-white);
}

.l-header__nav-list-item--contact {
  background: var(--color-accent);
}
.l-header__nav-list-item--contact .l-header__nav-list-link {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .l-header__nav-list-item-sub {
    width: 100%;
    margin-top: 15px;
  }
}
.l-header__nav-list-item-sub .l-header__nav-list-item {
  height: 80px;
  width: 7.1875rem;
}
@media (max-width: 768px) {
  .l-header__nav-list-item-sub .l-header__nav-list-item {
    height: 46px;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 25px;
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .l-header__nav-list-item-sub .l-header__nav-list-link {
    justify-content: center;
    align-items: center;
  }
}
.l-header__nav-list-item-sub .l-header__nav-list-link:hover::after {
  display: none;
}

.l-header__nav-list-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .l-header__nav-list-link {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 16px;
  }
}

.l-header__nav-list-link-icon {
  width: 1.5rem;
  height: 1.625rem;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .l-header__nav-list-link-icon {
    width: 19px;
    height: 19px;
    margin-right: 5px;
  }
}

.l-header__nav-list-link-text {
  text-align: center;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .l-header__nav-list-link-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .l-header__nav-list-link-text--dot {
    display: inline-block;
  }
}

/* フッター
***************************************************************/
.l-footer {
  width: 100%;
  text-align: center;
}

.p-footer-contact {
  position: relative;
}

.p-footer-contact__bg {
  width: 100%;
  height: 648px;
}
@media (max-width: 768px) {
  .p-footer-contact__bg {
    height: 56.8vw;
  }
}

.p-footer-contact__inner {
  background: var(--color-white);
  padding: 3.75rem 0;
  position: absolute;
  top: -12.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-footer-contact__inner {
    padding: 50px 25px;
    top: -461px;
  }
}

.c-sec-title-text--contact {
  margin: 3.125rem 0;
}
@media (max-width: 768px) {
  .c-sec-title-text--contact {
    margin: 20px 0 25px;
    text-align: left;
  }
}

.p-footer-contact__btn-wrap {
  display: flex;
  gap: 4.1875rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-footer-contact__btn-wrap {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.p-footer-btn__link {
  width: 26.875rem;
  height: 4.375rem;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 18px;
}
@media (max-width: 768px) {
  .p-footer-btn__link {
    width: 100%;
    height: 46px;
    font-size: 15px;
  }
}
.p-footer-btn__link::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .p-footer-btn__link::before {
    width: 19px;
    height: 19px;
  }
}

.p-footer-btn--event {
  background: var(--color-text);
}

.p-footer-btn__link--event::before {
  background-image: url(../img/top/icon-calendar.svg);
}

.p-footer-btn--contact {
  background: var(--color-accent);
}

.p-footer-btn__link--contact::before {
  background-image: url(../img/top/icon-mail.svg);
}

.p-footer-contact__tel-wrap {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .p-footer-contact__tel-wrap {
    margin-top: 20px;
  }
}

.p-footer-contact__tel {
  font-size: 2.625rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .p-footer-contact__tel {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.p-footer-contact__tel::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url(../img/top/icon-tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .p-footer-contact__tel::before {
    width: 22px;
    height: 22px;
  }
}

.p-footer-contact__tel-text {
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-footer-contact__tel-text {
    font-size: 14px;
  }
}

.l-footer__menu {
  padding: 3.75rem 0 1.875rem 0;
}
@media (max-width: 768px) {
  .l-footer__menu {
    padding: 3.125rem 0 1.5625rem 0;
  }
}

.l-footer__menu-items {
  justify-content: center;
}

.l-footer__menu-lists {
  text-align: left;
  padding-right: 6.25rem;
  margin-left: 2.5rem;
}

.l-footer__menu-item:not(:last-child) .l-footer__menu-lists {
  border-right: 1px solid #000;
}

.l-footer__menu-list {
  padding-bottom: 1.25rem;
}

.l-footer__menu-list-link {
  display: flex;
  align-items: center;
}
.l-footer__menu-list-link::before {
  content: "";
  display: block;
  background-image: url(../img/top/footer-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 5px;
  height: 10px;
  margin-right: 7px;
}

.l-footer__menu-list-link--sub {
  font-size: 16px;
  margin-left: 7px;
}
.l-footer__menu-list-link--sub::before {
  background-image: none;
  content: "・";
  font-size: 16px;
  margin-right: 4px;
}

@media (min-width: 769px) {
  .l-footer__bottom-content {
    margin-top: 3.75rem;
  }
}

.l-footer__bottom-text-wrap {
  margin-top: 3.75rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .l-footer__bottom-text-wrap {
    margin-top: 20px;
  }
}

.l-footer__bottom-text {
  margin-bottom: 10px;
}

.l-footer__bottom-text-title {
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .l-footer__bottom-text-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.l-footer__bottom-text-tel {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 768px) {
  .l-footer__bottom-text-tel {
    flex-direction: column;
    gap: 5px;
  }
}

.l-footer__bottom-other {
  position: relative;
  margin-top: 2.9375rem;
}
@media (max-width: 768px) {
  .l-footer__bottom-other {
    margin-top: 78px;
  }
}

.l-footer__bottom-sns-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
}
@media (min-width: 769px) {
  .l-footer__bottom-sns-wrap {
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .l-footer__bottom-sns-wrap {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
}

.l-footer__bottom-sns-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.copyright {
  font-size: 12px;
}

.l-footer__bottom-logo-img {
  width: 162px;
  height: auto;
}

.l-footer__bottom-text-address {
  font-size: 16px;
}
@media (max-width: 768px) {
  .l-footer__bottom-text-address {
    margin-bottom: 8px;
    font-size: 14px;
  }
}

.l-footer__bottom-text-tel {
  font-size: 16px;
}
@media (max-width: 768px) {
  .l-footer__bottom-text-tel {
    font-size: 14px;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.p-top-fv {
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-fv {
    height: 90vh;
  }
}
.p-top-fv .swiper-slide-active .p-top-fv__swiper-img,
.p-top-fv .swiper-slide-duplicate-active .p-top-fv__swiper-img,
.p-top-fv .swiper-slide-prev .p-top-fv__swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.p-top-fv .swiper-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100vh;
}

.p-top-fv__content {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: 5.9895833333vw;
  background: var(--color-white);
  z-index: 10;
  padding: 2.8125rem 4.0625rem;
}
.p-top-fv__content span {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .p-top-fv__content {
    right: 0;
    padding: 1.0625rem 1.375rem;
    top: unset;
    transform: unset;
    bottom: 0;
  }
}

.p-top-fv__content-text-en {
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .p-top-fv__content-text-en {
    font-size: min(2.0625rem, 40px);
  }
}

.p-top-fv__content-text-ja {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  border-top: 1px solid var(--color-sub);
  padding-top: 0.3125rem;
}
@media (max-width: 768px) {
  .p-top-fv__content-text-ja {
    font-size: min(1.125rem, 20px);
  }
}

.p-top-event {
  background: var(--color-l-gray);
}
@media (max-width: 768px) {
  .p-top-event {
    padding-top: 130px;
  }
}

.p-top-event__content {
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .p-top-event__content {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .p-top-event__content .swiper-wrapper {
    margin-left: 20.8333333333vw;
  }
}

.p-top-event__item-text-wrap {
  margin-top: 14px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .p-top-event__item-text-wrap {
    padding: 0 20px;
    font-size: 14px;
  }
}

.p-top-event__item-date {
  padding-bottom: 13px;
  margin-bottom: 12px;
  font-size: 17px;
  background-image: repeating-linear-gradient(90deg, #AACFD6, #AACFD6 10px, transparent 10px, transparent 14px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media (max-width: 768px) {
  .p-top-event__item-date {
    font-size: 14px;
    padding-bottom: 7px;
    margin-bottom: 7px;
  }
}

.p-top-event__item-title {
  margin-bottom: 12px;
}

.p-top-feature {
  padding-bottom: 9.375rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-feature {
    padding-bottom: 100px;
  }
}

.p-top-feature__content {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .p-top-feature__content {
    margin-top: 30px;
  }
}

.p-top-feature__item-left,
.p-top-feature__item-right {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .p-top-feature__item-left,
  .p-top-feature__item-right {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .p-top-feature__item-left::before {
    content: "";
    display: block;
    width: 113%;
    height: 27.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -70px;
    right: 0px;
    background: var(--color-gray);
  }
  .p-top-feature__item-right::before {
    content: "";
    display: block;
    width: 110%;
    height: 27.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -70px;
    left: 0px;
    background: var(--color-blue);
  }
}
.p-top-feature__item {
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .p-top-feature__item-left {
    margin-bottom: 30px;
  }
  .p-top-feature__item-right .p-top-feature__item {
    margin-bottom: 30px;
  }
  .p-top-feature__item-right .p-top-feature__item:last-child {
    margin-bottom: 0;
  }
  .p-top-feature__item-img {
    height: 180px;
  }
}
.p-top-feature__item-text-wrap {
  width: 23.125rem;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .p-top-feature__item-text-wrap {
    padding: 0 20px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-top-feature__item-number {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-feature__item-number {
    font-size: 17px;
  }
}
.p-top-feature__item-number::before {
  content: "";
  background-image: url(../img/top/feature-deco.svg);
  display: block;
  width: 7.75rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-top-feature__item-number::before {
    width: 3rem;
    height: 0.625rem;
    top: -10px;
  }
}

.p-top-feature__item-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 0.625rem 0;
}
@media (max-width: 768px) {
  .p-top-feature__item-title {
    font-size: 17px;
  }
}

.p-top-feature__item-text {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-top-feature__item-text {
    font-size: 14px;
  }
}

.p-top-feature__item-left .p-top-feature__item-number {
  font-size: 32px;
}
@media (max-width: 768px) {
  .p-top-feature__item-left .p-top-feature__item-number {
    font-size: 17px;
  }
}
.p-top-feature__item-left .p-top-feature__item-number::before {
  width: 7.875rem;
  height: 1.6875rem;
}
@media (max-width: 768px) {
  .p-top-feature__item-left .p-top-feature__item-number::before {
    width: 3rem;
    height: 0.625rem;
  }
}
.p-top-feature__item-left .p-top-feature__item-title {
  margin: 0.625rem 0 1.25rem;
}
@media (max-width: 768px) {
  .p-top-feature__item-left .p-top-feature__item-title {
    margin: 0 0 10px;
  }
}

.p-top-archivement {
  position: relative;
}

.p-top-archivement-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 53.8541666667vw;
  height: vh(429);
  z-index: -1;
}
@media (max-width: 768px) {
  .p-top-archivement-bg-img {
    width: 80%;
    height: 8.5416666667pxvw;
  }
}

.p-top-archivement-bg-deco {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 63.4895833333vw;
  height: 481px;
  background: var(--color-beige);
}
@media (max-width: 768px) {
  .p-top-archivement-bg-deco {
    width: 84.5333333333vw;
    height: 380px;
  }
}

.p-top-archivement__swiper {
  overflow: hidden;
  margin-bottom: 20px;
}
.p-top-archivement__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.p-top-archivement__slide {
  width: 391px;
}
@media (max-width: 768px) {
  .p-top-archivement__slide {
    width: 309px;
  }
}

.p-top-archivement__item {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.p-top-archivement__item-text-wrap {
  margin-top: 10px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .p-top-archivement__item-text-wrap {
    margin-top: 5px;
    font-size: 14px;
  }
}

.p-top-archivement__item-title {
  margin: 0 0 0.4375rem;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-archivement__item-title {
    margin-bottom: 5px;
  }
}

.p-top-archivement__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
@media (max-width: 768px) {
  .p-top-archivement__item-meta {
    gap: 4px 6px;
  }
}

.p-top-archivement__item-meta .p-archive-item-cat {
  margin: 0;
}

.p-top-archivement__item-location {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .p-top-archivement__item-location {
    font-size: 12px;
  }
}

.p-top-lineup {
  padding-bottom: 8.75rem;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .p-top-lineup {
    padding-bottom: 50px;
  }
}

.p-top-lineup__item {
  gap: 4.9375rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 768px) {
  .p-top-lineup__item {
    margin-bottom: 30px;
  }
}
.p-top-lineup__item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-top-lineup__item:last-child {
  margin-bottom: 0;
}

.p-top-lineup__item-img-wrap {
  width: 52.8645833333vw;
}
@media (max-width: 768px) {
  .p-top-lineup__item-img-wrap {
    width: 100%;
  }
}

.p-top-lineup__item-text-wrap {
  text-align: center;
  width: 363px;
}
@media (max-width: 768px) {
  .p-top-lineup__item-text-wrap {
    width: calc(100% - 40px);
    margin: 25px auto 15px;
  }
}

.p-top-lineup__item-number {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 15px;
}
.p-top-lineup__item-number::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  margin: 0 auto;
  margin-top: 10px;
}

.p-top-lineup__item-title {
  font-size: 22px;
  margin: 20px 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-top-lineup__item-title {
    font-size: 20px;
    margin: 15px 0;
  }
}

.p-top-lineup__item-text {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 768px) {
  .p-top-lineup__item-text {
    margin-bottom: 25px;
    font-size: 14px;
  }
}

.p-top-news {
  background: var(--color-l-gray);
  padding-bottom: 17.5rem;
}
@media (max-width: 768px) {
  .p-top-news {
    padding-bottom: 513px;
  }
}

.p-top-news__content {
  gap: 3.75rem;
  margin-bottom: 3.75rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-top-news__content {
    margin-bottom: 30px;
  }
}

.p-top-news__content-left {
  width: 50%;
  flex-shrink: 0;
}

.p-top-news__item {
  display: flex;
  gap: 27px;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  padding: 1.375rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .p-top-news__item {
    gap: 15px;
    padding: 15px 0;
  }
}
.p-top-news__item:first-child {
  padding-top: 0;
}
.p-top-news__item::before, .p-top-news__item::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--color-line);
  border-radius: 50%;
  position: absolute;
  bottom: -2px;
}
.p-top-news__item::before {
  left: 0;
}
.p-top-news__item::after {
  right: 0;
}
.p-top-news__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-top-news__item:last-child::before, .p-top-news__item:last-child::after {
  display: none;
}

.p-top-news__item-date {
  color: var(--color-sub);
  font-family: "Marcellus", sans-serif;
  font-size: 17px;
}
@media (max-width: 768px) {
  .p-top-news__item-date {
    font-size: 12px;
  }
}

.p-top-news__item-title {
  font-size: 19px;
  margin: 7px 0 9px;
}
@media (max-width: 768px) {
  .p-top-news__item-title {
    font-size: 14px;
  }
}

.p-top-news__content-right .p-top-news__item-img {
  width: 11.8125rem;
}
@media (max-width: 768px) {
  .p-top-news__content-right .p-top-news__item-img {
    width: 116px;
  }
}

.p-top-news__item-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /*2行以上の場合は三点リーダーが表示されます。*/
}

/* ローディング画面 */
.lock-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none; /* モバイルタッチ対策 */
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
}

.loading-line-wrap {
  position: relative;
}

.loading-line {
  position: absolute;
  top: 0;
  background-color: #fff;
  width: 12.5%;
  height: 100vh;
  transform-origin: right center;
}

.loading-line01 {
  left: 0%;
}

.loading-line02 {
  left: 12.5%;
}

.loading-line03 {
  left: 25%;
}

.loading-line04 {
  left: 37.5%;
}

.loading-line05 {
  left: 50%;
}

.loading-line06 {
  left: 62.5%;
}

.loading-line07 {
  left: 75%;
}

.loading-line08 {
  left: 87.5%;
}

/* svg animation */
.loading-logo {
  animation: loading-logo-animation 0.5s linear forwards;
  animation-delay: 2.5s;
}

@keyframes loading-logo-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loading-logo .stroke {
  stroke-width: 2px;
  stroke: #3eb6cf;
}

/***************************************************
 * Generated by SVG Artista on 11/16/2025, 11:24:11 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 59.4269943237px;
    stroke-dasharray: 59.4269943237px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 59.4269943237px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 59.4269943237px;
    stroke-dasharray: 59.4269943237px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 59.4269943237px;
  }
}
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1.5s linear 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-stroke-1 1.5s linear 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 59.4267883301px;
    stroke-dasharray: 59.4267883301px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 59.4267883301px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 59.4267883301px;
    stroke-dasharray: 59.4267883301px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 59.4267883301px;
  }
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
.svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 1.5s linear 0s both, animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-stroke-2 1.5s linear 0s both, animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 59.427192688px;
    stroke-dasharray: 59.427192688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 59.427192688px;
  }
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 59.427192688px;
    stroke-dasharray: 59.427192688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 59.427192688px;
  }
}
@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
.svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 1.5s linear 0s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-stroke-3 1.5s linear 0s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 752.4868164063px;
    stroke-dasharray: 752.4868164063px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 752.4868164063px;
  }
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 752.4868164063px;
    stroke-dasharray: 752.4868164063px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 752.4868164063px;
  }
}
@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(62, 182, 207);
  }
}
.svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 1.5s linear 0s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-stroke-4 1.5s linear 0s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

.p-single-content {
  font-size: 16px;
  line-height: 2;
}
.p-single-content p {
  margin-bottom: 20px;
}

.p-single-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-single-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.p-single-content-text {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-single-content-text {
    margin-top: 20px;
  }
}

.p-single-back-btn {
  margin-top: 40px;
}

.p-single-cat {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--color-line);
  color: var(--color-accent);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-single-cat {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.p-archive-item {
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .p-archive-item {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
}

.p-archive-item-img-wrap {
  width: 25rem;
  height: 15.625rem;
  flex-shrink: 0;
}
.p-archive-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .p-archive-item-img-wrap {
    width: 100%;
    height: 12.5rem;
  }
}

.p-archive-item-text-wrap {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .p-archive-item-text-wrap {
    margin-top: 5px;
  }
}

.p-archive-item-date {
  margin-bottom: 10px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .p-archive-item-date {
    margin-bottom: 5px;
    font-size: 14px;
  }
}

.p-archive-item-title {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-archive-item-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.p-archive-item-cat {
  display: inline-block;
  margin: 10px 0 8px;
  padding: 4px 10px;
  border: 1px solid var(--color-line);
  color: var(--color-accent);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-archive-item-cat {
    font-size: 10px;
    padding: 3px 8px;
    margin: 8px 0 6px;
  }
}

/* 施工事例一覧：3カラム */
.p-archive-lists--case {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
@media (max-width: 768px) {
  .p-archive-lists--case {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
.p-archive-lists--case .p-archive-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  gap: 0.75rem;
  height: 100%;
}
.p-archive-lists--case .p-archive-item-img-wrap {
  width: 100%;
  height: 12.5rem;
  flex-shrink: 0;
}
.p-archive-lists--case .p-archive-item-text-wrap {
  margin-top: 0;
  flex: 1;
}
.p-archive-lists--case .p-archive-item-title {
  margin: 0 0 0.4375rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-archive-lists--case .p-archive-item-title {
    margin-bottom: 5px;
  }
}
.p-archive-lists--case .p-archive-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
@media (max-width: 768px) {
  .p-archive-lists--case .p-archive-item-meta {
    gap: 4px 6px;
  }
}
.p-archive-lists--case .p-archive-item-meta .p-archive-item-cat {
  margin: 0;
}
.p-archive-lists--case .p-archive-item-location {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .p-archive-lists--case .p-archive-item-location {
    font-size: 12px;
  }
}

@media (min-width: 769px) {
  .p-archive-lists--case .p-archive-item.u-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .p-archive-lists--case .p-archive-item-title {
    font-size: 1.25rem;
  }
}
.p-case-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-case-pagination {
    margin-top: 2rem;
  }
}
.p-case-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-case-pagination a.page-numbers,
.p-case-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.375rem;
  border: 1px solid var(--color-line);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-case-pagination a.page-numbers,
  .p-case-pagination span.page-numbers {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
}
.p-case-pagination a.page-numbers:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  opacity: 1;
}
.p-case-pagination span.page-numbers.current {
  border-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}
.p-case-pagination span.page-numbers.dots {
  border: none;
  min-width: auto;
  padding: 0 0.25rem;
}
.p-case-pagination a.prev.page-numbers,
.p-case-pagination a.next.page-numbers {
  padding: 0 0.875rem;
  min-width: auto;
}

.p-lineup-fv {
  position: relative;
  min-height: 32.5rem;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-lineup-fv {
    min-height: 420px;
  }
}

.p-lineup-fv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-lineup-fv__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.15) 65%);
}
.p-lineup-fv__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lineup-fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.p-lineup-fv__label {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.p-lineup-fv__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .p-lineup-fv__title {
    font-size: 34px;
    margin-bottom: 16px;
  }
}

.p-lineup-fv__lead {
  font-size: 1.125rem;
  line-height: 2;
  max-width: 47.5rem;
}
@media (max-width: 768px) {
  .p-lineup-fv__lead {
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-lineup-concept__body {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
  background: #f8f6f3;
  padding: 3rem 2.5rem;
}
.p-lineup-concept__body p {
  font-size: 1.125rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-lineup-concept__body {
    text-align: left;
    padding: 28px 20px;
  }
  .p-lineup-concept__body p {
    font-size: 14px;
    line-height: 1.9;
  }
}

.p-lineup-concept__images {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .p-lineup-concept__images {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.p-lineup-concept__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.p-lineup-concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lineup-feature__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .p-lineup-feature__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-lineup-feature__item {
  border: 1px solid var(--color-line);
  background: var(--color-white);
  padding: 2.25rem 1.875rem;
}

.p-lineup-feature__item-number {
  color: var(--color-accent);
  font-size: 2.625rem;
  line-height: 1;
  margin-bottom: 1.125rem;
}

.p-lineup-feature__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
}
@media (max-width: 768px) {
  .p-lineup-feature__item-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
}

.p-lineup-feature__item-text {
  font-size: 1rem;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-lineup-feature__item-text {
    font-size: 14px;
  }
}

.p-lineup-flow__list {
  max-width: 56.25rem;
  margin: 0 auto 3rem;
}

.p-lineup-flow__item {
  border-bottom: 1px solid var(--color-line);
  padding: 1.5rem 0;
  margin-bottom: 1.125rem;
}
.p-lineup-flow__item:last-child {
  margin-bottom: 0;
}

.p-lineup-flow__item-heading {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding-bottom: 1.125rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-lineup-flow__item-heading h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-lineup-flow__item-heading span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.125rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-lineup-flow__item-heading {
    font-size: 15px;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .p-lineup-flow__item-heading h3 {
    font-size: 18px;
  }
  .p-lineup-flow__item-heading span {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

.p-lineup-flow__item-text {
  font-size: 1rem;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-lineup-flow__item-text {
    font-size: 14px;
  }
}

.p-lineup-flow__cta {
  margin-top: 0.625rem;
}

/*# sourceMappingURL=style.css.map */
