/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .masa-mv                 - MVラッパー（参考サイトの95%幅・border-radius20px）
 * .masa-mv__slide          - MVスライド内コンテンツ
 * .masa-mv__catch          - MVキャッチコピーエリア
 * .masa-contact-cta        - フッター前CTA（bg-image + blur overlay）
 * .masa-cta-tel            - CTAの電話番号スタイル
 * .masa-cta-hours          - CTAの受付時間テキスト
 * .masa-service-card       - 事業内容バナーカード（hover時blur + title出現）
 * .masa-works-gallery      - 施工実績ギャラリー
 * .masa-access-map         - アクセスマップエリア
 * .masa-logo-text          - テキストロゴスタイル
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * - MVの95%幅・border-radius・catch絶対配置パターン（構造不足）
 * - サービスカードのblur-hover演出（状態不足）
 * - CTAの写真背景+blur overlay（値の粒度不足：bg-overlay--lightのblur量）
 * - テキストロゴの多行構成（構造不足）
 *
 */

/* ======================
   フォント
   ====================== */
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.font-en,
.heading__en,
.header__nav-en,
.sp-nav__en,
.heading-big .heading__en,
.btn-cta-tel {
  font-family: "Inter", sans-serif;
}

/* ======================
   テキストロゴ
   ====================== */
.masa-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo__name {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: #853257;
  letter-spacing: 0.05em;
}

.header-logo__sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.12em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.header-logo--dark .header-logo__name {
  color: #fff;
}

.header-logo--dark .header-logo__sub {
  color: rgba(255, 255, 255, 0.6);
}

/* ======================
   ヘッダー
   ====================== */
.header-bar {
  box-shadow: 0 2px 12px rgba(133, 50, 87, 0.08);
}

.header__nav-item a {
  transition: color 0.3s ease;
}

.header__nav-ja {
  font-size: 1.5rem;
}

.header__nav-item a:hover .header__nav-en,
.header__nav-item a:hover .header__nav-ja {
  color: #853257;
}

.header__nav-item--current a .header__nav-en,
.header__nav-item--current a .header__nav-ja {
  color: #853257;
}

/* ======================
   メインビジュアル
   ====================== */
.masa-mv {
  position: relative;
  width: 95%;
  margin: 80px auto 0;
  border-radius: 20px;
  overflow: hidden;
}

.masa-mv #slideshow {
  position: relative;
  height: 80vh;
}

@media (max-width: 1200px) {
  .masa-mv #slideshow {
    height: 50vw;
  }
}

@media (max-width: 896px) {
  .masa-mv {
    width: calc(100% - 30px);
    border-radius: 10px;
  }
  .masa-mv #slideshow {
    height: 50vh;
  }
}

@media (max-width: 639px) {
  .masa-mv {
    width: calc(100% - 20px);
  }
  .masa-mv #slideshow {
    height: 40vh;
  }
}

.masa-mv .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.masa-mv .main_slider__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.masa-mv .main_slider__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: masa-kenburns 11s linear forwards;
}

@keyframes masa-kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.07); }
}

/* MV キャッチコピー */
.masa-mv__catch {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  filter: drop-shadow(0 2px 8px rgba(45, 26, 36, 0.4));
}

.masa-mv__catch.is-visible {
  opacity: 1;
}

