/* fvスライド（独自実装：Swiperは使わず、キングジムMARK等の参考サイトと同じ
   「現在スライドにclip-pathで左→右のカーテンワイプ＋内側要素をズームアウト」
   という構成で実装している） */
.fv-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1408 / 672;
  max-height: calc(100svh - 184px);
  min-height: 40rem;

  --fv-slide-duration: 900ms;
  --fv-slide-easing: cubic-bezier(.65, 0, .35, 1);
  --fv-zoom-duration: 6000ms;
  --fv-zoom-easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .fv-slider {
    aspect-ratio: unset;
    height: calc(100svh - 1rem);
    max-height: unset;
    min-height: unset;
  }
}
.fv-slider__list {
  position: relative;
  width: 100%;
  height: 100%;
}
.fv-slider__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
}
.fv-slider__slide-viewport {
  position: absolute;
  inset: 0 1.1111vw;
  overflow: hidden;
  border-radius: 12px;
  clip-path: inset(0 101% 0 0);
  transition: clip-path var(--fv-slide-duration) var(--fv-slide-easing);
  will-change: clip-path;
  backface-visibility: hidden;
}
.fv-slider__slide-inner {
  width: 100%;
  height: 100%;
  scale: 1.25;
  transition: scale var(--fv-zoom-duration) var(--fv-zoom-easing);
  will-change: scale;
  backface-visibility: hidden;
}
.fv-slider__slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fv-slider__slide.is-current {
  z-index: 2;
}
.fv-slider__slide.is-current .fv-slider__slide-viewport {
  clip-path: inset(0 0 0 0);
}
.fv-slider__slide.is-current .fv-slider__slide-inner {
  scale: 1;
}
.fv-slider__slide.is-prev {
  z-index: 1;
}
.fv-slider__slide.is-prev .fv-slider__slide-viewport {
  clip-path: inset(0 0 0 0);
}
.fv-slider__slide.is-prev .fv-slider__slide-inner {
  scale: 1;
}

/* 動きを抑えたい環境向け：クリップ／ズームは行わずクロスフェードのみ */
@media (prefers-reduced-motion: reduce) {
  .fv-slider__slide {
    opacity: 0;
    transition: opacity var(--fv-slide-duration) ease;
  }
  .fv-slider__slide-viewport {
    clip-path: none;
  }
  .fv-slider__slide-inner {
    scale: 1;
    transition: none;
  }
  .fv-slider__slide.is-current {
    opacity: 1;
  }
}
/* swiperページネーション */
.fv .fv__pagination {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  left: auto;
  width: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.fv__pagination-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  border: .0625rem dashed var(--color-white);
  border-radius: 50%;
  background-color: rgb(0 0 0 / 0.2);
  cursor: pointer;
}
.fv__pagination-number {
  font-family: var(--font-family-ja);
  font-size: 1.25rem;
  line-height: 2;
  color: var(--color-white);
}
.fv__pagination-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.875rem;
  height: 3.875rem;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
}
.fv__pagination-progress circle {
  fill: none;
  stroke: var(--color-brand-blue);
  stroke-width: .125rem;
  stroke-linecap: round;
  stroke-dasharray: 188.496;
  stroke-dashoffset: 188.496;
}
.fv__pagination-item--active .fv__pagination-progress circle {
  stroke-dashoffset: calc(188.496 * (1 - var(--fv-progress, 0)));
}

/* fvテキスト */
.fv__contents {
  position: relative;
}
.fv__titles {
  display: grid;
  gap: 2.5vw;
  position: absolute;
  left: 7.8472vw;
  top: 49%;
  transform: translateY(-50%);
  z-index: 2;
}
.fv__titles.for-slide-1 {
  display: none;
}
.fv__contents.is-slide-1 .fv__titles {
  display: none;
}
.fv__contents.is-slide-1 .fv__titles.for-slide-1 {
  display: grid;
}
.fv__titles.for-slide-1 img {
  width: 18.4028vw;
}
/* スライド2用ALEXロゴ（SP版：ヒーロービジュアル左下に配置） */
.fv__alex-badge {
  display: none;
}
.fv__contents.is-slide-1 .fv__alex-badge {
  display: none;
}
.fv__title {
  display: block;
  color: var(--color-white);
  font-size: 2.2222vw;
  font-weight: 400;
  line-height: 2;
  text-shadow: 0 0 .1875rem rgb(0 0 0 / 0.2);
}
.fv__text {
  display: block;
  color: var(--color-white);
  font-size: .9722vw;
  font-weight: 500;
  line-height: 2;
  text-shadow: 0 0 .1875rem rgb(0 0 0 / 0.2);
}
.fv__titles.for-slide-1 .fv__title,
.fv__titles.for-slide-1 .fv__text {
  color: var(--color-black);
  text-shadow: none;
}
.fv__titles.is-black .fv__title,
.fv__titles.is-black .fv__text {
  color: var(--color-black);
  text-shadow: none;
}

