@charset "UTF-8";

/* 全体に関連するcss======================== */
html {
  --noma-header-height: 6.375rem;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--noma-header-height);
}

body {
  -webkit-font-smoothing: antialiased;
}

/* 375px - 414px */
@media (max-width: 414px) {
  html {
    /* 同倍率 */
    font-size: 3.8647342995vw;
  }
}

/* 414px - 767px */
@media (min-width: 414px) and (max-width: 767.98px) {
  html {
    font-size: calc((100vw - 414px) / 353 * 5 + 16px);
    font-size: 3.8647342995vw;
  }
}

/* 769px - 1399px */
@media (min-width: 768px) and (max-width: 1399px) {
  html {
    font-size: calc((100vw - 768px) / 632 * 3 + 13px);
  }
}

em {
  font-style: normal;
}

li {
  list-style: none;
}

/* リンクホバー調整 */
a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.6;
}

/* Keep the split heading markup for line breaks, vertical text and gradients. */
.js-anim-heading .noma-anim-line {
  display: block;
  line-height: inherit;
}

.js-anim-heading .noma-anim-char {
  display: inline-block;
  line-height: inherit;
  vertical-align: baseline;
  white-space: pre;
}

@media (min-width: 768px) {
  .js-anim-heading.is-anim-ready .noma-anim-line {
    transform: translateX(50px);
    transition: transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(
      var(--anim-line-delay, 0s) + var(--anim-extra-delay, 0s)
    );
    will-change: transform;
  }

  .js-anim-heading.is-anim-ready .noma-anim-char {
    opacity: 0;
    transition: opacity 1400ms cubic-bezier(0.33, 1, 0.68, 1);
    transition-delay: calc(
      var(--anim-delay, 0s) + var(--anim-extra-delay, 0s)
    );
    will-change: opacity;
  }

  .js-anim-heading.is-animated .noma-anim-line {
    transform: translateX(0);
  }

  .js-anim-heading.is-animated .noma-anim-char {
    opacity: 1;
  }
}

.js-anim-fadeup.is-anim-ready {
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--anim-extra-delay, 0s);
  will-change: opacity, transform;
}

.js-anim-fadeup.is-animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  main h2.js-anim-sp-heading-fadeup.is-anim-ready .noma-anim-line {
    transform: none;
    transition: none;
    will-change: auto;
  }

  main h2.js-anim-sp-heading-fadeup.is-anim-ready .noma-anim-char {
    opacity: 1;
    transition: none;
    will-change: auto;
  }

  main h2.js-anim-sp-heading-fadeup.is-animated .noma-anim-line {
    transform: none;
  }

  main h2.js-anim-sp-heading-fadeup.is-animated .noma-anim-char {
    opacity: 1;
  }
}

/* Preserve each image's existing transform while observing it independently. */
.js-anim-image-fadeup.is-anim-ready {
  opacity: 0;
  translate: 0 0.75rem;
  transition:
    opacity 2s cubic-bezier(0.16, 1, 0.3, 1),
    translate 2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--anim-extra-delay, 0s);
  will-change: opacity, translate;
}

.js-anim-image-fadeup.is-animated {
  opacity: 1;
  translate: 0 0;
}

@keyframes noma-bg-word-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-contact__word-art-track {
  display: flex;
  width: max-content;
  animation: noma-bg-word-loop 28s linear infinite;
  gap: 6rem;
}

.about-contact__word-art-image {
  display: block;
  flex: 0 0 110.1875rem;
  width: 110.1875rem;
  max-width: none;
  height: auto;
}

