/* 
 * Seibii Shaken Service Page Styles
 * Exact values extracted from SCSS source files in seibii-portal
 * 
 * Color Variables (from scss/global/color.scss):
 * - Primary 400: rgb(3 170 148 / 100%)
 * - Primary 600: rgb(0 141 117 / 100%)
 * - Primary 200: rgb(124 206 192 / 100%)
 * - Primary 50: rgb(223 243 240 / 100%)
 * - Orange 300: rgb(252 136 28 / 100%)
 * - Orange 50: rgb(255 243 232 / 100%)
 * - Secondary 300: rgb(255 184 57 / 100%)
 * - Gray 50: rgb(238 244 243 / 100%)
 * - Gray 100: rgb(228 238 237 / 100%)
 * - Black 87: rgb(33 33 33 / 100%)
 * - Black 56: rgb(112 112 112 / 100%)
 * - Black 26: rgb(189 189 189 / 100%)
 * - Black 12: rgb(224 224 224 / 100%)
 * - White: rgb(255 255 255 / 100%)
 * 
 * Font (from scss/global/font.scss):
 * - Font family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif
 * - Bold font family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif
 * 
 * Variables (from scss/global/variable.scss):
 * - Shadow: 0 4px 8px rgb(0 0 0 / 12%)
 * - Border: 1px solid rgb(224 224 224 / 100%)
 * - Content max width: 1024px
 * - Header height mobile: 76px
 * - Header height pc: 120px
 */

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
  background: rgb(238 244 243 / 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   Global Header - from scss/component/header/header.scss
   ======================================== */
.l-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 4.75rem; /* 76px */
}

@media (min-width: 1024px) {
  .l-header {
    height: 7.5rem; /* 120px */
  }
}

.c-header {
  border-bottom: 1px solid rgb(224 224 224 / 100%);
  background: rgb(255 255 255 / 100%);
  height: 100%;
}

.c-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.c-header__nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.5rem; /* 8px */
}

.c-header__nav-right {
  display: flex;
  align-items: center;
  margin: auto 0.5rem auto auto;
  gap: 0.75rem; /* 12px */
}

.c-header__toggle {
  width: 2.5rem; /* 40px */
  height: 2.5rem; /* 40px */
  margin: 0.5rem; /* 8px */
  padding: 0.5rem; /* 8px */
}

.c-header__menu-icon {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
}

.c-header__logo {
  display: block;
  cursor: pointer;
}

.c-header__logo img {
  width: 6.5rem; /* 104px */
  height: 2.25rem; /* 36px */
}

.c-header__search--pc {
  display: none;
}

.c-header__modal-item--hidden {
  display: none;
}

/* Search Box */
.c-search-box {
  display: flex;
  align-items: center;
  background: rgb(238 244 243 / 100%);
  border-radius: 1.5rem; /* 24px */
  padding: 0.5rem 1rem; /* 8px 16px */
  min-width: 23.75rem; /* 380px */
}

.c-search-box__icon {
  display: inline-block;
  flex-shrink: 0;
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  margin-right: 0.5rem; /* 8px */
  background-color: rgb(112 112 112 / 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.c-search-box__input {
  border: none;
  background: transparent;
  font-size: 0.875rem; /* 14px */
  color: rgb(112 112 112 / 100%);
  width: 100%;
  outline: none;
}

.c-search-box__input::placeholder {
  color: rgb(189 189 189 / 100%);
}

/* Chat Button - from scss/component/header/chat-button.scss */
.c-header__chat-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.125rem; /* 2px */
  width: 3.75rem; /* 60px */
  height: 3.75rem; /* 60px */
  background: rgb(3 170 148 / 100%);
  color: rgb(255 255 255 / 100%);
  padding: 0.5rem 0 0.25rem; /* 8px 0 4px */
  border-radius: 0.5rem; /* 8px */
  font-size: 0.625rem; /* 10px */
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.c-header__chat-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 1.375rem; /* 22px */
  height: 1.375rem; /* 22px */
  background-color: rgb(255 255 255 / 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") center / 1.375rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") center / 1.375rem no-repeat;
}

/* Login Button - from scss/component/header/login-button.scss */
.c-header__login-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.125rem; /* 2px */
  width: 3.75rem; /* 60px */
  height: 3.75rem; /* 60px */
  background: rgb(252 136 28 / 100%);
  color: rgb(255 255 255 / 100%);
  padding: 0.5rem 0 0.25rem; /* 8px 0 4px */
  border-radius: 0.5rem; /* 8px */
  font-size: 0.625rem; /* 10px */
  font-weight: bold;
}

.c-header__login-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 1.375rem; /* 22px */
  height: 1.375rem; /* 22px */
  background-color: rgb(255 255 255 / 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center / 1.375rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center / 1.375rem no-repeat;
}

/* Header List (Navigation Menu) - from scss/component/header/list.scss */
.c-header-list {
  display: none;
  margin-bottom: 1rem; /* 16px */
  border-top: 1px solid rgb(224 224 224 / 100%);
}

.c-header-list__item {
  font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
  position: relative;
  border-bottom: 1px solid rgb(224 224 224 / 100%);
  cursor: default;
}

.c-header-list__item:hover,
.c-header-list__item:active {
  color: rgb(3 170 148 / 100%);
}

.c-header-list__item--flex {
  display: flex;
}

.c-header-list__item-title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  position: relative;
  padding: 0.75rem 1rem; /* 12px 16px */
  cursor: pointer;
}

.c-header-list__item-title::after {
  content: "";
  position: absolute;
  right: 1.25rem; /* 20px */
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  background-color: rgb(33 33 33 / 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") center / 0.75rem 0.5625rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") center / 0.75rem 0.5625rem no-repeat;
}

.c-header-list__item-title-link {
  font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  position: relative;
  padding: 0.75rem 1rem; /* 12px 16px */
  color: rgb(33 33 33 / 100%);
  display: block;
  cursor: pointer;
}

.c-header-list__item-title-link:hover,
.c-header-list__item-title-link:active {
  color: rgb(3 170 148 / 100%);
}

.c-header-list__item-title-link--sublink {
  font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  background-color: rgb(238 244 243 / 100%);
  border-radius: 0.25rem; /* 4px */
  padding: 0.25rem 0.625rem; /* 4px 10px */
  margin: 0 0.25rem; /* 0 4px */
  color: rgb(33 33 33 / 100%);
}