/* fvバナー */
.fv__banners {
  display: flex;
  align-items: stretch;
  gap: 1.1111vw;
  position: absolute;
  bottom: -2.22vw;
  left: 5.5556vw;
  z-index: 3;
}
.fv__banner {
  display: flex;
  justify-content: flex-start;
  background-color: var(--color-black);
  border-radius: .75rem;
  color: var(--color-white);
  width: 21.389vw;
  aspect-ratio: 308 / 96;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: .25rem .25rem .625rem rgb(0 0 0 / 0.16);
  transition: transform 0.3s ease;

  img {
    display: block;
    width: 6.67vw;
    aspect-ratio: 1 / 1;
  }
}
.fv__banner:nth-of-type(2) {
  background-color: var(--color-brand-blue);
}
@media (hover:hover) {
  .fv__banner:hover {
    opacity: 1;
    animation: float 1s ease-in-out infinite;
  }
}
.fv__banner:focus-visible {
  opacity: 1;
  animation: float 1s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.625rem);
  }
}

.fv-banner__texts {
  padding: 2.2222vw 1.1111vw 1.1111vw 2.2222vw;
}
.fv-banner__title {
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1;
}
.fv-banner__en {
  font-size: .8333vw;
  font-weight: 300;
  line-height: 1;
  position: relative;
  width: fit-content;
  margin-top: 1.3vw;
  margin-left: auto;
}
.fv-banner__en::after {
  content: "";
  background: url(../../images/pages/top/fv-banner-arrow.svg) no-repeat center center / contain;
  width: .5556vw;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: -1.4vw;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .fv {
    --fv-corner-bottom: max(4.1026vw, 1rem);
    /* iOS Safariは下部のツールバー（アドレスバー/ボタン群）をsvh/dvhの
       計算からうまく除外できないことがあるため、スライドの高さは
       変えずに、角丸やページネーションなど下端の表示だけをこの分
       上に逃がしてツールバーに隠れないようにする */
    --fv-toolbar-safe: calc(56px + env(safe-area-inset-bottom, 0px));
    padding-top: 1rem;
  }
  .fv-head-top__buttons,
  .header__buttons {
    flex-wrap: wrap;
  }
  .fv__titles {
    gap: 4.1026vw;
    position: absolute;
    left: 11vw;
    top: 8.5vw;
    transform: none;
    width: 77vw;
  }
  .fv__title {
    font-size: 5.1282vw;
  }
  .fv__text {
    font-size: 3.5897vw;
  }
  .fv__contents.is-slide-1 .fv__alex-badge {
    display: block;
    position: absolute;
    left: max(8.0769vw, 1rem);
    bottom: calc(var(--fv-corner-bottom) + 0.1rem + var(--fv-toolbar-safe));
    width: 45vw;
    z-index: 2;
  }
  .fv-slider {
    .fv-slider__slide-viewport {
      /* 下側だけツールバー安全マージン分を確保し、角丸を隠れさせない */
      inset: 0 1rem var(--fv-toolbar-safe) 1rem;
    }
  }

  .fv .fv__pagination {
    right: max(8.0769vw, 1rem);
    bottom: calc(var(--fv-corner-bottom) + var(--fv-toolbar-safe));
    gap: .3126vw;
  }
  .fv__pagination-item {
    width: 8.2051vw;
    height: 8.2051vw;
    border: .0625rem dashed var(--color-white);
  }
  .fv__pagination-number {
    font-size: max(2.8205vw, .6875rem);
  }
  .fv__pagination-progress {
    width: 8.2051vw;
    height: 8.2051vw;
  }

  .fv__banners {
    flex-wrap: wrap;
    justify-content: center;
    gap: .625rem;
    position: static;
    /* スライド下端には--fv-toolbar-safe分の余白があるため、
       画像から見て0.625remになるようその分を差し引く */
    margin-top: calc(.625rem - var(--fv-toolbar-safe));
    padding-inline: 1rem;
  }
  .fv__banner {
    width: 27.5rem;
    max-width: 100%;
    height: fit-content;
    align-items: center;
    aspect-ratio: unset;
    img {
      width: 6rem;
      height: 6rem;
      flex: 0 1 6rem;
    }
  }
  .fv-banner__texts {
    flex: 1;
    padding: 1rem;
  }
  .fv-banner__title {
    font-size: 1.125rem;
  }
  .fv-banner__en {
    font-size: .75rem;
    margin-top: 1.17rem;
    position: absolute;
    bottom: 1rem;
    right: 2rem;
  }
  .fv-banner__en::after {
    width: 0.5rem;
    right: -1rem;
  }
}