@media (width < 768px) {
  .about-contact__word-art-image {
    flex-basis: 52.7061rem;
    width: 52.7061rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-contact__word-art-track {
    animation: none;
  }

  .js-anim-heading.is-anim-ready .noma-anim-line {
    transform: none;
    transition: none;
    will-change: auto;
  }

  .js-anim-heading.is-anim-ready .noma-anim-char {
    opacity: 1;
    transition: none;
    will-change: auto;
  }

  .js-anim-fadeup.is-anim-ready {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .js-anim-image-fadeup.is-anim-ready {
    opacity: 1;
    translate: none;
    transition: none;
    will-change: auto;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

body {
  min-width: 320px;
  color: #071408;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  background: #fff;
}

em {
  color: #6bc900;
}

a {
  color: inherit;
}

.noma picture {
  display: block;
  width: 100%;
  height: 100%;
}

.noma-cta {
  position: relative;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 104px;
  min-height: 6.5rem;
  padding: 28px 30px 25px 36px;
  padding: 1.75rem 1.875rem 1.5625rem 2.25rem;
  isolation: isolate;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.22s cubic-bezier(0.2, 0, 0, 1),
    transform 0.22s cubic-bezier(0.2, 0, 0, 1);
}

.noma-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: calc(100% + 4rem);
  content: "";
  background: var(--noma-cta-hover-bg);
  border-radius: 0 100vw 100vw 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.noma-cta:hover {
  opacity: 1;
  transform: translateY(0.375rem);
}

.noma-cta:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.noma-cta__label {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-bottom: 5.37px;
  margin-bottom: 0.335625rem;
  padding-bottom: 1.63px;
  padding-bottom: 0.101875rem;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  transition: border-color 0.3s ease;
}

.noma-cta__copy {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Noto Sans JP";
  font-size: 18.891px;
  font-size: 1.1806875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.889px;
  letter-spacing: 0.1180625rem;
}

.noma-cta__arrow {
  position: absolute;
  top: 50%;
  right: 33px;
  right: 2.0625rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 66.63px;
  width: 4.164375rem;
  height: 66.63px;
  height: 4.164375rem;
  overflow: hidden;
  border-radius: 50%;
  font-size: 0;
  isolation: isolate;
  transform: translateY(-50%);
  transition:
    box-shadow 0.22s cubic-bezier(0.2, 0, 0, 1),
    transform 0.22s cubic-bezier(0.2, 0, 0, 1);
}

.noma-cta__arrow::before {
  position: relative;
  z-index: 2;
  display: block;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  content: "";
  background-color: #fff;
  -webkit-mask-image: url(../img/fv-cta-arrow-white.svg);
  mask-image: url(../img/fv-cta-arrow-white.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

.noma-cta__arrow::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--noma-cta-hover-arrow-bg);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.noma-cta:hover .noma-cta__arrow {
  transform: translateY(-50%);
}

.noma-cta:hover .noma-cta__arrow::after {
  transform: scale(1);
}

.noma-cta--orange {
  --noma-cta-hover-bg: #e24b00;
  --noma-cta-hover-arrow-bg: #fff;
  flex: 0 0 auto;
  width: 422.72px;
  width: 26.42rem;
  height: 104px;
  height: 6.5rem;
  min-height: 104px;
  min-height: 6.5rem;
  padding: 28px 30px 25px 31.2px;
  padding: 1.35rem 1.875rem 1.5625rem 1.95rem;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 8px;
  border-radius: 0.5rem;
  color: #fff;
  background: #f46d25;
  box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.17);
  box-shadow: 0 0.375rem 0 0 rgba(0, 0, 0, 0.17);
}

.noma-cta--orange .noma-cta__arrow {
  right: 17px;
  right: 1.0625rem;
  background: rgba(255, 255, 255, 0.23);
}

.noma-cta--orange:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.noma-cta--orange:hover .noma-cta__arrow::before {
  background-color: #e24b00;
}

@media (max-width: 767.98px) {
  .noma-cta {
    min-height: 97.99px;
    min-height: 6.124375rem;
    padding: 19px 31px 17px 36px;
    padding: 1.1875rem 1.9375rem 0.9625rem 1.35rem;
    border-radius: 7.5px;
    border-radius: 0.46875rem;
  }

  .noma-cta--orange {
    width: 370px;
    width: 23.125rem;
    height: 91px;
    height: 5.7143125rem;
    min-height: 5.7143125rem;
    padding: 1.2rem 1.9375rem 1.4375rem 1.625rem;
  }

  .noma-cta__label {
    width: max-content;
    padding-bottom: 4px;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid currentColor;
    border-bottom: 0.0625rem solid currentColor;
    font-size: 13.129px;
    font-size: 0.8205625rem;
    line-height: 1.2;
    letter-spacing: 0.065625rem;
  }

  .noma-cta__copy {
    margin-top: 5px;
    margin-top: 0.3125rem;
    font-size: 16.535px;
    font-size: 1.0334375rem;
    line-height: normal;
    letter-spacing: 1.654px;
    letter-spacing: 0.103375rem;
  }

  .noma-cta__arrow {
    right: 15.4px;
    right: 0.9625rem;
    width: 62px;
    width: 3.875rem;
    height: 62px;
    height: 3.875rem;
  }

  .noma-cta--orange .noma-cta__arrow {
    right: 17px;
    right: 1.0625rem;
  }

  .noma-cta--orange .noma-cta__label {
    font-weight: 500;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noma-cta {
    transition: none;
  }

  .noma-cta::before {
    transition: none;
  }

  .noma-cta__arrow {
    transition: none;
  }

  .noma-cta__arrow::after {
    transition: none;
  }
}
/* 全体に関連するcssこここまで======================== */
/* header */
.noma-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}

.noma-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 34px 33px 28px 41px;
  padding: 1.213125rem 0 1.75rem;
  gap: 21px;
  gap: 1.3125rem;
  width: 95.6%;
  transform: translateX(0.875rem);
  transition:
    min-height 0.32s ease,
    padding 0.32s ease;
}

@media (min-width: 1080.01px) {
  .noma-header.is-scrolled .noma-header__inner {
    padding-top: 15px;
    padding: 0.9375rem 0 0.9375rem;
    min-height: auto;
  }
  .noma-header.is-scrolled .noma-header__logo {
    flex-basis: 17rem;
    max-width: 17rem;
  }

  .noma-header.is-scrolled .noma-header__nav {
    font-size: 15px;
    font-size: calc(min(1.1vw, 1rem) - 1px);
  }

  .noma-header.is-scrolled .noma-header__business {
    font-size: 13px;
    font-size: 0.8125rem;
    height: 3.2rem;
  }

  .noma-header.is-scrolled .noma-header__line {
    font-size: 13px;
    font-size: 0.8125rem;
    height: 3.2rem;
  }

  .noma-header.is-scrolled .noma-header__line-text {
    font-size: 13px;
    font-size: 0.8125rem;
  }

  .noma-header.is-scrolled .noma-header__line-text small {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

.noma-header__logo {
  display: block;
  flex: 0 0 18rem;
  max-width: 18rem;
  transition:
    max-width 0.32s ease,
    flex-basis 0.32s ease,
    opacity 0.3s;
}

.noma-header__logo-image {
  display: block;
  width: 100%;
}

.noma-header__logo-image img {
  display: block;
  width: 100%;
  height: auto;
}

.noma-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 35px;
  gap: min(2.2vw, 2.1875rem);
  white-space: nowrap;
  color: #031100;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-size: min(1.1vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.64px;
  letter-spacing: 0.04rem;
  transition:
    font-size 0.32s ease,
    gap 0.32s ease;
}

.noma-header__nav a {
  position: relative;
}

.noma-header__nav a:hover {
  opacity: 1;
}

.noma-header__nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  content: "";
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.noma-header__nav a:hover::after {
  transform: scaleX(1);
}

.noma-header__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.noma-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.noma-header__business,
.noma-header__line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  height: 3.5rem;
  border-radius: 999px;
  border-radius: 62.4375rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.noma-header__business {
  min-width: 10.125rem;
  border: 2px solid #2f64e8;
  border: 0.125rem solid #2f64e8;
  color: #2b63e3;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.56px;
  letter-spacing: 0.035rem;
  transition:
    font-size 0.32s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
}

.noma-header__business:hover {
  color: #fff;
  background-color: #2f64e8;
  opacity: 1;
}

.noma-header__business::after {
  display: block;
  width: 14.29px;
  width: 0.893125rem;
  height: 13.55px;
  height: 0.846875rem;
  margin-left: 7px;
  margin-left: 0.4375rem;
  background-image: url(../img/icon-external.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  transition: filter 0.3s ease;
}

.noma-header__business:hover::after {
  filter: brightness(0) invert(1);
}

.noma-header__line {
  min-width: 11.0625rem;
  gap: 4px;
  gap: 0.25rem;
  color: #fff;
  background: #06c900;
  transition:
    font-size 0.32s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
}

.noma-header__line:hover {
  background-color: #028500;
  opacity: 1;
}

.noma-header__line-icon {
  width: 31px;
  width: 1.9375rem;
  height: 29px;
  height: 1.8125rem;
}

.noma-header__line-text {
  display: grid;
  justify-items: center;
  color: #fff;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  letter-spacing: 0.84px;
  letter-spacing: 0.0525rem;
  margin-top: -3px;
  margin-top: -0.1875rem;
  transition: font-size 0.32s ease;
}

.noma-header__line-text small {
  font-size: 11px;
  font-size: 0.6875rem;
  transition: font-size 0.32s ease;
}

.noma-header__menu {
  display: none;
}

.noma-header__menu-lines {
  display: grid;
}

.noma-header__menu-line {
  display: block;
}

.noma-header__menu-text {
  display: block;
}

.noma-header__drawer {
  display: none;
}

/* Desktop mid widths: keep logo stable, tighten nav/actions */
@media (min-width: 1080.01px) and (max-width: 1580px) {
  .noma-header__inner {
    justify-content: flex-start;
    width: 96.5%;
    gap: 0.75rem;
    transform: none;
  }

  .noma-header__logo {
    flex: 0 0 clamp(13.75rem, 15.5vw, 16rem);
    max-width: clamp(13.75rem, 15.5vw, 16rem);
  }

  .noma-header__nav {
    flex: 0 1 auto;
    margin-left: auto;
    gap: clamp(0.625rem, 1.05vw, 1.125rem);
    font-size: clamp(12px, 1.15vw, 15px);
    letter-spacing: 0.02em;
  }

  .noma-header__actions {
    flex: 0 0 auto;
    gap: 0.375rem;
  }

  .noma-header__business {
    min-width: 8.75rem;
    height: 3rem;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .noma-header__business::after {
    width: 0.75rem;
    height: 0.7rem;
    margin-left: 0.3rem;
  }

  .noma-header__line {
    min-width: 9.75rem;
    height: 3rem;
  }

  .noma-header__line-icon {
    width: 1.5rem;
    height: 1.375rem;
  }

  .noma-header__line-text {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .noma-header__line-text small {
    font-size: 9px;
  }

  .noma-header.is-scrolled .noma-header__logo {
    flex-basis: clamp(13rem, 14.5vw, 15rem);
    max-width: clamp(13rem, 14.5vw, 15rem);
  }

  .noma-header.is-scrolled .noma-header__nav {
    font-size: clamp(11px, 0.9vw, 13px);
  }

  .noma-header.is-scrolled .noma-header__business,
  .noma-header.is-scrolled .noma-header__line {
    height: 2.75rem;
  }
}

/* footer */
.noma-footer {
  padding: 0 0 42.83px;
  padding: 0 0 2.676875rem;
  background: url(../img/footer-bg.webp) no-repeat;
  background-size: 95.7142857143% 88%;
  background-position: center;
  margin-top: -135px;
  margin-top: -8.4375rem;
  padding: 190px 0 130px;
  padding: 12.875rem 0 7.125rem;
  position: relative;
  z-index: 0;
}

.noma-footer address {
  margin-bottom: 18.4px;
  margin-bottom: 1.15rem;
  white-space: nowrap;
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 17px;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 28.05px */
  letter-spacing: 1.53px;
  letter-spacing: 0.095625rem;
}

.noma-footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1227px;
  width: 83%;
  margin-inline: auto;
  overflow: hidden;
  transform: translateX(1.875rem);
}

/* 左半分：会社情報＋コピーライト */
.noma-footer__left {
  display: flex;
  flex-direction: column;
  gap: 17.5px;
  gap: 1.09375rem;
}

.noma-footer__info {
  position: relative;
  z-index: 1;
  grid-area: info;
}

.noma-footer__logo {
  width: 267px;
  width: 16.6875rem;
  height: 74px;
  height: 4.625rem;
  margin-bottom: 25.9px;
  margin-bottom: 1.61875rem;
  display: block;
}

.noma-footer__tel {
  position: relative;
  display: block;
  width: 290.84px;
  width: 18.1775rem;
}

.noma-footer__tel:hover {
  opacity: 1;
}

.noma-footer__tel::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.8rem;
  height: 1px;
  content: "";
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.noma-footer__tel:hover::after {
  transform: scaleX(1);
}

.noma-footer__copyright {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 1.44px;
  letter-spacing: 0.09rem;
}

/* 右半分：ナビ（上）＋SNS（右下） */
.noma-footer__right {
  display: flex;
  flex-direction: column;
}

.noma-footer__nav {
  position: relative;
  z-index: 1;
  grid-area: nav;
  display: grid;
  grid-template-columns: 117.77px 153.77px 153.77px 105.77px;
  grid-template-columns: 7.360625rem 9.610625rem 9.610625rem 6.610625rem;
  grid-template-rows: repeat(3, 30px);
  grid-template-rows: repeat(3, 1.875rem);
  align-content: start;
  gap: 10px 49px;
  gap: 0.625rem 3.0625rem;
  padding-top: 19.9px;
  padding-top: 1.24375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}

.noma-footer__nav a {
  position: relative;
  justify-self: start;
  padding-left: 10.77px;
  padding-left: 0.673125rem;
  line-height: 2;
  white-space: nowrap;
}

.noma-footer__nav a:hover {
  opacity: 1;
}

.noma-footer__nav a::after {
  position: absolute;
  left: 0.673125rem;
  right: 0;
  bottom: 0.1rem;
  height: 1px;
  content: "";
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.noma-footer__nav a:hover::after {
  transform: scaleX(1);
}

/* Footer Figma 4-column order */
.noma-footer__nav a:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.noma-footer__nav a:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.noma-footer__nav a:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.noma-footer__nav a:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.noma-footer__nav a:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.noma-footer__nav a:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

.noma-footer__nav a:nth-child(7) {
  grid-column: 1;
  grid-row: 3;
}

.noma-footer__nav a:nth-child(8) {
  grid-column: 4;
  grid-row: 1;
}

.noma-footer__nav a:nth-child(9) {
  grid-column: 4;
  grid-row: 2;
}

.noma-footer__nav a:nth-child(10) {
  grid-column: 4;
  grid-row: 3;
}

.noma-footer__nav a::before {
  position: absolute;
  top: 11.08px;
  top: 0.6925rem;
  left: 0;
  width: 4.27px;
  width: 0.266875rem;
  height: 4.27px;
  height: 0.266875rem;
  border-radius: 50%;
  background: linear-gradient(136deg, #c0db37 13.89%, #dce21c 73.14%);
  content: "";
}

.noma-footer__sns {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin-top: 47.6px;
  margin-top: 2.975rem;
  width: 123.7px;
  width: 7.73125rem;
}

.noma-footer__sns p {
  margin-bottom: 5.75px;
  margin-bottom: 0.359375rem;
  width: 84px;
  width: 5.25rem;
}

.noma-footer__sns-links {
  display: flex;
  align-items: center;
  gap: 14.5px;
  gap: 0.90625rem;
}

.noma-footer__sns-links a {
  display: block;
  width: 29.82px;
  width: 1.86375rem;
  height: 29.82px;
  height: 1.86375rem;
}

.noma-footer__sns-links a:nth-child(2) {
  width: 24.5px;
  width: 1.53125rem;
  height: 28px;
  height: 1.75rem;
}

.noma-footer__sns-links a:nth-child(3) {
  width: 36.5px;
  width: 2.28125rem;
  height: 25px;
  height: 1.5625rem;
}

.noma-footer__sns-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.noma-footer__sns-icon img {
  object-fit: contain;
}

/* スマホではpcクラスは非表示 */
@media (max-width: 767.98px) {
  .pc {
    display: none !important;
  }
}

/* PCではspクラスは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noma-concept__track {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noma-worker-support__bg-word-track {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noma-tiktok__thumb-track {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noma-header__inner {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noma-header__drawer {
    transition: none;
  }
}

@media screen and (max-width: 767.98px) {
  /* header */
  .noma-header {
    background: #fff;
  }

  .noma-header.is-menu-visible {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: 100dvh;
    overflow: hidden;
    background: #fffffb;
  }

  .noma-header.is-menu-open {
    overflow-y: auto;
  }

  .noma-header__inner {
    width: 100%;
    min-height: 4rem;
    padding: 12px 14px 10px;
    padding: 0.75rem 0.875rem 0.625rem;
    gap: 12px;
    gap: 0.75rem;
    transform: none;
  }

  .noma-header__logo {
    flex: 0 1 auto;
  }

  .noma-header__logo-image {
    width: 220px;
    width: 13.75rem;
    max-width: calc(100vw - 86px);
    height: 40px;
    height: 2.5rem;
  }

  .noma-header__nav {
    display: none;
  }

  .noma-header__actions {
    display: none;
  }

  .noma-header__menu {
    display: grid;
    place-items: center;
    width: 39px;
    width: 2.4375rem;
    height: 40px;
    height: 2.5rem;
    padding: 0;
    border: 0;
    color: #071408;
    font: inherit;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1;
    background: transparent;
  }

  .noma-header__menu:focus {
    outline: none;
  }

  .noma-header__menu:focus-visible {
    outline: 2px solid #b9e51a;
    outline: 0.125rem solid #b9e51a;
    outline-offset: 2px;
    outline-offset: 0.125rem;
  }

  .noma-header__menu-lines {
    display: grid;
    align-content: space-between;
    width: 31px;
    width: 1.9375rem;
    height: 13px;
    height: 0.8125rem;
  }

  .noma-header__menu-line {
    grid-column: 1;
    width: 31px;
    width: 1.9375rem;
    height: 1px;
    background: currentColor;
    transition: transform 0.28s ease;
    transform-origin: center;
  }

  .noma-header__menu-text {
    position: relative;
    margin-top: -1px;
    margin-top: -0.0625rem;
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: opacity 0.2s ease;
  }

  .noma-header__menu-text-img {
    display: block;
    transition: opacity 0.2s ease;
  }

  .noma-header__menu-text-img--menu {
    width: 32px;
    width: 2rem;
  }

  .noma-header__menu-text-img--close {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 33px;
    width: 2.0625rem;
    opacity: 0;
    transform: translate(-50%, -50%);
  }

  .noma-header.is-menu-open .noma-header__menu-text-img--menu {
    opacity: 0;
  }

  .noma-header.is-menu-open .noma-header__menu-text-img--close {
    opacity: 1;
  }

  .noma-header.is-menu-open .noma-header__menu-line:first-child {
    transform: translateY(0.34375rem) rotate(31deg);
  }

  .noma-header.is-menu-open .noma-header__menu-line:last-child {
    transform: translateY(-0.34375rem) rotate(-31deg);
  }

  .noma-header__drawer {
    position: relative;
    display: block;
    box-sizing: border-box;
    min-height: calc(100dvh - 64px);
    padding: 28px 34px 34px;
    padding: 1.75rem 2.125rem 2.125rem;
    overflow: hidden;
    background: #fffffb;
    opacity: 0;
    transform: translateY(-100%);
    transition:
      transform 0.36s ease,
      opacity 0.24s ease;
  }

  .noma-header__drawer[hidden] {
    display: none;
  }

  .noma-header.is-menu-open .noma-header__drawer {
    opacity: 1;
    transform: translateY(0);
  }

  .noma-header__drawer-cta {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    margin-bottom: 2px;
    margin-bottom: 0.125rem;
  }

  .noma-header__drawer-cta-link {
    display: block;
    min-width: 0;
  }

  .noma-header__drawer-cta-image {
    display: block;
    width: 100%;
    aspect-ratio: 172.996 / 62.3;
  }

  .noma-header__drawer-cta-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .noma-header__drawer-nav {
    position: relative;
    z-index: 1;
    display: grid;
    margin-bottom: 26px;
    margin-bottom: 1.625rem;
  }

  .noma-header__drawer-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 5.0625rem;
    border-bottom: 1px solid #e4e5dc;
    border-bottom: 0.0625rem solid #e4e5dc;
    color: #000;
    font-family: "Zen Kaku Gothic New";
    font-size: 17px;
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 34px */
    letter-spacing: 1.02px;
    letter-spacing: 0.06375rem;
  }

  .noma-header__drawer-nav a:hover {
    opacity: 1;
  }

  .noma-header__drawer-nav a::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.0625rem;
    height: 0.0625rem;
    content: "";
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .noma-header__drawer-nav a:hover::after {
    transform: scaleX(1);
  }

  .noma-header__drawer-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .noma-header__drawer-nav a::before {
    display: block;
    flex: 0 0 auto;
    width: 5.3px;
    width: 0.33125rem;
    height: 5.3px;
    height: 0.33125rem;
    margin-right: 8px;
    margin-right: 0.5rem;
    margin-top: -10px;
    margin-top: -0.625rem;
    border-radius: 50%;
    background: linear-gradient(136deg, #c0db37 13.89%, #dce21c 73.14%);
    content: "";
  }

  .noma-header__drawer-tel {
    position: relative;
    z-index: 1;
    display: block;
    width: 282.62px;
    width: 17.66375rem;
    max-width: 100%;
  }

  .noma-header__drawer-tel:hover {
    opacity: 1;
  }

  .noma-header__drawer-tel::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.15rem;
    height: 1px;
    content: "";
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .noma-header__drawer-tel:hover::after {
    transform: scaleX(1);
  }

  .noma-header__drawer-tel-image {
    display: block;
    width: 100%;
    aspect-ratio: 282.62 / 40;
  }

  .noma-header__drawer-tel-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .noma-header__drawer-decoration {
    position: absolute;
    z-index: 0;
  }

  .noma-header__drawer-decoration--left {
    top: 572.6px;
    top: 35.7875rem;
    left: -86.8px;
    left: -5.425rem;
    width: 234.7px;
    width: 14.66875rem;
  }

  .noma-header__drawer-decoration--right {
    top: 28px;
    top: 1.75rem;
    right: -317px;
    right: -19.8125rem;
    width: 432.52px;
    width: 27.0325rem;
  }

  .noma-header__drawer-decoration img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* footer */
  .noma-footer {
    margin-top: -20.52px;
    margin-top: -1.2825rem;
    background: url(../img/footer-bg-sp.webp) no-repeat;
    background-size: 100% 100%;
    padding: 90px 0 17px;
    padding: 5.625rem 0 1.0625rem;
    z-index: 1;
  }

  .noma-footer__inner {
    display: flex;
    flex-direction: column;
    width: 364px;
    width: 22.75rem;
    transform: translateX(0);
  }

  /* SPはラッパーを透過させ、order で元の縦並び順(info→nav→sns→copyright)を復元 */
  .noma-footer__left,
  .noma-footer__right {
    display: contents;
  }

  .noma-footer__info {
    order: 1;
  }

  .noma-footer__nav {
    order: 2;
  }

  .noma-footer__sns {
    order: 3;
  }

  .noma-footer__copyright {
    order: 4;
  }

  .noma-footer__info {
    position: relative;
    z-index: 1;
  }

  .noma-footer__logo {
    width: 183.58px;
    width: 11.47375rem;
    height: 50.88px;
    height: 3.18rem;
    margin-bottom: 24.45px;
    margin-bottom: 1.528125rem;
  }

  .noma-footer address {
    margin-bottom: 16px;
    margin-bottom: 1rem;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 1.53px;
    letter-spacing: 0.095625rem;
  }

  .noma-footer__tel {
    width: 290.84px;
    width: 18.1775rem;
  }

  .noma-footer__nav {
    position: relative;
    z-index: 1;
    grid-auto-flow: column;
    grid-template-columns: minmax(8.25rem, 150.54px) minmax(92px, 103.54px);
    grid-template-rows: repeat(6, auto);
    column-gap: 52px;
    column-gap: 3.25rem;
    row-gap: 14px;
    row-gap: 0.875rem;
    width: 100%;
    margin-top: 36.6px;
    margin-top: 2.2875rem;
    margin-left: 10.37px;
    margin-left: 0.648125rem;
    padding-top: 0;
    font-size: 14.677px;
    font-size: 0.9173125rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.8806px;
    letter-spacing: 0.0550375rem;
  }

  .noma-footer__nav a {
    grid-column: auto;
    grid-row: auto;
    padding-left: 10.54px;
    padding-left: 0.65875rem;
    white-space: nowrap;
  }

  .noma-footer__nav a::before {
    top: 10.84px;
    top: 0.6775rem;
    width: 4.18px;
    width: 0.26125rem;
    height: 4.18px;
    height: 0.26125rem;
  }

  .noma-footer__nav a:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .noma-footer__sns {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 123.7px;
    width: 7.73125rem;
    max-width: 44%;
    margin-top: -60px;
    margin-top: -3.75rem;
    margin-right: 31px;
    margin-right: 1.9375rem;
  }

  .noma-footer__sns p {
    margin-bottom: 11.75px;
    margin-bottom: 0.734375rem;
  }

  .noma-footer__sns-links {
    gap: 14.5px;
    gap: 0.90625rem;
    justify-content: flex-start;
  }

  .noma-footer__sns-links a {
    width: 29.82px;
    width: 1.86375rem;
    height: 29.82px;
    height: 1.86375rem;
  }

  .noma-footer__sns-links a:nth-child(2) {
    width: 24.5px;
    width: 1.53125rem;
    height: 28px;
    height: 1.75rem;
  }

  .noma-footer__sns-links a:nth-child(3) {
    width: 36.5px;
    width: 2.28125rem;
    height: 25px;
    height: 1.5625rem;
  }

  .noma-footer__sns-icon {
    width: 100%;
    height: 100%;
  }

  .noma-footer__sns-icon img {
    object-fit: contain;
  }

  .noma-footer__copyright {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    margin-top: 68.73px;
    margin-top: 4.295625rem;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 1.44px;
    letter-spacing: 0.09rem;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  html {
    --noma-header-height: 72px;
  }

  body.is-noma-menu-open {
    overflow: hidden;
  }

  .noma-header {
    background: #fff;
  }

  .noma-header.is-menu-visible {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: 100dvh;
    overflow: hidden;
    background: #fffffb;
  }

  .noma-header.is-menu-open {
    overflow-y: auto;
  }

  .noma-header__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    min-height: 72px;
    padding: 14px 24px 12px;
    gap: 16px;
    transform: none;
  }

  .noma-header__logo {
    flex: 0 1 auto;
  }

  .noma-header__logo-image {
    width: 220px;
    max-width: calc(100vw - 112px);
    height: 40px;
  }

  .noma-header__nav {
    display: none;
  }

  .noma-header__actions {
    display: none;
  }

  .noma-header__menu {
    display: grid;
    place-items: center;
    width: 39px;
    height: 40px;
    padding: 0;
    border: 0;
    color: #071408;
    font: inherit;
    font-size: 10px;
    line-height: 1;
    background: transparent;
  }

  .noma-header__menu:focus {
    outline: none;
  }

  .noma-header__menu:focus-visible {
    outline: 2px solid #b9e51a;
    outline-offset: 2px;
  }

  .noma-header__menu-lines {
    display: grid;
    align-content: space-between;
    width: 31px;
    height: 13px;
  }

  .noma-header__menu-line {
    grid-column: 1;
    width: 31px;
    height: 1px;
    background: currentColor;
    transition: transform 0.28s ease;
    transform-origin: center;
  }

  .noma-header__menu-text {
    position: relative;
    margin-top: -1px;
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    transition: opacity 0.2s ease;
  }

  .noma-header__menu-text-img {
    display: block;
    transition: opacity 0.2s ease;
  }

  .noma-header__menu-text-img--menu {
    width: 32px;
  }

  .noma-header__menu-text-img--close {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 33px;
    opacity: 0;
    transform: translate(-50%, -50%);
  }

  .noma-header.is-menu-open .noma-header__menu-text-img--menu {
    opacity: 0;
  }

  .noma-header.is-menu-open .noma-header__menu-text-img--close {
    opacity: 1;
  }

  .noma-header.is-menu-open .noma-header__menu-line:first-child {
    transform: translateY(5.5px) rotate(31deg);
  }

  .noma-header.is-menu-open .noma-header__menu-line:last-child {
    transform: translateY(-5.5px) rotate(-31deg);
  }

  .noma-header__drawer {
    position: relative;
    display: block;
    box-sizing: border-box;
    min-height: calc(100dvh - 72px);
    padding: 40px clamp(48px, 8vw, 96px) 56px;
    overflow: hidden;
    background: #fffffb;
    opacity: 0;
    transform: translateY(-100%);
    transition:
      transform 0.36s ease,
      opacity 0.24s ease;
  }

  .noma-header__drawer[hidden] {
    display: none;
  }

  .noma-header.is-menu-open .noma-header__drawer {
    opacity: 1;
    transform: translateY(0);
  }

  .noma-header__drawer-cta {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    max-width: 470px;
    margin: 0 auto 18px;
  }

  .noma-header__drawer-cta-link {
    display: block;
    min-width: 0;
  }

  .noma-header__drawer-cta-image {
    display: block;
    width: 100%;
    aspect-ratio: 172.996 / 62.3;
  }

  .noma-header__drawer-cta-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .noma-header__drawer-nav {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 28px;
  }

  .noma-header__drawer-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78px;
    border-bottom: 1px solid #e4e5dc;
    color: #000;
    font-family: "Zen Kaku Gothic New";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.14px;
  }

  .noma-header__drawer-nav a::before {
    display: block;
    flex: 0 0 auto;
    width: 5.3px;
    height: 5.3px;
    margin-right: 8px;
    margin-top: -10px;
    border-radius: 50%;
    background: linear-gradient(136deg, #c0db37 13.89%, #dce21c 73.14%);
    content: "";
  }

  .noma-header__drawer-tel {
    position: relative;
    z-index: 1;
    display: block;
    width: 330px;
    max-width: 100%;
    margin: 0 auto;
  }

  .noma-header__drawer-tel:hover {
    opacity: 1;
  }

  .noma-header__drawer-tel::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.15rem;
    height: 1px;
    content: "";
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }

  .noma-header__drawer-tel:hover::after {
    transform: scaleX(1);
  }

  .noma-header__drawer-tel-image {
    display: block;
    width: 100%;
    aspect-ratio: 282.62 / 40;
  }

  .noma-header__drawer-tel-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .noma-header__drawer-decoration {
    position: absolute;
    z-index: 0;
  }

  .noma-header__drawer-decoration--left {
    top: 580px;
    left: -86.8px;
    width: 324.7px;
  }

  .noma-header__drawer-decoration--right {
    top: 32px;
    right: -247px;
    width: 492.52px;
  }

  .noma-header__drawer-decoration img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1080px) and (prefers-reduced-motion: reduce) {
  .noma-header__menu-line {
    transition: none;
  }

  .noma-header__menu-text {
    transition: none;
  }

  .noma-header__menu-text-img {
    transition: none;
  }

  .noma-header__drawer {
    transition: none;
  }

  .noma-header__drawer-tel::after {
    transition: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .noma-footer {
    padding: 13.875rem 0 5.125rem;
    background: url(../img/footer-bg.webp) no-repeat;
    background-size: 100% 98%;
  }
  .noma-footer__inner {
    flex-direction: column;
    width: 88%;
    max-width: 826px;
    transform: translateX(0);
  }
}

/* Shared contact component */
/* Shared TOP contact block used immediately before the site footer. */
.noma-contact {
  position: relative;
  margin-top: -3.75rem;
  padding: 1.25rem 0 3.5rem;
}

.noma-contact__inner {
  position: relative;
  z-index: 2;
  width: 66%;
  max-width: 68.3963rem;
  margin-inline: auto;
  text-align: center;
}

.noma-contact__heading {
  margin-bottom: 3.875rem;
}

.noma-contact__heading p {
  margin-top: -0.8875rem;
  font-size: 1.1475rem;
  line-height: 2;
  letter-spacing: 0.0688rem;
}

.noma-contact__logo {
  width: 18.875rem;
  height: 5.9375rem;
  margin-inline: auto;
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.1473rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.0688rem;
}

.noma-contact__logo img {
  height: 100%;
  margin-bottom: -0.9375rem;
}

.noma-contact__logo-text {
  display: block;
}

.noma-contact__cards {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 1.3969rem;
  margin-inline: auto;
}

.noma-contact-card {
  position: relative;
  flex: 1;
  min-height: 20.9656rem;
  padding: 2.6588rem 0.9rem 1.9988rem;
  border-radius: 0.625rem;
  color: #fff;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .noma-contact-card:hover {
    z-index: 2;
    transform: scale(1.05);
  }
}

.noma-contact-card h3 {
  margin-bottom: 0.625rem;
  font-size: 1.4131rem;
  line-height: 1.65;
  letter-spacing: 0.0988rem;
}

.noma-contact-card__link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .noma-contact-card__link:hover {
    opacity: 1;
  }
}

.noma-contact-card__link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  content: "";
}

.noma-contact-card__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20.6706rem;
  height: 4rem;
  padding: 0.5rem 1.375rem 0.5rem 1.875rem;
  border-radius: 62.4375rem;
  color: inherit;
  background: #fff;
  box-shadow: 0 0.3125rem 0 rgba(56, 56, 56, 0.16);
  transition:
    box-shadow 0.22s cubic-bezier(0.2, 0, 0, 1),
    transform 0.3s ease,
    opacity 0.3s ease;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .noma-contact-card:hover .noma-contact-card__button {
    box-shadow: 0 0 0 0 rgba(56, 56, 56, 0);
    transform: scale(1.06);
  }
}

.noma-contact-card--line {
  background: #07b804;
}

.noma-contact-card--line .noma-contact-card__icon {
  width: 4.2894rem;
  height: 4.1106rem;
}

.noma-contact-card--line .noma-contact-card__link {
  color: #07b804;
}

.noma-contact-card__side {
  position: absolute;
  top: 1.8719rem;
  left: 1.0531rem;
  width: 1.625rem;
}

.noma-contact-card__icon {
  margin: 0 auto 1.3125rem;
}

.noma-contact-card--mail .noma-contact-card__icon {
  width: 4.125rem;
  height: 4.125rem;
}

.noma-contact-card__icon img {
  object-fit: contain;
}

.noma-contact-card__lead {
  margin-bottom: 1.1813rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.0175rem;
}

.noma-contact-card__button-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.7879rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.0551rem;
}

.noma-contact-card__button-label::before {
  width: 1.0625rem;
  height: 0.0625rem;
  background: currentColor;
  content: "";
}

.noma-contact-card__button-label::after {
  width: 1.0625rem;
  height: 0.0625rem;
  background: currentColor;
  content: "";
}

.noma-contact-card__button-text {
  display: block;
  margin-top: -0.125rem;
  font-size: 1.0381rem;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: 0.0413rem;
}

.noma-contact-card--mail .noma-contact-card__button-text {
  margin-top: 0;
}

.noma-contact-card__button-arrow {
  position: absolute;
  top: 50%;
  right: 0.51rem;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 2.3263rem;
  height: 2.3263rem;
  border-radius: 50%;
  background: #e5f0df;
  font-size: 0;
  transform: translateY(-50%);
}

.noma-contact-card--mail .noma-contact-card__button-arrow {
  background: #e4ebff;
}

.noma-contact-card__button-arrow::before {
  position: relative;
  z-index: 2;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: currentColor;
  content: "";
  -webkit-mask-image: url("../img/btn-arrow.svg");
  mask-image: url("../img/btn-arrow.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(-45deg);
  transition: background-color 0.3s ease;
}

.noma-contact-card__button-arrow::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background-color: currentColor;
  content: "";
  transform: scale(0);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .noma-contact-card:hover .noma-contact-card__button-arrow::after {
    transform: scale(1);
  }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .noma-contact-card:hover .noma-contact-card__button-arrow::before {
    background-color: #fff;
  }
}

.noma-contact-card--mail {
  background: #2b63e3;
}

.noma-contact-card--mail .noma-contact-card__link {
  color: #2b63e3;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .noma-contact__inner {
    width: 65%;
    max-width: 68.3963rem;
  }

  .noma-contact__cards {
    flex-direction: column;
  }
}

@media (width < 768px) {
  .noma-contact {
    z-index: 2;
    margin-top: -1.1875rem;
    padding: 0;
  }

  .noma-contact__inner {
    width: 21.375rem;
  }

  .noma-contact__heading {
    margin-bottom: 3.0538rem;
  }

  .noma-contact__logo {
    width: 15.2813rem;
    max-width: 100%;
    height: 4.8125rem;
    font-size: 1.0325rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.0619rem;
  }

  .noma-contact__logo img {
    margin-bottom: -0.625rem;
  }

  .noma-contact__heading p {
    margin-top: -1.0275rem;
    font-size: 1.0325rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.062rem;
  }

  .noma-contact__cards {
    flex-direction: column;
    width: 100%;
    gap: 0.6656rem;
  }

  .noma-contact-card {
    min-height: 17.8119rem;
    padding: 1.6856rem 1.8125rem 1.2906rem;
    border-radius: 0.625rem;
  }

  .noma-contact-card__side {
    top: 1.3719rem;
    left: 0.9531rem;
    width: 1.4375rem;
  }

  .noma-contact-card__side::after {
    width: 0.0625rem;
    height: 1.4663rem;
    margin-top: 0.4375rem;
  }

  .noma-contact-card__icon {
    width: 4.075rem;
    height: 3.905rem;
    margin-bottom: 0.7913rem;
  }

  .noma-contact-card--mail .noma-contact-card__icon {
    width: 3.5013rem;
    height: 3.5013rem;
    margin-top: 0.6363rem;
    margin-bottom: 0.5594rem;
  }

  .noma-contact-card h3 {
    margin-bottom: 0.4563rem;
    font-size: 1.25rem;
    line-height: 1.65;
    letter-spacing: 0.0875rem;
  }

  .noma-contact-card__lead {
    margin-right: -0.5313rem;
    margin-bottom: 0.8206rem;
    margin-left: -0.5313rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.0175rem;
  }

  .noma-contact-card__button {
    min-width: 0;
    width: 17.75rem;
    max-width: 100%;
    min-height: 4rem;
    padding: 0.3475rem 3.25rem 0.4988rem 2.125rem;
    text-align: center;
    box-shadow: 0 0.3125rem 0 rgba(56, 56, 56, 0.16);
  }

  .noma-contact-card__button-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4375rem;
    font-size: 0.7881rem;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.0552rem;
  }

  .noma-contact-card__button-label::before {
    display: block;
    width: 1.0625rem;
    height: 0.0625rem;
    background: currentColor;
    content: "";
  }

  .noma-contact-card__button-label::after {
    display: block;
    width: 1.0625rem;
    height: 0.0625rem;
    background: currentColor;
    content: "";
  }

  .noma-contact-card__button-text {
    font-size: 1.0381rem;
    font-weight: 900;
    line-height: 1.65;
    letter-spacing: 0.0415rem;
  }

  .noma-contact-card__button-arrow {
    position: absolute;
    width: 2.3263rem;
    height: 2.3263rem;
    margin-left: 0;
    font-size: 0.75rem;
    line-height: 1;
  }
}