/* PC Header Styles */
@media (min-width: 1024px) {
  .c-header {
    padding: 1rem 3rem 0.5rem; /* 16px 48px 8px */
    border-bottom: none;
  }

  .c-header__nav {
    flex-wrap: wrap;
    height: auto;
    width: 64rem; /* 1024px */
    margin: 0 auto;
  }

  .c-header__nav-left {
    column-gap: 1rem; /* 16px */
  }

  .c-header__nav-right {
    margin-right: 0;
    gap: 1rem; /* 16px */
  }

  .c-header__toggle {
    display: none;
  }

  .c-header__search--pc {
    display: block;
  }

  .c-header__modal-item--hidden {
    display: block;
    width: 100%;
  }

  .c-header-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    border-top: unset;
    column-gap: 2rem; /* 32px */
  }

  .c-header-list__item {
    border-bottom: unset;
    position: static;
  }

  .c-header-list__item--flex {
    margin-left: auto;
  }

  .c-header-list__item-title {
    font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: bold;
    height: auto;
    padding: 0.75rem 1.25rem 0.75rem 0; /* 12px 20px 12px 0 */
  }

  .c-header-list__item-title::after {
    right: 0;
  }

  .c-header-list__item-title-link {
    font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: bold;
    border: unset;
    padding: 0;
  }

  .c-header-list__item-title-link--sublink {
    font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
    font-size: 0.75rem; /* 12px */
    font-weight: normal;
    background-color: rgb(238 244 243 / 100%);
    border-radius: 0.25rem; /* 4px */
    padding: 0.25rem 0.625rem; /* 4px 10px */
    margin: 0 0.25rem; /* 0 4px */
  }

  /* PC Chat Button - horizontal layout */
  .c-header__chat-button {
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem; /* 8px 12px */
    border-radius: 0.25rem; /* 4px */
    gap: 0.5rem; /* 8px */
    font-size: 0.75rem; /* 12px */
  }

  /* PC Login Button - horizontal layout */
  .c-header__login-button {
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem; /* 8px 12px */
    border-radius: 0.25rem; /* 4px */
    gap: 0.5rem; /* 8px */
    font-size: 0.75rem; /* 12px */
  }
}

/* ========================================
   Breadcrumb - positioned inside hero section
   ======================================== */
.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  padding: 0.75rem 1rem; /* 12px 16px */
  font-size: 0.75rem; /* 12px */
  color: rgb(112 112 112 / 100%);
  background: transparent;
}

.c-breadcrumb__link {
  color: rgb(3 170 148 / 100%);
}

.c-breadcrumb__separator {
  color: rgb(189 189 189 / 100%);
}

.c-breadcrumb__current {
  color: rgb(33 33 33 / 100%);
}

@media (min-width: 1024px) {
  .c-breadcrumb {
    max-width: 64rem; /* 1024px */
    margin: 0 auto;
    padding: 0.75rem 0; /* 12px 0 */
  }
}

/* Page Container - from scss/page/user/service-shaken/index.scss */
.pg-service-shaken {
  background: rgb(238 244 243 / 100%);
  min-height: 100vh;
}

/* ========================================
   First View - from scss/page/user/service-shaken/fv.scss
   ======================================== */
.pg-service-shaken-fv {
  position: relative;
  z-index: 1;
  background: url("https://seibii.co.jp/images/services/shaken/fv-bg_sp.svg") top center/cover no-repeat;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pg-service-shaken-fv {
    background: url("https://seibii.co.jp/images/services/shaken/fv-bg_pc.svg") top left/contain no-repeat;
    background-color: rgb(238 244 243 / 100%);
  }
}

.pg-service-shaken-fv__kv--sp {
  display: block;
}

.pg-service-shaken-fv__kv--sp-sub {
  width: max(9.625rem, 30vw); /* 154px */
  position: absolute;
  top: 1rem; /* 16px */
  right: -1.5rem; /* -24px */
}

.pg-service-shaken-fv__kv--sp-sub img {
  width: 100%;
  vertical-align: bottom;
}

.pg-service-shaken-fv__kv--sp-main {
  max-height: calc(11.25rem + 1.25rem + 5.6rem); /* 180px + 20px + 89.6px */
}

.pg-service-shaken-fv__kv--sp-main img {
  width: 100%;
  vertical-align: bottom;
}

.pg-service-shaken-fv__kv--pc {
  display: none;
  position: absolute;
}

@media (min-width: 1024px) {
  .pg-service-shaken-fv__kv--pc {
    display: block;
  }
}

.pg-service-shaken-fv__kv--pc img {
  width: 100%;
}

.pg-service-shaken-fv__kv--pc-main {
  width: 37.5rem; /* 600px */
  max-width: 30vw;
  height: 100%;
  right: 0;
  top: 0;
}