/* =========== */
/* common */
/* =========== */
section {
  padding-block: 5.25rem;
}
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


@media screen and (max-width: 767px) {
  section {
    padding-block: 2.5rem;
  }
  .section__head {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.2rem;
  }

}

/* ============== */
/* section:お知らせ・リリース情報 */
/* ============== */
.news {
  padding-top: 7.5rem;
}
.news__inner {
  display: flex;
  align-items: stretch;
  gap: 6.25%;
}
.news__head {
  flex: 0 1 12.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.news__lead {
  flex: 0 1 15.625%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
.news__label {
  font-size: clamp(2rem, 1.257rem + 3.05vw, 4rem);
  font-family: var(--font-family-ja);
  font-weight: 100;
  line-height: 0.7;
  color: #C8CFD5;
}
.news__head-botton {
  font-size: 1rem;
  padding-inline: 1rem;
  margin-top: 6.4rem;
  width: 100%;
}
.news__head-botton.for-sp {
  display: none;
}
.news__desc {
  font-size: 1.125rem;
  color: var(--color-black);
  line-height: 1.5;
}
.news__list-wrap {
  flex: 1;
  min-width: 0;
  margin-top: .0625rem;
  max-width: 62.5rem;
  width: 100%;
}
.news__list {
  width: 100%;
}
.news__item a {
  display: flex;
  align-items: center;
  height: 5rem;
  padding-inline: 1rem;
  border-top: .0625rem solid var(--color-gray);
}
.news__item a:hover,
.news__item a:focus-visible {
  opacity: 1;
}
.news__item:last-child {
  border-bottom: .0625rem solid var(--color-gray);
}

#moreList .news__item:first-of-type a {
  border-top: none;
}
.js-more-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.js-more-list.is-open {
  max-height: 2000px;
}

.news__meta {
  flex: 0 1 12.25rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  height: 3rem;
  padding-right: 1rem;
}
.news__date {
  font-size: .875rem;
  font-weight: 400;
  line-height: 2;
  color: var(--color-black);
  white-space: nowrap;
}
.news__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6.25rem;
  min-height: 1.625rem;
  padding: 0 1rem;
  border-radius: 12.5rem;
  background-color: var(--color-badge-bg);
  font-size: .875rem;
  color: var(--color-black);
  white-space: nowrap;
}
.news__divider {
  width: .0625rem;
  height: 1.5rem;
  background-color: var(--color-gray);
  flex-shrink: 0;
}
.news__title {
  flex: 1;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-black);
  transition: color 0.3s;
}
.news__item a:hover .news__title,
.news__item a:focus-visible .news__title {
  color: var(--color-brand-blue);
}
.news__button-more {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  border-radius: 0 0 .5rem .5rem;
  padding-inline: 2rem;
  height: 2.5rem;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .news {
    padding-top: 5rem;
  }
  .news__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .news__head {
    gap: 1.5rem;
    flex: unset;
  }
  .news__lead {
    flex: auto;
    gap: 1.25rem;
  }
  .news__meta {
    height: auto;
  }
  .news__item a {
    display: block;
    padding-block: .9063rem 1.0625rem;
    height: auto;
  }
  .news__divider {
    display: none;
  }
  .news__title {
    font-size: .875rem;
    padding-left: 0;
    margin-top: 1.3125rem;
    line-height: 2;
  }
  .news__head-botton {
    width: fit-content;
    margin-top: 0.5rem;
    margin-inline: auto;
    padding-inline: 1.75rem;
  }
  .news__head-botton.for-sp {
    display: flex;
  }
}