/* Shared pagination component */
/* Shared pagination — referral archive spec */

.noma-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 35.9311875rem;
  max-width: 100%;
  min-height: 4.4511875rem;
  margin-inline: auto;
}

.noma-pagination__direction {
  display: block;
  flex: 0 0 auto;
}

.noma-pagination__direction img {
  width: auto;
  height: 1.3125rem;
}

.noma-pagination__direction--prev {
  width: 4.40625rem;
}

.noma-pagination__direction--next {
  width: 4.53125rem;
}

.noma-pagination__direction.is-disabled {
  opacity: 0.25;
}

.noma-pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.noma-pagination__numbers--sp {
  display: none;
}

.noma-pagination__numbers .page-numbers {
  display: grid;
  place-items: center;
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 50%;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}

.noma-pagination__numbers .page-numbers.current {
  width: 4.4511875rem;
  height: 4.4511875rem;
  color: #fff;
  background: linear-gradient(124deg, #abdb31 29.38%, #dee61f 103.18%);
}

.noma-pagination__numbers .page-numbers.dots {
  width: 1.5rem;
}

@media (max-width: 767.98px) {
  .noma-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 22.6505rem;
    min-height: 4.0061rem;
    margin-inline: auto;
  }

  .noma-pagination__direction {
    display: block;
    flex: 0 0 auto;
  }

  .noma-pagination__direction img {
    width: auto;
    height: 1.1875rem;
  }

  .noma-pagination__direction--prev {
    width: 3.9291rem;
  }

  .noma-pagination__direction--next {
    width: 4.0558rem;
  }

  .noma-pagination__numbers--pc {
    display: none;
  }

  .noma-pagination__numbers--sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.625rem;
  }

  .noma-pagination__numbers .page-numbers {
    display: grid;
    place-items: center;
    width: auto;
    height: auto;
    color: #000;
    font-family: "Gotham", "Noto Sans JP", sans-serif;
    font-size: 0.99rem;
    font-weight: 500;
    line-height: normal;
  }

  .noma-pagination__numbers .page-numbers.current {
    width: 4.0061rem;
    height: 4.0061rem;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(124.45deg, #abdb31 18.2305%, #dee61f 100%);
  }

  .noma-pagination__numbers .page-numbers.dots {
    width: auto;
  }
}