.pg-service-shaken-fv__kv--pc-main img {
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

.pg-service-shaken-fv__kv--pc-sub1 {
  width: 15rem; /* 240px */
  height: 15rem; /* 240px */
  top: 1rem; /* 16px */
  left: min(-5rem, -18vw); /* -80px */
}

.pg-service-shaken-fv__kv--pc-sub2 {
  width: 10.875rem; /* 174px */
  height: 10.875rem; /* 174px */
  left: min(-12rem, -24vw); /* -192px */
  bottom: 0;
}

.pg-service-shaken-fv__content {
  position: relative;
  padding: 5rem 1.5rem 1.5rem; /* 80px 24px 24px */
}

.pg-service-shaken-fv__title {
  color: rgb(3 170 148 / 100%);
  margin-bottom: 1.5rem; /* 24px */
}

.pg-service-shaken-fv__title-sub {
  font-family: Arial, "Hiragino Kaku Gothic Std", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
  margin-bottom: 0.75rem; /* 12px */
}

.pg-service-shaken-fv__title-main {
  font-family: Arial, "Hiragino Kaku Gothic Std", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 2.75rem; /* 44px */
  line-height: 1.5;
  letter-spacing: 0.125rem; /* 2px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-fv__title-main small {
  font-family: Arial, "Hiragino Kaku Gothic Std", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 2.25rem; /* 36px */
  color: rgb(3 170 148 / 100%);
}

.pg-service-shaken-fv__title-main strong {
  font-family: Arial, "Hiragino Kaku Gothic Std", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 3.5rem; /* 56px */
  letter-spacing: 0.375rem; /* 6px */
  color: rgb(3 170 148 / 100%);
}

.pg-service-shaken-fv__lead {
  font-family: Arial, "Hiragino Kaku Gothic ProN W3", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  letter-spacing: 0.125rem; /* 2px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-fv__lead strong {
  background: linear-gradient(transparent 50%, rgb(255 252 177 / 100%) 0%);
}

/* PC styles for First View */
@media (min-width: 1024px) {
  .pg-service-shaken-fv__kv--pc {
    display: block;
  }

  .pg-service-shaken-fv__kv--sp {
    display: none;
  }

  .pg-service-shaken-fv__content {
    width: fit-content;
    margin: 0 auto;
    padding: 5rem 0 3.75rem; /* 80px 0 60px */
    text-align: center;
  }

  .pg-service-shaken-fv__title {
    text-align: center;
    margin-bottom: 2.5rem; /* 40px */
  }

  .pg-service-shaken-fv__title-sub {
    font-size: 1.75rem; /* 28px */
    line-height: 2.25rem; /* 36px */
  }

  .pg-service-shaken-fv__title-main {
    letter-spacing: 0.5rem; /* 8px */
  }

  .pg-service-shaken-fv__title-main br {
    display: none;
  }

  .pg-service-shaken-fv__title-main small {
    letter-spacing: 0.5rem; /* 8px */
  }

  .pg-service-shaken-fv__lead {
    font-size: 1.125rem; /* 18px */
    text-align: center;
  }

  .pg-service-shaken-fv__lead br:nth-of-type(odd) {
    display: none;
  }
}

/* ========================================
   CTA - from scss/page/user/service-shaken/cta.scss
   ======================================== */
.pg-service-shaken-cta__wrapper,
.pg-service-shaken-cta__wrapper--gray,
.pg-service-shaken-cta__wrapper--sp,
.pg-service-shaken-cta__wrapper--pc {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

.pg-service-shaken-cta__wrapper--gray {
  background: rgb(238 244 243 / 100%);
}

.pg-service-shaken-cta__wrapper--padding {
  padding-top: 0;
}

.pg-service-shaken-cta__wrapper--pc {
  display: none;
}

.pg-service-shaken-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  padding: 1.5rem; /* 24px */
}

.pg-service-shaken-cta {
  text-align: center;
}

.pg-service-shaken-cta__lead,
.pg-service-shaken-cta__lead--orange {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  margin-bottom: 0.5rem; /* 8px */
}

.pg-service-shaken-cta__lead {
  color: rgb(3 170 148 / 100%);
}

.pg-service-shaken-cta__lead--orange {
  color: rgb(252 136 28 / 100%);
}

.pg-service-shaken-cta__button--primary,
.pg-service-shaken-cta__button--orange {
  display: block;
  width: min(100%, 19rem); /* 304px */
  height: 3.25rem; /* 52px */
  padding: 0.875rem 1.125rem; /* 14px 18px */
  border-radius: 1.75rem; /* 28px */
  border: none;
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  position: relative;
  margin: 0 auto;
}

.pg-service-shaken-cta__button--primary::after,
.pg-service-shaken-cta__button--orange::after {
  content: "";
  position: absolute;
  right: 0.5rem; /* 8px */
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
  mask: url("https://seibii.co.jp/images/ver/4/icons/material/arrow-forward.svg") center / 0.5rem no-repeat;
  background-color: rgb(255 255 255 / 100%);
}

.pg-service-shaken-cta__button--primary {
  background: rgb(3 170 148 / 100%);
  color: rgb(255 255 255 / 100%);
}

.pg-service-shaken-cta__button--primary:hover {
  background: rgb(0 141 117 / 100%);
}

.pg-service-shaken-cta__button--orange {
  background: rgb(252 136 28 / 100%);
  color: rgb(255 255 255 / 100%);
}

.pg-service-shaken-cta__button--orange:hover {
  background: rgb(247 205 126 / 100%);
}

/* PC styles for CTA */
@media (min-width: 1024px) {
  .pg-service-shaken-cta__wrapper--sp {
    display: none;
  }

  .pg-service-shaken-cta__wrapper--pc {
    display: block;
  }

  .pg-service-shaken-cta__inner {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem; /* 24px */
    padding: 2rem 3rem; /* 32px 48px */
  }

  .pg-service-shaken-cta {
    flex: 0 0 auto;
    min-width: 18rem; /* 288px */
  }

  .pg-service-shaken-cta__button--primary,
  .pg-service-shaken-cta__button--orange {
    width: auto;
    min-width: 18rem; /* 288px */
  }
}

/* ========================================
   Header Navigation - from scss/page/user/service-shaken/header-nav.scss
   ======================================== */
.pg-service-shaken-nav {
  position: sticky;
  top: 4.75rem; /* 76px - header height mobile */
  z-index: 100;
  background: rgb(255 255 255 / 100%);
  border-bottom: 1px solid rgb(224 224 224 / 100%);
  height: 3.5rem; /* 56px */
}

.pg-service-shaken-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 0;
}

.pg-service-shaken-nav__item {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(33 33 33 / 100%);
  cursor: pointer;
  position: relative;
  padding-bottom: 1.75rem; /* 28px */
}

.pg-service-shaken-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.875rem; /* 14px */
  transform: translateX(-50%);
  width: 0.875rem; /* 14px */
  height: 0.5rem; /* 8px */
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2215%22%20viewBox%3D%220%200%2024%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.9998%209.14191L4.35782%201.49991C3.52982%200.671906%202.18582%200.671906%201.35782%201.49991C0.529816%202.32791%200.529816%203.67191%201.35782%204.49991L10.5858%2013.7279C11.3678%2014.5099%2012.6338%2014.5099%2013.4138%2013.7279L22.6418%204.49991C23.4698%203.67191%2023.4698%202.32791%2022.6418%201.49991C21.8138%200.671906%2020.4698%200.671906%2019.6418%201.49991L11.9998%209.14191Z%22%20fill%3D%22%23212121%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2215%22%20viewBox%3D%220%200%2024%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.9998%209.14191L4.35782%201.49991C3.52982%200.671906%202.18582%200.671906%201.35782%201.49991C0.529816%202.32791%200.529816%203.67191%201.35782%204.49991L10.5858%2013.7279C11.3678%2014.5099%2012.6338%2014.5099%2013.4138%2013.7279L22.6418%204.49991C23.4698%203.67191%2023.4698%202.32791%2022.6418%201.49991C21.8138%200.671906%2020.4698%200.671906%2019.6418%201.49991L11.9998%209.14191Z%22%20fill%3D%22%23212121%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  background-color: rgb(3 170 148 / 100%);
}

.pg-service-shaken-nav__item--no-arrow::after {
  display: none;
}