/* ================== */
/* section:選ばれる理由 */
/* ================== */
.reason__inner {
  max-width: 1280px;
  margin-inline: auto;
}
.reason__lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 4.6rem;
}
.reason__list {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 30rem;
  background-color: var(--color-panel);
  border-radius: .75rem;
  overflow: hidden;
  position: relative;
}

.reason__media {
  flex: 0 1 50%;
  background-color: var(--color-placeholder);
  width: 100%;
  align-self: stretch;
  position: relative;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.link-underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.reason__media--left {
  border-radius: .75rem 0 0 .75rem;
}
.reason__media--right {
  border-radius: 0 .75rem .75rem 0;
}
.reason__content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding-inline: clamp(1.25rem, -0.175rem + 2.97vw, 2.5rem);
}
.reason__content--left {
  border-radius: .75rem 0 0 .75rem;
}
.reason__content--right {
  border-radius: 0 .75rem .75rem 0;
}
.reason__content-body {
  color: var(--color-black);
}
.reason__content-title {
  font-size: clamp(1.25rem, 1.064rem + 0.76vw, 1.75rem);
  line-height: 2;
}
.reason__content-text {
  margin-top: .875rem;
}
.reason__content-text p {
  font-size: 1rem;
  line-height: 2;
}
.reason__number {
  position: absolute;
  top: 1.25rem;
  right: 2rem;
  font-weight: 100;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gray);
}
.reason__button {
  margin-inline: auto;
  margin-top: 5rem;
}