.masa-mv__catch-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #E5F0A5;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.masa-mv__catch-main {
  display: block;
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.3;
  background: rgba(133, 50, 87, 0.75);
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.masa-mv__catch-sub {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  background: rgba(45, 26, 36, 0.55);
  padding: 6px 16px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

@media (max-width: 896px) {
  .masa-mv__catch {
    bottom: 20px;
    left: 20px;
  }
  .masa-mv__catch-main {
    font-size: 2.4rem;
  }
  .masa-mv__catch-sub {
    font-size: 1.2rem;
  }
}

@media (max-width: 639px) {
  .masa-mv__catch {
    bottom: 12px;
    left: 12px;
  }
  .masa-mv__catch-main {
    font-size: 1.8rem;
    padding: 6px 14px;
  }
  .masa-mv__catch-en {
    font-size: 1.1rem;
  }
  .masa-mv__catch-sub {
    font-size: 1rem;
    padding: 4px 12px;
  }
}

/* ======================
   コンセプト／ABOUT セクション
   ====================== */
.masa-about-inner {
  position: relative;
}

.masa-about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.masa-about-photos__item {
  overflow: hidden;
  border-radius: 10px;
}

.masa-about-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masa-about-photos__item:hover img {
  transform: scale(1.05);
}

.masa-about-photos__item--large {
  grid-row: span 2;
}

@media (max-width: 639px) {
  .masa-about-photos {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .masa-about-photos__item--large {
    grid-row: span 1;
  }
}

/* ======================
   事業内容セクション イラスト
   ====================== */
.masa-svc-section {
  position: relative;
  overflow: visible;
}

.masa-svc-illust {
  position: absolute;
  top: 117px;
  width: 220px;
  pointer-events: none;
  z-index: 1;
}

.masa-svc-illust--left {
  left: max(16px, calc(50% - 600px + 50px));
}

.masa-svc-illust--right {
  right: max(16px, calc(50% - 600px + 50px));
}

@media (max-width: 1024px) {
  .masa-svc-illust {
    display: none;
  }
}

/* ======================
   事業内容バナーカード
   ====================== */
.masa-service-card__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.masa-service-card__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.masa-service-card__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75) blur(2px);
}

.masa-service-card__wbox {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(45, 26, 36, 0.85) 0%, transparent 100%);
  transition: background 0.4s ease;
}

.masa-service-card__item:hover .masa-service-card__wbox {
  background: linear-gradient(to top, rgba(133, 50, 87, 0.9) 0%, rgba(133, 50, 87, 0.5) 60%, transparent 100%);
}

.masa-service-card__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.masa-service-card__title-ja {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

.masa-service-card__title-en {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #E5F0A5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* hidden-icon（ホバーで出る装飾アイコン） */
.masa-service-card__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.masa-service-card__item:hover .masa-service-card__icon {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 639px) {
  .masa-service-card__item img {
    height: 220px;
  }
}

/* ======================
   施工実績カード
   ====================== */
.masa-works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 896px) {
  .masa-works-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .masa-works-gallery {
    grid-template-columns: 1fr;
  }
}

.masa-works-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(133, 50, 87, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masa-works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(133, 50, 87, 0.2);
}

.masa-works-card__img {
  overflow: hidden;
}

.masa-works-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masa-works-card:hover .masa-works-card__img img {
  transform: scale(1.06);
}

.masa-works-card__body {
  padding: 16px 18px;
}

.masa-works-card__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #853257;
  background: #fdf0f5;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.masa-works-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

/* ======================
   お問い合わせCTAセクション
   ====================== */
.masa-contact-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.masa-contact-cta::before,
.masa-contact-cta::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.masa-contact-cta::before {
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28180/f_contact.jpg") no-repeat center center / cover;
  z-index: 0;
}

.masa-contact-cta::after {
  background: rgba(45, 26, 36, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.masa-cta__inner {
  position: relative;
  z-index: 2;
}

.masa-cta__title {
  font-size: 4.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  line-height: 1.2;
}

.masa-cta__en {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
}

.masa-cta__desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin: 0 0 56px;
}

.masa-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}

.masa-cta__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 10px 32px 24px;
  transition: opacity 0.25s;
}

.masa-cta__btn:hover {
  opacity: 0.75;
}

.masa-cta__icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.masa-cta__icon-wrap i {
  font-size: 3rem;
  color: #fff;
}

.masa-cta__num {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #E5F0A5;
  letter-spacing: 0.04em;
  line-height: 1;
}