/* PC styles for Navigation */
@media (min-width: 1024px) {
  .pg-service-shaken-nav {
    top: 7.5rem; /* 120px - header height pc */
    height: 5.375rem; /* 86px */
  }

  .pg-service-shaken-nav__list {
    justify-content: center;
    padding: 0;
    gap: 5.5rem; /* 88px */
  }

  .pg-service-shaken-nav__item {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
    padding-bottom: 0;
    padding-right: 2.875rem; /* 46px */
  }

  .pg-service-shaken-nav__item::after {
    left: auto;
    right: 1rem; /* 16px */
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

/* ========================================
   Section Component - from scss/component/section.scss
   ======================================== */
.c-section {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

.c-section--gray {
  background: rgb(238 244 243 / 100%);
}

.c-section__inner {
  padding: 2rem 1.5rem; /* 32px 24px */
}

.c-section__inner--gapped {
  display: flex;
  flex-flow: column;
  gap: 1.5rem; /* 24px */
  padding: 2rem 1.5rem; /* 32px 24px */
}

.c-section__content {
  margin-top: 2rem; /* 32px */
  margin-bottom: 1rem; /* 16px */
}

.c-section__subitem {
  margin-top: 2rem; /* 32px */
}

.c-section__inner > .c-section__subitem:first-child {
  margin-top: 0;
}

.c-section__heading {
  text-align: center;
}

.c-section__heading__sub {
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(112 112 112 / 100%);
  margin-bottom: 0.5rem; /* 8px */
}

.c-section__heading__main {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
  color: rgb(33 33 33 / 100%);
}

.c-section__title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  line-height: 1.625rem; /* 26px */
  border-left: 4px solid rgb(3 170 148 / 100%);
  padding-left: 0.75rem; /* 12px */
  margin-bottom: 1rem; /* 16px */
}

/* PC styles for Section */
@media (min-width: 1024px) {
  .c-section__inner {
    padding-left: 3rem; /* 48px */
    padding-right: 3rem; /* 48px */
  }

  .c-section__inner--gapped {
    padding-left: 3rem; /* 48px */
    padding-right: 3rem; /* 48px */
  }

  .c-section__heading__main {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
  }
}

/* SE styles */
@media (max-width: 374px) {
  .c-section__inner,
  .c-section__inner--gapped {
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */
  }
}

/* ========================================
   Introduction Video - from scss/page/user/service-shaken/introduction-video.scss
   ======================================== */
.pg-service-shaken-introduction {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

.pg-service-shaken-introduction__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: rgb(33 33 33 / 100%);
  border-radius: 0.5rem; /* 8px */
  overflow: hidden;
}

.pg-service-shaken-introduction__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pg-service-shaken-introduction__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Features - from scss/page/user/service-shaken/features.scss
   ======================================== */
.pg-service-shaken-features {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

.pg-service-shaken-features__list {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 32px */
  counter-reset: feature-counter;
}

.pg-service-shaken-features__item {
  background: rgb(238 244 243 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1.5rem 1rem; /* 24px 16px */
  text-align: center;
}

.pg-service-shaken-features__item-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* 8px */
  margin-bottom: 0.75rem; /* 12px */
}

.pg-service-shaken-features__item-title-icon {
  width: 5rem; /* 80px */
  height: auto;
}

.pg-service-shaken-features__item-title-main {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-features__item-summary {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(3 170 148 / 100%);
  margin-bottom: 1rem; /* 16px */
}

.pg-service-shaken-features__item-image {
  width: 100%;
  max-width: 18.75rem; /* 300px */
  margin: 0 auto 1rem; /* 0 auto 16px */
  display: block;
}

.pg-service-shaken-features__item-description {
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
  text-align: left;
}

/* PC styles for Features */
@media (min-width: 1024px) {
  .pg-service-shaken-features__list {
    flex-direction: row;
    gap: 1.5rem; /* 24px */
  }

  .pg-service-shaken-features__item {
    flex: 1;
    padding: 2rem 1.5rem; /* 32px 24px */
  }

  .pg-service-shaken-features__item-title-main {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
  }
}

/* ========================================
   Contact CTA - from scss/component/service/contact-cta.scss
   ======================================== */
.c-service-contact-cta {
  background: rgb(223 243 240 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1.5rem; /* 24px */
  text-align: center;
}

.c-service-contact-cta__title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  color: rgb(33 33 33 / 100%);
  margin-bottom: 1rem; /* 16px */
}

.c-service-contact-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
  margin-bottom: 1rem; /* 16px */
}

.c-service-contact-cta__button--tel,
.c-service-contact-cta__button--chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* 8px */
  padding: 0.75rem 1.5rem; /* 12px 24px */
  border-radius: 2rem; /* 32px */
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  text-decoration: none;
  transition: opacity 0.2s;
}

.c-service-contact-cta__button--tel {
  background: rgb(255 255 255 / 100%);
  color: rgb(3 170 148 / 100%);
  border: 2px solid rgb(3 170 148 / 100%);
}

.c-service-contact-cta__button--chat {
  background: rgb(3 170 148 / 100%);
  color: rgb(255 255 255 / 100%);
}

.c-service-contact-cta__button--tel:hover,
.c-service-contact-cta__button--chat:hover {
  opacity: 0.8;
}

.c-service-contact-cta__button-icon--tel,
.c-service-contact-cta__button-icon--chat {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-service-contact-cta__button-icon--tel {
  background-image: url("https://seibii.co.jp/images/ver/4/icons/material/phone.svg");
}

.c-service-contact-cta__button-icon--chat {
  background-image: url("https://seibii.co.jp/images/ver/4/icons/material/chat.svg");
  filter: brightness(0) invert(1);
}

.c-service-contact-cta__note {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
}

/* PC styles for Contact CTA */
@media (min-width: 1024px) {
  .c-service-contact-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem; /* 16px */
  }

  .c-service-contact-cta__button--tel,
  .c-service-contact-cta__button--chat {
    min-width: 15rem; /* 240px */
  }
}

/* ========================================
   Flow - from scss/page/user/service-shaken/flow.scss
   ======================================== */
.pg-service-shaken-flow {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

.pg-service-shaken-flow__wanted-box {
  background: rgb(255 243 232 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1.5rem; /* 24px */
  margin-bottom: 2rem; /* 32px */
}

.pg-service-shaken-flow__wanted-title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  color: rgb(252 136 28 / 100%);
  text-align: center;
  margin-bottom: 1rem; /* 16px */
}

.pg-service-shaken-flow__wanted-body {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
}

.pg-service-shaken-flow__wanted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; /* 8px */
  justify-content: center;
}

.pg-service-shaken-flow__wanted-list li {
  background: rgb(255 255 255 / 100%);
  border-radius: 1rem; /* 16px */
  padding: 0.25rem 0.75rem; /* 4px 12px */
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-flow__wanted-comment {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
  text-align: center;
}

.pg-service-shaken-flow__box {
  background: rgb(238 244 243 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1.5rem 1rem; /* 24px 16px */
}

.pg-service-shaken-flow__title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  line-height: 1.625rem; /* 26px */
  color: rgb(3 170 148 / 100%);
  text-align: center;
  margin-bottom: 1rem; /* 16px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem; /* 4px */
}

.pg-service-shaken-flow__title div {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
  font-weight: normal;
}

.pg-service-shaken-flow__note {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
  margin-bottom: 1rem; /* 16px */
}

.pg-service-shaken-flow__step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
}

.pg-service-shaken-flow__step-item {
  background: rgb(255 255 255 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1rem; /* 16px */
  display: flex;
  gap: 1rem; /* 16px */
  align-items: flex-start;
}

.pg-service-shaken-flow__step-img--sp {
  width: 5rem; /* 80px */
  height: auto;
  flex-shrink: 0;
}

.pg-service-shaken-flow__step-img--pc {
  display: none;
}

.pg-service-shaken-flow__step-content {
  flex: 1;
}

.pg-service-shaken-flow__step-tag-list {
  display: flex;
  gap: 0.5rem; /* 8px */
  margin-bottom: 0.5rem; /* 8px */
}

.pg-service-shaken-flow__step-tag--user,
.pg-service-shaken-flow__step-tag--seibii {
  font-size: 0.625rem; /* 10px */
  line-height: 1.125rem; /* 18px */
  padding: 0 0.5rem; /* 0 8px */
  border-radius: 0.25rem; /* 4px */
}

.pg-service-shaken-flow__step-tag--user {
  background: rgb(255 243 222 / 100%);
  color: rgb(252 136 28 / 100%);
}

.pg-service-shaken-flow__step-tag--seibii {
  background: rgb(223 243 240 / 100%);
  color: rgb(3 170 148 / 100%);
}

.pg-service-shaken-flow__step-title-container {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
}

.pg-service-shaken-flow__step-title--index {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
  color: rgb(3 170 148 / 100%);
}

.pg-service-shaken-flow__step-title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-flow__box-comment {
  background: rgb(255 255 255 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1rem; /* 16px */
  margin-top: 1rem; /* 16px */
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
  text-align: center;
}

.pg-service-shaken-flow__plus {
  width: 2rem; /* 32px */
  height: 2rem; /* 32px */
  margin: 1rem auto; /* 16px auto */
  position: relative;
}

.pg-service-shaken-flow__plus::before,
.pg-service-shaken-flow__plus::after {
  content: "";
  position: absolute;
  background: rgb(3 170 148 / 100%);
  border-radius: 0.125rem; /* 2px */
}

.pg-service-shaken-flow__plus::before {
  width: 100%;
  height: 0.25rem; /* 4px */
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.pg-service-shaken-flow__plus::after {
  width: 0.25rem; /* 4px */
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* PC styles for Flow */
@media (min-width: 1024px) {
  .pg-service-shaken-flow__wanted-body {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .pg-service-shaken-flow__step-list {
    flex-direction: row;
    gap: 0.75rem; /* 12px */
  }

  .pg-service-shaken-flow__step-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .pg-service-shaken-flow__step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.75rem; /* -12px */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.5rem 0 0.5rem 0.5rem; /* 8px */
    border-color: transparent transparent transparent rgb(224 224 224 / 100%);
  }

  .pg-service-shaken-flow__step-img--sp {
    display: none;
  }

  .pg-service-shaken-flow__step-img--pc {
    display: block;
    width: 6rem; /* 96px */
    height: auto;
    margin-bottom: 0.5rem; /* 8px */
  }

  .pg-service-shaken-flow__step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pg-service-shaken-flow__step-title-container {
    flex-direction: column;
    gap: 0.25rem; /* 4px */
  }
}

/* ========================================
   Mechanics - from scss/page/user/service-shaken/mechanics.scss
   ======================================== */
.pg-service-shaken-mechanics {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

.pg-service-shaken-mechanics__box {
  background: rgb(238 244 243 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1.5rem 1rem; /* 24px 16px */
}

.pg-service-shaken-mechanics__list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  margin-top: 2rem; /* 32px */
}

.pg-service-shaken-mechanics__item {
  background: rgb(255 255 255 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1rem; /* 16px */
  box-shadow: 0 4px 8px rgb(0 0 0 / 12%);
}

.pg-service-shaken-mechanics__item-head {
  display: flex;
  gap: 1rem; /* 16px */
  align-items: flex-start;
  margin-bottom: 0.75rem; /* 12px */
}

.pg-service-shaken-mechanics__item-image-wrapper {
  width: 4rem; /* 64px */
  height: 4rem; /* 64px */
  border-radius: 50%;
  flex-shrink: 0;
}

.pg-service-shaken-mechanics__item-content {
  flex: 1;
}

.pg-service-shaken-mechanics__item-career {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  margin-bottom: 0.25rem; /* 4px */
}

.pg-service-shaken-mechanics__item-career img {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
}

.pg-service-shaken-mechanics__item-career span {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
}

.pg-service-shaken-mechanics__item-name {
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-mechanics__item-name strong {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
}

.pg-service-shaken-mechanics__item-description {
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
}

.pg-service-shaken-mechanics__message-box {
  background: rgb(223 243 240 / 100%); /* primary 50 */
  border-radius: 0.5rem; /* 8px */
  padding: 1rem 1rem 0; /* 16px 16px 0 - from SCSS */
  text-align: center;
}

.pg-service-shaken-mechanics__message-box > p {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 1rem; /* 16px - from SCSS */
  font-weight: bold;
  line-height: 1.5rem; /* 24px */
  color: rgb(3 170 148 / 100%); /* primary 400 - green */
  margin-bottom: 0.5rem; /* 8px - from SCSS */
}

.pg-service-shaken-mechanics__message-box > img {
  width: 14.375rem; /* 230px - from SCSS */
  display: block;
  margin: 0 auto;
}

.pg-service-shaken-mechanics__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
}

.pg-service-shaken-mechanics__contact-button--tel-icon--secondary,
.pg-service-shaken-mechanics__contact-button--chat-icon--secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* 8px */
  padding: 0.75rem 1.5rem; /* 12px 24px */
  border-radius: 2rem; /* 32px */
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  text-decoration: none;
  transition: opacity 0.2s;
}

.pg-service-shaken-mechanics__contact-button--tel-icon--secondary {
  background: rgb(255 255 255 / 100%);
  color: rgb(255 184 57 / 100%);
  border: 2px solid rgb(255 184 57 / 100%);
}

.pg-service-shaken-mechanics__contact-button--chat-icon--secondary {
  background: rgb(255 184 57 / 100%);
  color: rgb(255 255 255 / 100%);
}

.pg-service-shaken-mechanics__contact-button--tel-icon--secondary:hover,
.pg-service-shaken-mechanics__contact-button--chat-icon--secondary:hover {
  opacity: 0.8;
}

/* PC styles for Mechanics */
@media (min-width: 1024px) {
  .pg-service-shaken-mechanics__box {
    padding: 2rem 3rem; /* 32px 48px */
  }

  .pg-service-shaken-mechanics__list {
    flex-direction: row;
    gap: 1.5rem; /* 24px */
  }

  .pg-service-shaken-mechanics__item {
    flex: 1;
    padding: 1.5rem; /* 24px */
  }

  .pg-service-shaken-mechanics__contact {
    flex-direction: row;
    justify-content: center;
    gap: 1rem; /* 16px */
  }

  .pg-service-shaken-mechanics__contact-button--tel-icon--secondary,
  .pg-service-shaken-mechanics__contact-button--chat-icon--secondary {
    min-width: 15rem; /* 240px */
  }

  .pg-service-shaken-mechanics__message-box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem; /* 32px - from SCSS */
    padding: 0;
  }

  .pg-service-shaken-mechanics__message-box > p {
    order: 2;
    margin-bottom: 0;
    padding: 1rem 0; /* 16px 0 - from SCSS */
    text-align: left;
  }

  .pg-service-shaken-mechanics__message-box > img {
    width: 12.5rem; /* 200px - from SCSS */
    margin: 0;
  }

  .pg-service-shaken-mechanics__contact {
    display: none; /* hidden on PC - from SCSS */
  }
}

/* ========================================
   Reviews - from scss/page/user/service-shaken/reviews.scss
   ======================================== */
.pg-service-reviews {
  background: rgb(255 255 255 / 100%);
  margin: 0.5rem auto 0; /* 8px auto 0 */
  width: min(100%, 64rem); /* 1024px */
}

/* ========================================
   c-review-stats - from scss/component/review/stats.scss
   ======================================== */
.c-review-stats {
  border: 1px solid rgb(224 224 224 / 100%); /* g.$var-normal-border */
  border-radius: 0.5rem; /* 8px */
  padding: 1.5rem; /* 24px */
}

.c-review-stats__header {
  align-items: center;
  display: flex;
  flex-flow: wrap column;
}

.c-review-stats__header__title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
}

.c-review-stats__header__average {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-size: 1.75rem; /* 28px */
  font-weight: bold;
  line-height: 2.25rem; /* 36px */
  padding-left: 2.375rem; /* 38px */
  position: relative;
}

.c-review-stats__header__average::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem; /* 30px */
  height: 1.875rem; /* 30px */
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/star.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: rgb(255 184 57 / 100%); /* secondary 300 */
}

.c-review-stats__header__count {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  margin-top: 0.25rem; /* 4px */
}

.c-review-stats__content {
  border-top: 1px solid rgb(224 224 224 / 100%);
  margin-top: 1.5rem; /* 24px */
}

.c-review-stats__title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
}

.c-review-stats__histogram-wrap {
  margin-top: 1.5rem; /* 24px */
}

.c-review-stats__histogram {
  align-items: center;
  display: flex;
  margin-top: 0.25rem; /* 4px */
}

.c-review-stats__histogram__star {
  width: 4.375rem; /* 70px = 14px * 5 */
  height: 0.875rem; /* 14px */
  position: relative;
}

.c-review-stats__histogram__star::before,
.c-review-stats__histogram__star > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.375rem; /* 70px */
  height: 0.875rem; /* 14px */
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/star.svg");
  mask-repeat: repeat-x;
  mask-size: 0.875rem; /* 14px */
}

.c-review-stats__histogram__star::before {
  background-color: rgb(224 224 224 / 100%); /* black 12 */
}

.c-review-stats__histogram__star > span {
  display: block;
  position: absolute;
  width: 4.375rem; /* 70px */
  height: 0.875rem; /* 14px */
  overflow: hidden;
}

.c-review-stats__histogram__star > span::before {
  background-color: rgb(255 184 57 / 100%); /* secondary 300 */
}

.c-review-stats__histogram__score {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  margin-left: 0.375rem; /* 6px */
}

.c-review-stats__histogram__count {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  display: block;
  margin-left: auto;
  text-align: right;
  width: 2.5rem; /* 40px */
}

.c-review-stats__histogram__meter {
  background: rgb(238 244 243 / 100%); /* gray 50 */
  border-radius: 0.3125rem; /* 5px */
  display: block;
  flex: 1;
  height: 0.875rem; /* 14px */
  margin-left: 0.75rem; /* 12px */
  margin-right: 0.75rem; /* 12px */
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.c-review-stats__histogram__meter__item {
  background: rgb(145 213 200 / 100%); /* primary 200 */
  border-radius: 0.3125rem 0 0 0.3125rem; /* 5px 0 0 5px */
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

.c-review-stats__histogram__link {
  display: block;
  margin-left: auto;
  cursor: pointer;
  color: rgb(3 170 148 / 100%); /* primary 400 */
  text-decoration: none;
}

.c-review-stats__histogram__link:hover {
  text-decoration: underline;
}

/* PC styles for c-review-stats */
@media (min-width: 1024px) {
  .c-review-stats {
    padding-left: 0;
    padding-right: 0;
  }

  .c-review-stats__content {
    border-top: none;
    margin-top: 0;
  }

  .c-review-stats__histogram-container {
    display: flex;
    justify-content: space-between;
  }

  .c-review-stats__histogram-wrap {
    padding: 0 4rem; /* 64px */
    width: 50%;
  }

  .c-review-stats__histogram-wrap:not(:first-child) {
    border-left: 1px solid rgb(224 224 224 / 100%);
  }

  .c-review-stats__histogram__meter {
    width: 8.75rem; /* 140px */
  }
}

/* ========================================
   c-review-list - from scss/component/list/review.scss
   ======================================== */
.c-review-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  margin: 2rem auto 1.5rem; /* 32px auto 24px */
}

.c-review-list > li {
  width: 100%;
}

/* ========================================
   c-review-card - from scss/component/card/review.scss
   ======================================== */
.c-review-card {
  background: rgb(255 255 255 / 100%);
  border: 1px solid rgb(224 224 224 / 100%);
  border-radius: 0.5rem; /* 8px */
  box-shadow: 0 4px 8px rgb(0 0 0 / 12%);
  padding: 1rem; /* 16px */
}

.c-review-card__header,
.c-review-card__content,
.c-review-card__footer {
  display: flex;
}

.c-review-card__header {
  align-items: flex-start;
  column-gap: 1rem; /* 16px */
}

.c-review-card__footer {
  align-items: center;
}

.c-review-card__content {
  flex-flow: wrap column;
  gap: 1.5rem; /* 24px */
  margin-top: 1.5rem; /* 24px */
}

.c-review-card__evaluation-list,
.c-review-card__comment,
.c-review-card__footer {
  margin-top: 1rem; /* 16px */
}

.c-review-card__avatar {
  width: 2rem; /* 32px */
  height: 2rem; /* 32px */
}

.c-review-card__avatar img {
  width: 100%;
}

.c-review-card__car-name,
.c-review-card__title,
.c-review-card__score {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
}

.c-review-card__location,
.c-review-card__service {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%); /* black 56 */
  margin-top: 0.25rem; /* 4px */
  min-height: 0.75rem; /* 12px */
  padding-left: 1.125rem; /* 18px */
  position: relative;
}

.c-review-card__location::before,
.c-review-card__service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem; /* 12px */
  height: 0.75rem; /* 12px */
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: rgb(112 112 112 / 100%); /* black 56 */
}

.c-review-card__location::before {
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/marker.svg");
}

.c-review-card__service::before {
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/maintenance.svg");
}

.c-review-card__location a,
.c-review-card__service a {
  color: rgb(112 112 112 / 100%);
  text-decoration: none;
}

.c-review-card__summary {
  align-items: center;
  display: flex;
}

.c-review-card__title {
  margin-right: 0.5rem; /* 8px */
}

.c-review-card__star {
  width: 4.375rem; /* 70px = 14px * 5 */
  height: 0.875rem; /* 14px */
  position: relative;
}

.c-review-card__star::before,
.c-review-card__star > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.375rem; /* 70px */
  height: 0.875rem; /* 14px */
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/star.svg");
  mask-repeat: repeat-x;
  mask-size: 0.875rem; /* 14px */
}