@media screen and (max-width: 1280px) {
  .reason__number {
    position: static;
    margin-bottom: 0.5rem;
  }
  .reason__button {
    margin-top: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .reason__lists {
    margin-top: 2rem;
  }
  .reason__list {
    flex-direction: column;
    height: auto;
    padding: 1.25rem;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }
  .reason__list:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .reason__media {
    width: 100%;
    height: auto;
    border-radius: .75rem;
    img {
      position: static;
      height: auto;
      transform: none;
    }
  }
  .reason__content {
    flex: none;
    padding: 2.3125rem 1.5rem;
    width: 100%;
  }
  .reason__number {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
  }
}

/* ====================== */
/* section:サッと勤怠 Width */
/* ====================== */
section.width {
  padding-top: 6rem;
}
.width__container {
  background-color: #F4F4F3;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
.width__image {
  flex: 0 1 50%;
  overflow: hidden;
  width: 100%;
  height: stretch;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.width__contents {
  height: 100%;
  flex: 1;
  padding: 2.5rem;
}
.width__title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2.5rem;
}
.width__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1rem;
}
.width__button {
  margin-top: 2.25rem;
  padding-inline: 2.4375rem;
}

@media screen and (max-width: 767px) {
  section.width {
    padding-top: 2.5rem;
  }
  .width__container {
    display: block;
  }
  .width__image {
    width: 100%;
  }
  .width__contents {
    height: auto;
    padding: 2.8438rem 1.5rem;
  }
  .width__logo {
    width: 12.5rem;
  }
  .width__title {
    font-size: 1.125rem;
    text-align: left;
    margin-top: 1.5rem;
  }
  .width__text {
    text-align: left;
    margin-top: 1rem;
    line-height: 1.8;
  }
  .width__button {
    margin-inline: auto;
    margin-top: 1.5rem;
  }
}

/* ====================== */
/* section:ナビゲーションCTA */
/* ====================== */
.navCTA {
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .navCTA {
    padding-top: 2.5rem;
    margin-inline: 1rem;
  }
}

/* =============== */
/* 導入事例 */
/* =============== */
.case {
  .section__label {
    line-height: 1;
  }
}
.case__contents {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
}
.case__side {
  padding-right: 2rem;
  border-right: .0625rem solid #C8CFD5;
  margin-left: 5vw;
  flex: 0 1 15.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-side__buttons {
  display: grid;
  gap: 1.15rem;
}
.case-side__button {
  color: rgb(26 26 26 / 0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: .5rem;
  width: 100%;
  text-align: left;
  position: relative;
}
.case-side__button::after {
  content: "";
  background-color: var(--color-brand-blue);
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.case-side__button.is-active,
.case-side__button:hover,
.case-side__button:focus-visible {
  color: var(--color-black);
}
.case-side__button.is-active::after,
.case-side__button:hover::after,
.case-side__button:focus-visible {
  opacity: 1;
}
.case__button {
  font-size: 1rem;
  margin-inline: auto;
  height: 3.125rem;
}

/* 右コンテンツ */
.case__content {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2rem;
  margin-top: .5rem;
  position: relative;
}
.caseCard__img {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.caseCard__category {
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1;
  padding: 0 1rem;
  border-radius: 12.5rem;
  border: .0625rem solid #C8CFD5;
  width: fit-content;
  margin-top: 2rem;
  height: 1.5625rem;
}
.caseCard__title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}
.caseCard__text {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}
.case__button.for-sp {
  display: none;
}

/* スライダー */
.case__content:has(.js-voice-swiper) {
  overflow: visible;
}
.js-voice-swiper {
  .swiper-button-next {
    z-index: 3;
  }
  .swiper-button-prev {
    z-index: 3;
  }
}
.case__content .swiper-button-disabled {
  pointer-events: auto;
}
.swiper-horizontal {
  &.swiper-rtl .swiper-button-next, &.swiper-rtl~.swiper-button-next, &~.swiper-button-prev, .swiper-button-prev {
    left: -1.375rem;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl~.swiper-button-prev, &~.swiper-button-next, .swiper-button-next {
    right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .js-voice-swiper {
    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }
  }
  .swiper-horizontal {
    &.swiper-rtl .swiper-button-next, &.swiper-rtl~.swiper-button-next, &~.swiper-button-prev, .swiper-button-prev {
      left: 0;
    }
    &.swiper-rtl .swiper-button-prev, &.swiper-rtl~.swiper-button-prev, &~.swiper-button-next, .swiper-button-next {
      right: 0;
    }
  }
}

/* カテゴリ絞り込み */
.js-hidden {
  display: none;
}
.caseEmpty {
  font-size: .875rem;
  padding-block: 2.5rem;
}

@media screen and (max-width: 767px) {
  .case { 
    padding-top: 2rem;
  }
  .case__contents {
    flex-direction: column;
    padding-inline: 1rem;
    margin-top: 2.5rem;
  }
  .case__button {
    margin-top: 1rem;
    font-size: 1.125rem;
    width: 15rem;
  }
  .case__content {
    flex: none;
    overflow-x: visible;
    padding-inline: 1.1875rem;
  }
  .caseCard__category {
    margin-top: 1.5rem;
  }
  .caseCard__text {
    margin-top: 0.75rem;
  }

  /* セレクトボックス風 */
  .selectMenu {
    position: relative;
    width: 100%;
    min-height: 3rem;
  }
  .selectMenu__lists {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #C8CFD5;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }
  .selectMenu__button {
    color: inherit;
    display: none;
    width: 100%;
    font-size: 1.125rem;
    padding: .625rem 2.5rem .625rem 1.375rem;
    background: inherit;
    text-align: left;
    cursor: pointer;
  }
  .selectMenu__button.is-active {
    display: block;
  }
  .selectMenu__button.is-active::after {
    background: url(../../images/pages/top/icon-arrow--blue.svg) no-repeat center center / contain;
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    transform: rotate(90deg);
  }
  .selectMenu.is-open .selectMenu__button {
    display: block;
  }
  .selectMenu.is-open .selectMenu__button.is-active::after {
    transform: rotate(270deg);
  }
  .case__button.for-sp {
    display: flex;
  }

	.faq {
		padding-inline: 1rem;
	}
}



/* =============== */
/* ユーティリティ */
/* =============== */
.mt-16 {
  margin-top: 1rem;
}