.masa-cta__label {
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.masa-cta__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

.masa-cta__divider {
  width: 1px;
  height: 130px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 896px) {
  .masa-contact-cta {
    padding: 72px 0;
  }
  .masa-cta__title {
    font-size: 3.2rem;
  }
  .masa-cta__btns {
    max-width: 100%;
  }
  .masa-cta__btn {
    padding: 10px 16px 20px;
    gap: 10px;
  }
  .masa-cta__num {
    font-size: 1.5rem;
  }
  .masa-cta__label {
    font-size: 2rem;
  }
  .masa-cta__icon-wrap {
    width: 68px;
    height: 68px;
  }
  .masa-cta__icon-wrap i {
    font-size: 2.4rem;
  }
  .masa-cta__divider {
    height: 100px;
  }
}

/* ======================
   アクセスセクション
   ====================== */
.masa-access-map .embed iframe {
  border-radius: 10px;
}

.masa-access-info {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(133, 50, 87, 0.08);
}

.masa-access-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}

.masa-access-info dt {
  font-weight: 700;
  color: #853257;
  white-space: nowrap;
}

.masa-access-info dd {
  color: #333;
}

/* ======================
   フッター追加スタイル
   ====================== */
.footer-body__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-body__nav-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-body__nav-item a:hover {
  color: #E5F0A5;
}

/* ======================
   スマホ固定ボタン
   ====================== */
.sp-fixed-bar {
  background: #2d1a24;
  border-top: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding-top: 0;
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}

.sp-fixed-bar__item {
  position: relative;
}

.sp-fixed-bar__item + .sp-fixed-bar__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.sp-fixed-bar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 4px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sp-fixed-bar__link i {
  font-size: 2rem;
}

.sp-fixed-bar__link:hover {
  color: #E5F0A5;
  background: rgba(255, 255, 255, 0.05);
}

/* ======================
   ページヒーロー - 下層ページ共通
   ====================== */
.masa-page-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 100px;
  padding-left: max(24px, calc((100% - 1320px) / 2 + 24px));
  padding-right: max(24px, calc((100% - 1320px) / 2 + 24px));
  background: #853257;
  color: #fff;
  overflow: hidden;
  text-align: left;
  margin-top: 80px;
}

.masa-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(229, 240, 165, .18), transparent 60%),
    radial-gradient(50% 80% at 10% 90%, rgba(69, 95, 255, .25), transparent 60%);
  pointer-events: none;
}

.masa-page-hero__crumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.masa-page-hero__crumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.masa-page-hero__crumb a:hover {
  color: #E5F0A5;
}

.masa-page-hero__en {
  position: relative;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3em;
  color: #E5F0A5;
  text-transform: uppercase;
  margin-bottom: 0;
}

.masa-page-hero__ja {
  position: relative;
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin: 8px 0 0;
}

@media (max-width: 896px) {
  .masa-page-hero {
    padding-top: 84px;
    padding-bottom: 64px;
    margin-top: 80px;
  }
  .masa-page-hero__ja {
    font-size: 38px;
  }
}

/* ======================
   ウェーブディバイダー（セクション区切り）
   ====================== */
.masa-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.masa-wave svg {
  display: block;
  width: 100%;
}

/* ======================
   section 見出し共通
   ====================== */
.heading__en {
  color: #853257;
}

.section-accent-bg {
  background: #f0f7e0;
}

/* ======================
   会社概要ページ - 代表挨拶
   ====================== */
.masa-greeting-wrap {
  position: relative;
}

.masa-greeting-photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.masa-greeting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masa-greeting-sign {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #853257;
  margin-top: 20px;
  text-align: right;
  letter-spacing: 0.1em;
}

/* ======================
   事業内容ページ
   ====================== */
.masa-service-detail-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #e8d5e0;
}

.masa-service-detail-item:last-child {
  border-bottom: none;
}

.masa-service-detail-item:nth-child(even) {
  flex-direction: row-reverse;
}

.masa-service-detail__img {
  flex-shrink: 0;
  width: 380px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.masa-service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masa-service-detail__body {
  flex: 1;
}

.masa-service-detail__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #853257;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E5F0A5;
}