.c-review-card__star::before {
  background-color: rgb(224 224 224 / 100%); /* black 12 */
}

.c-review-card__star > span {
  display: block;
  position: absolute;
  width: 4.375rem; /* 70px */
  height: 0.875rem; /* 14px */
  overflow: hidden;
}

.c-review-card__star > span::before {
  background-color: rgb(255 184 57 / 100%); /* secondary 300 */
}

.c-review-card__score {
  margin-left: 0.75rem; /* 12px */
}

.c-review-card__evaluation-list {
  display: flex;
  gap: 0.5rem; /* 8px */
  flex-wrap: wrap;
}

.c-review-card__evaluation-list > li {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  border: 1px solid rgb(224 224 224 / 100%);
  border-radius: 0.25rem; /* 4px */
  color: rgb(112 112 112 / 100%); /* black 56 */
  padding: 0.25rem 0.5rem 0.25rem 1.75rem; /* 4px 8px 4px 28px */
  position: relative;
}

.c-review-card__evaluation-list > li::before {
  content: "";
  position: absolute;
  left: 0.75rem; /* 12px */
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem; /* 12px */
  height: 0.75rem; /* 12px */
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/checkmark.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: rgb(3 170 148 / 100%); /* primary 400 */
}

.c-review-card__comment {
  overflow-wrap: break-word;
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
}

.c-review-card__published-date {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%); /* black 56 */
}

.c-review-card__published-date--pc {
  display: none;
}

.c-review-card__more-link {
  margin-left: auto;
  padding-right: 1.125rem; /* 18px */
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(3 170 148 / 100%); /* primary 400 */
  text-decoration: none;
  position: relative;
}

.c-review-card__more-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem; /* 10px */
  height: 0.625rem; /* 10px */
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/arrow-forward.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: rgb(189 189 189 / 100%); /* black 26 */
}

.c-review-card__car-series-overview {
  max-width: 30rem; /* 480px */
  padding: 1rem 0; /* 16px 0 */
  margin: 1rem auto 0.5rem; /* 16px auto 8px */
  text-align: center;
  border-radius: 0.5rem; /* 8px */
  background: rgb(255 255 255 / 100%);
}

.c-review-card__car-series-overview img {
  max-width: 100%;
  height: auto;
}

/* PC styles for c-review-card */
@media (min-width: 1024px) {
  .c-review-card {
    padding: 1.5rem 2rem; /* 24px 32px */
  }

  .c-review-card__location,
  .c-review-card__service {
    display: inline-block;
  }

  .c-review-card__service {
    margin-left: 1rem; /* 16px */
  }

  .c-review-card__content {
    flex-flow: row;
  }

  .c-review-card__service-review,
  .c-review-card__mechanic-review {
    width: 50%;
  }

  .c-review-card__comment {
    margin-top: 1.5rem; /* 24px */
  }

  .c-review-card__published-date--pc {
    display: block;
    margin-left: auto;
  }

  .c-review-card__published-date--sp {
    display: none;
  }
}