.masa-service-detail__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
}

@media (max-width: 896px) {
  .masa-service-detail-item {
    flex-direction: column !important;
    gap: 20px;
  }
  .masa-service-detail__img {
    width: 100%;
    height: 220px;
  }
}

/* ======================
   施工実績ページ - ギャラリーセクション
   ====================== */
.masa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 896px) {
  .masa-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .masa-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.masa-gallery-grid__item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #000;
}

.masa-gallery-grid__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0.92;
}

.masa-gallery-grid__item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* ======================
   お問い合わせフォーム
   ====================== */
.masa-form-table {
  width: 100%;
  border-collapse: collapse;
}

.masa-form-table tr {
  border-bottom: 1px solid #e8d5e0;
}

.masa-form-table th {
  width: 200px;
  padding: 20px 16px;
  font-weight: 700;
  color: #853257;
  vertical-align: top;
  text-align: left;
}

.masa-form-required {
  display: inline-block;
  background: #853257;
  color: #fff;
  font-size: 1rem;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.masa-form-table td {
  padding: 20px 16px;
}

.masa-form-table input[type="text"],
.masa-form-table input[type="email"],
.masa-form-table input[type="tel"],
.masa-form-table textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8d5e0;
  border-radius: 6px;
  font-size: 1.5rem;
  font-family: inherit;
  background: #fdf5f9;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.masa-form-table input:focus,
.masa-form-table textarea:focus {
  outline: none;
  border-color: #853257;
  background: #fff;
}

.masa-form-table textarea {
  height: 180px;
  resize: vertical;
}

@media (max-width: 639px) {
  .masa-form-table th {
    display: block;
    width: 100%;
    padding: 16px 16px 4px;
  }
  .masa-form-table td {
    display: block;
    padding: 4px 16px 16px;
  }
}

/* ======================
   会社概要テーブル
   ====================== */
.masa-company-table {
  width: 100%;
  border-collapse: collapse;
}

.masa-company-table tr {
  border-bottom: 1px solid #e8d5e0;
}

.masa-company-table th {
  width: 180px;
  padding: 18px 16px;
  font-weight: 700;
  color: #853257;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}

.masa-company-table td {
  padding: 18px 16px;
  line-height: 1.7;
}

.masa-company-table td a {
  color: #853257;
}

@media (max-width: 639px) {
  .masa-company-table th {
    display: block;
    width: 100%;
    padding: 14px 16px 4px;
  }
  .masa-company-table td {
    display: block;
    padding: 4px 16px 14px;
  }
}

/* ======================
   スクロールアニメーション補助
   ====================== */
.masa-mv__catch {
  transition-delay: 0.6s;
}

/* ======================
   会社概要 - アクセスマップ小見出し
   ====================== */
.masa-access-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d1a24;
  letter-spacing: 0.05em;
  margin: 48px 0 20px;
  padding-left: 12px;
  border-left: 4px solid #853257;
}

/* ======================
   CMSフォーム カスタム
   ====================== */
.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
    background: #853257 !important;
}

.form-pattern-2 .submit-btn {
    background: #853257 !important;
    border: 1px solid #853257 !important;
}

.form-pattern-2 :not(.pattern-exclusion) button:hover {
    color: #FFFFFF !important;
}

.form-pattern-2 .submit-btn:hover::before {
    background-color: #fff !important;
}

.form-pattern-2 dd:not(.pattern-exclusion) .upload-msg button::before {
    background-color: #ffffff !important;
}

.sp-nav__en {
  font-size: 1.5rem;
}

@media (max-width: 639px) {
  .footer-body__col--sitemap {
    display: none;
  }
}

.sp-nav__link::after {
  margin-left: 10px;
}

@media (max-width: 896px) {
  .page-top {
    bottom: 76px;
  }
}

.header__nav-item--current a::after {
  width: unset;
}

@media (max-width: 639px) {
  .masa-thanks__lead,
  .masa-thanks__note {
    text-align: left;
  }
}