/* ========================================
   FAQ List - from scss/component/list/faq.scss
   ======================================== */
.c-faq-list {
  margin-top: 2rem; /* 32px */
}

.c-faq-list li:not(:first-child) {
  margin-top: 1rem; /* 16px */
}

.c-faq-list__accordion {
  background: rgb(238 244 243 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1.125rem 1rem; /* 18px 16px */
}

.c-faq-list__accordion:hover {
  background: rgb(228 238 237 / 100%);
}

.c-faq-list__heading {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  cursor: pointer;
  padding: 0 2rem; /* 0 32px */
  position: relative;
}

.c-faq-list__heading::before {
  content: "Q";
  display: block;
  color: rgb(3 170 148 / 100%);
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  line-height: 1.375rem; /* 22px */
  position: absolute;
  left: 0;
  top: 0;
}

.c-faq-list__heading::after {
  content: "";
  position: absolute;
  right: 0.25rem; /* 4px */
  top: 0.25rem; /* 4px */
  width: 0.875rem; /* 14px */
  height: 1.125rem; /* 18px */
  background: url("https://seibii.co.jp/images/ver/4/icons/material/arrow-down.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.2s;
}

.c-faq-list__heading--on::after {
  top: 0.75rem; /* 12px */
  transform: translateY(-50%) rotate(180deg);
}

.c-faq-list__contents {
  display: none;
  margin-top: 0.625rem; /* 10px */
  padding: 0 2rem; /* 0 32px */
  position: relative;
}

.c-faq-list__contents::before {
  content: "A";
  display: block;
  color: rgb(189 189 189 / 100%);
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  line-height: 1.375rem; /* 22px */
  position: absolute;
  left: 0;
  top: 0;
}

.c-faq-list__contents--on {
  display: block;
}

.c-faq-list__text {
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
}

/* PC styles for FAQ */
@media (min-width: 1024px) {
  .c-faq-list__heading {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
  }
}

/* ========================================
   Notices Text
   ======================================== */
.c-notices-text {
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
}

.c-notices-text p {
  margin-bottom: 0.25rem; /* 4px */
}

/* ========================================
   Payment Method
   ======================================== */
.c-payment-method {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.c-payment-method__group {
  background: rgb(238 244 243 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1rem; /* 16px */
}

.c-payment-method__group-label {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(3 170 148 / 100%);
  margin-bottom: 0.5rem; /* 8px */
}

.c-payment-method__item-title {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
  margin-bottom: 0.5rem; /* 8px */
}

.c-payment-method__icons {
  display: flex;
  gap: 0.5rem; /* 8px */
  margin-top: 0.5rem; /* 8px */
}

.c-payment-method__icons img {
  height: 2rem; /* 32px */
  width: auto;
}

.c-payment-method__description {
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  color: rgb(33 33 33 / 100%);
  margin-bottom: 0.5rem; /* 8px */
}

.c-payment-method__description strong {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
}

.c-payment-method__description a {
  color: rgb(3 170 148 / 100%);
}

.c-payment-method__note {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
  margin-bottom: 0.5rem; /* 8px */
}

/* ========================================
   Cancel Policy
   ======================================== */
.c-cancel-policy {
  background: rgb(238 244 243 / 100%);
  border-radius: 0.5rem; /* 8px */
  padding: 1rem; /* 16px */
}

.c-cancel-policy__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* 8px */
  margin-bottom: 1rem; /* 16px */
}

.c-cancel-policy__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0; /* 8px 0 */
  border-bottom: 1px solid rgb(224 224 224 / 100%);
}

.c-cancel-policy__item dt {
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
}

.c-cancel-policy__item dd {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(33 33 33 / 100%);
}

.c-cancel-policy__notes {
  margin-top: 1rem; /* 16px */
}

.c-cancel-policy__notes p {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(112 112 112 / 100%);
  margin-bottom: 0.25rem; /* 4px */
}

.c-cancel-policy__notes a {
  color: rgb(3 170 148 / 100%);
}

/* ========================================
   Footer - from scss/project/footer.scss
   ======================================== */
.l-footer {
  margin-top: 2rem;
}

.p-footer {
  background: rgb(33 33 33 / 100%);
}

.p-footer__container {
  padding: 2rem 1.5rem; /* 32px 24px */
}

.p-footer__logo {
  margin-top: 2rem; /* 32px */
  vertical-align: middle;
  width: 8.5rem; /* 136px */
}

.p-footer__copyright {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: rgb(255 255 255 / 100%);
  display: block;
  margin-top: 1rem; /* 16px */
}

.p-footer__bottom {
  border-top: 1px solid rgb(153 153 153 / 100%);
  text-align: center;
}

.p-footer__nav {
  display: flex;
  flex-direction: column;
}

.p-footer__nav__column {
  margin-bottom: 1.5rem; /* 24px */
}

.p-footer__nav__heading {
  font-family: Arial, "Hiragino Kaku Gothic ProN W6", "Noto Sans CJK JP", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  color: rgb(255 255 255 / 100%);
  margin-bottom: 1rem; /* 16px */
}

.p-footer__nav__menu {
  margin-bottom: 2rem; /* 32px */
}

.p-footer__nav__menu li {
  margin-bottom: 0.5rem; /* 8px */
}

.p-footer__nav__menu a,
.p-footer__nav__menu a:active,
.p-footer__nav__menu a:visited {
  font-size: 0.875rem; /* 14px */
  line-height: 1.375rem; /* 22px */
  color: rgb(193 193 193 / 100%);
  text-decoration: none;
}

.p-footer__nav__menu a:hover {
  color: rgb(104 104 104 / 100%);
}

.p-footer__nav__menu a[target="_blank"]::after {
  content: "";
  background-color: rgb(193 193 193 / 100%);
  display: inline-block;
  height: 0.75rem; /* 12px */
  margin-left: 0.5rem; /* 8px */
  mask: url("https://seibii.co.jp/images/ver/4/icons/material/external-link.svg") left / contain no-repeat;
  width: 0.75rem; /* 12px */
}

.p-footer__nav__menu a[target="_blank"]:hover::after {
  background-color: rgb(104 104 104 / 100%);
}

.p-footer__sns {
  display: flex;
  column-gap: 1rem; /* 16px */
  margin: 2rem 0; /* 32px 0 */
}

.p-footer__sns__icon {
  width: 2rem; /* 32px */
  height: 2rem; /* 32px */
  background-color: rgb(255 255 255 / 100%);
  display: inline-block;
  mask: center / contain no-repeat;
}

.p-footer__sns__icon:hover {
  background-color: rgb(104 104 104 / 100%);
}

.p-footer__sns__icon--facebook {
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/sns-facebook.svg");
}

.p-footer__sns__icon--twitter {
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/sns-twitter_rounded.svg");
}

.p-footer__sns__icon--youtube {
  mask-image: url("https://seibii.co.jp/images/ver/4/icons/material/sns-youtube_rounded.svg");
}

/* PC styles for Footer */
@media (min-width: 1024px) {
  .p-footer__container {
    margin: 0 auto;
    padding: 3rem 0; /* 48px 0 */
    width: 64rem; /* 1024px */
  }

  .p-footer__logo {
    margin-top: 3rem; /* 48px */
  }

  .p-footer__nav {
    column-gap: 3rem; /* 48px */
    flex-direction: row;
  }

  .p-footer__nav__column {
    margin-bottom: 0;
  }

  .p-footer__nav__menu {
    margin-bottom: 0;
  }

  .p-footer__nav__menu + .p-footer__nav__heading {
    margin-top: 1.5rem; /* 24px */
  }

  .p-footer__bottom {
    margin-top: 2rem; /* 32px */
  }
}
