/* ===========================
   キーフレーム
=========================== */
@keyframes charArcLeft {
  0% {
    transform: translateX(-160%) rotate(-10deg);
    opacity: 0;
  }
  60% {
    transform: translateX(8%) rotate(20deg);
    opacity: 1;
  }
  80% {
    transform: translateX(-3%) rotate(12deg);
  }
  100% {
    transform: translateX(0) rotate(15deg);
    opacity: 1;
  }
}

@keyframes charArcRight {
  0% {
    transform: translateX(160%) rotate(10deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-8%) rotate(-20deg);
    opacity: 1;
  }
  80% {
    transform: translateX(3%) rotate(-12deg);
  }
  100% {
    transform: translateX(0) rotate(-15deg);
    opacity: 1;
  }
}

@keyframes charArcRightOut {
  0% {
    transform: translateX(0) rotate(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(160%) rotate(10deg);
    opacity: 0;
  }
}

/* ===========================
   カラー変数
=========================== */
:root {
  --color-primary: #0180CB;
  --color-primary-light: #7ECDF3;
  --color-bg-fv: #C4E8FF;
  --color-bg-pale: #E6F5FF;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #888888;
}

/* ===========================
   リセット・ベース
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

body {
  min-width: 375px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ===========================
   ハンバーガーボタン
=========================== */
.hamburger-button {
  position: fixed;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  z-index: 210;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;

  & .hamburger-button__line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 6px 2px rgba(1, 128, 203, 0.35);
  }

  &.is-open {
    & .hamburger-button__line {
      background: var(--color-primary);
      box-shadow: none;
    }

    & .hamburger-button__line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    & .hamburger-button__line:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    & .hamburger-button__line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
}

/* ===========================
   サイトナビ（SP: ドロワー / PC: 横並び）
=========================== */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 190;
  overflow-y: auto;
  padding-top: 72px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);

  &.is-open {
    transform: translateX(0);
  }

  & .site-nav__list {
    display: flex;
    flex-direction: column;
    padding: 0 20px 40px;
    list-style: none;
  }

  & .site-nav__item {
    border-bottom: 1px solid var(--color-bg-pale);
  }

  & .site-nav__link {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    background: none;
    border: none;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  & .site-nav__link--toggle {
    position: relative;

    &::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--color-primary-light);
      border-bottom: 2px solid var(--color-primary-light);
      transform: translateY(-65%) rotate(45deg);
      transition: transform 0.25s ease;
    }

    &.is-open::after {
      transform: translateY(-35%) rotate(-135deg);
    }
  }

  & .site-nav__sub-list {
    display: none;
    flex-direction: column;
    padding: 0 0 12px 12px;
    list-style: none;

    &.is-open {
      display: flex;
    }
  }

  & .site-nav__sub-link {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: var(--color-text);
    text-decoration: none;
  }
}

.site-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;

  &.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===========================
   ヘッダー
=========================== */
.site-header {
  padding: 14px 16px;
  background: transparent;

  & .site-header__inner {
    display: flex;
    align-items: center;
  }

  & .site-header__logo {
    line-height: 1;
  }

  & .site-header__logo-link {
    display: inline-block;
  }

  & .site-header__logo-image {
    height: 32px;
    width: auto;
  }
}

/* モバイルでは --no-logo ヘッダーのロゴを非表示 */
.site-header--no-logo {
  & .site-header__logo {
    display: none;
  }
}

/* ===========================
   FV
=========================== */
.fv {
  position: relative;
  background-color: var(--color-bg-fv);
  padding-bottom: 120px;

  & .fv__bg-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  & .fv__bg-right {
    position: absolute;
    top: -29%;
    left: 184px;
    width: 300px;
    height: 80%;
    background-image: url('../img/top_fv_bg-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
    pointer-events: none;
  }

  & .fv__bg-left {
    position: absolute;
    bottom: -30%;
    left: -86px;
    width: 300px;
    height: 80%;
    background-image: url('../img/top_fv_bg-2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    pointer-events: none;
  }

  & .fv__slider-wrap {
    padding: 28px 20px 0;
    position: relative;
    z-index: 5;
    max-width: 450px;
    margin-inline: auto;
  }

  & .fv__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--color-primary);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;

    &:hover {
      background: var(--color-bg-pale);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    &.fv__nav--prev {
      left: 8px;
    }

    &.fv__nav--next {
      right: 8px;
    }
  }

  & .fv__slider {
    width: 100%;
    overflow: hidden;
    background: var(--color-bg-fv);
  }

  & .fv__slide {
    width: 100%;
    background: var(--color-bg-fv);
  }

  & .fv__slide-inner {
    display: block;
    width: 100%;
    aspect-ratio: 297 / 210;
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-white);

    & .fv__slide-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .fv__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }

  & .fv__character-row {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    pointer-events: none;

    @media (min-width: 460px) {
      width: 460px;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
    }
  }

  & .fv__character {
    width: 125px;
    flex-shrink: 0;
    pointer-events: none;

    &.fv__character--left {
      opacity: 0;
      margin-left: -10px;

      &.is-animated {
        animation: charArcLeft 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
      }
    }

    &.fv__character--right {
      opacity: 0;
      margin-right: -10px;

      &.is-animated {
        animation: charArcRight 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
      }
    }

    & .fv__character-image {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  & .fv__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 12;

    & svg {
      display: block;
      width: 100%;
    }
  }
}

/* FVページネーション：白い丸 */
.fv__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-white);
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 !important;
}

.fv__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-white);
}

/* ===========================
   共通セクションタイトル
=========================== */
.section-title {
  text-align: center;
  margin-bottom: 28px;

  & .section-title__ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
  }

  & .section-title__en {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--color-primary-light);
    text-transform: uppercase;
    margin-top: 4px;
  }
}

/* ===========================
   お知らせセクション
=========================== */
.news-section {
  padding: 0 0 28px;
  margin-bottom: 60px;

  & .news-section__inner {
    padding: 0 16px;
  }

  & .news-section__slider {
    overflow: visible;
  }

  & .news-section__slide {
    width: 72%;
  }
}

.news-card {
  display: block;

  & .news-card__image-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-pale);

    & .news-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .news-card__body {
    padding: 10px 4px 0;
  }

  & .news-card__date {
    font-size: 12px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
  }

  & .news-card__badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
  }

  & .news-card__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text);
  }
}

.news-section__link-wrap {
  text-align: center;
  margin-top: 28px;
}

.news-section__more-link {
  display: inline-block;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ===========================
   商品セクション
=========================== */
.product-section {
  position: relative;
  padding: 0 0 100px;
  margin-bottom: 20px;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/bg_pattern-1.webp');
    background-repeat: repeat;
    background-size: 160px;
    opacity: 0.3;
    z-index: 0;
  }

  & .product-section__inner {
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  & .product-section__title-wrap {
    position: relative;
    z-index: 1;
    margin-inline: 0;
    margin-bottom: 60px;
    padding: 28px 16px;
    background: var(--color-primary-light);
    text-align: center;

    &::before {
      content: '';
      position: absolute;
      top: 14px;
      left: 0;
      right: 0;
      border-top: 2px dashed rgba(255, 255, 255, 0.85);
    }

    &::after {
      content: '';
      position: absolute;
      bottom: 14px;
      left: 0;
      right: 0;
      border-top: 2px dashed rgba(255, 255, 255, 0.85);
    }
  }

  & .product-section__title-en {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }

  & .product-section__title-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
  }

  & .product-section__grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 480px;
    margin-inline: auto;
  }

  & .product-section__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 0;

    & svg {
      display: block;
      width: 100%;
      height: 60px;
    }
  }
}

.product-card {
  position: relative;
  padding-top: 48px;

  & .product-card__circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--color-primary-light);
    top: -6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  & .product-card__label {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 3;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  & .product-card__link {
    position: relative;
    display: block;
    aspect-ratio: 297 / 210;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 6px 6px 0 0 var(--color-primary-light);
    z-index: 2;
  }

  & .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===========================
   お問い合わせセクション
=========================== */
.contact-section {
  position: relative;
  padding: 0 0 30px;

  /* 背景ドット・左上 */
  &::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -90px;
    width: 180px;
    height: 180px;
    background-image: url('../img/bg_dot-1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
  }

  /* 背景ドット・右下 */
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -90px;
    width: 180px;
    height: 180px;
    background-image: url('../img/bg_dot-1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
  }

  & .contact-section__inner {
    position: relative;
    padding: 0 20px;
    z-index: 1;
  }

  & .contact-section__title-wrap {
    position: relative;
    height: 130px;
    margin-bottom: 40px;
  }

  & .contact-section__title-icon {
    position: absolute;
    width: 65px;
    top: 55%;
    left: calc(52% + 20px);
    z-index: 3;
    pointer-events: none;
  }

  & .contact-section__circle--large {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--color-primary-light);
    top: 8%;
    left: calc(50% - 83px);
    z-index: 2;
  }

  & .contact-section__circle--small {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--color-primary-light);
    top: 17%;
    left: calc(50% - 3px);
    z-index: 2;
  }

  & .contact-section__title-text {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    white-space: nowrap;
  }

  & .contact-section__title-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
  }

  & .contact-section__title-en {
    font-size: 12px;
    color: var(--color-white);
    letter-spacing: 0.1em;
    margin-top: 2px;
  }

  & .contact-section__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 40px;
  }

  & .contact-section__arrow {
    text-align: center;

    & svg {
      width: 36px;
      height: auto;
    }
  }
}

.contact-item {

  & .contact-item__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-text);
    border-radius: 14px;
    box-shadow: 6px 6px 0 0 var(--color-bg-fv);
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
  }

  & .contact-item__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
  }

  & .contact-item__body {
    width: fit-content;
  }

  & .contact-item__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
  }

  & .contact-item__stitch {
    margin-top: 10px;
    border-top: 1.5px dashed var(--color-primary-light);
  }
}

/* ===========================
   CTAセクション
=========================== */
.cta-section {
  padding: 56px 20px;
  background-color: var(--color-bg-fv);
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('../img/cta-bg.webp');
    background-size: cover;
    background-position: center center;
    filter: blur(8px);
    opacity: 0.7;
    z-index: 0;
  }

  & .cta-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  & .cta-section__text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    -webkit-text-stroke: 7px var(--color-white);
    paint-order: stroke fill;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  & .cta-section__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: #63CAFC;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 56px;
    border-radius: 50px;
    min-width: 240px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.15);
  }

  & .cta-section__button-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #63CAFC;
    color: var(--color-white);
    border-radius: 50%;
    font-size: 14px;
  }
}

/* ===========================
   フッター
=========================== */
.site-footer {
  background: var(--color-primary-light);
  padding: 80px 16px 24px;

  & .site-footer__card {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    padding: 28px 34px 8px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-inline: auto;
  }

  & .site-footer__logo-wrap {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
  }

  & .site-footer__logo-image {
    width: 52px;
    height: auto;
    position: relative;
    top: -13px;
  }

  & .site-footer__list {
    position: relative;
    z-index: 1;
  }

  & .site-footer__item {
    border-bottom: 1px solid var(--color-bg-pale);
  }

  & .site-footer__item:has(> .site-footer__sub-list) > .site-footer__link {
    cursor: pointer;
    user-select: none;
  }

  & .site-footer__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
  }

  & .site-footer__icon {
    width: 17px;
    flex-shrink: 0;
  }

  & .site-footer__sub-list {
    display: none;
  }

  & .site-footer__item.is-open > .site-footer__sub-list {
    display: block;
  }

  & .site-footer__sub-item {
    border-bottom: 1px solid var(--color-bg-pale);
  }

  & .site-footer__sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0 12px 28px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
  }

  & .site-footer__sub-icon {
    width: 14px;
    flex-shrink: 0;
  }

  & .site-footer__copyright {
    font-size: 11px;
    color: var(--color-white);
    text-align: center;
  }

  & .site-footer__privacy-link {
    text-align: center;
    margin-top: 6px;

    & a {
      font-size: 11px;
      color: var(--color-white);
      opacity: 0.7;
      text-decoration: underline;
    }
  }
}

/* ===========================
   お知らせセクション
=========================== */
.news-section {
  background: var(--color-white);
  padding: 0 0 48px;

  & .news-section__inner {
    padding: 0 20px;
  }

  & .news-section__list {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-inline: auto;
  }
}

/* タイトルウラップ：.news-section・.fv-news どちらでも使えるよう独立 */
.news-section__title-wrap--link .news-section__circle,
.news-section__title-wrap--link .news-section__title-text {
  cursor: pointer;
}

.news-section__title-wrap {
  position: relative;
  height: 170px;
  margin-bottom: 8px;
}

.news-section__title-icon {
  position: absolute;
  width: 80px;
  top: 0%;
  left: 53%;
  z-index: 1;
  pointer-events: none;
}

.news-section__circle--large {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-bg-pale);
  top: 29%;
  left: calc(50% - 75px);
  z-index: 2;
}

.news-section__circle--small {
  position: absolute;
  width: 75px;
  height: 74px;
  border-radius: 50%;
  background: var(--color-bg-pale);
  top: 42%;
  left: calc(50% - 5px);
  z-index: 2;
}

.news-section__title-text {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}

.news-section__title-ja {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.news-section__title-en {
  font-size: 12px;
  color: var(--color-primary-light);
  letter-spacing: 0.1em;
  margin-top: 0px;
}

.news-item {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 14px 34px 14px 0;
  border-bottom: 1px solid var(--color-bg-pale);

  &::after {
    content: '›';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #3AAFD9;
    font-size: 24px;
    line-height: 1;
  }

  & .news-item__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  & .news-item__date {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
  }

  & .news-item__badge {
    display: inline-block;
    background: #C0E7FF;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
  }

  & .news-item__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
  }
}

/* ===========================
   お知らせ一覧ページ
=========================== */
.news-list-section {
  padding: 32px 24px 60px;
  background: url('../img/bg_pattern-2.webp') repeat;
}

.news-list-section__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
  margin-inline: auto;
}

.news-list-card {
  display: block;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 5px 5px 0 0 var(--color-primary-light);
  text-decoration: none;
  color: inherit;

  & .news-list-card__header {
    background: var(--color-white);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    padding: 14px 16px 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.10);
  }

  & .news-item__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  & .news-item__date {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
  }

  & .news-item__badge {
    display: inline-block;
    background: #C0E7FF;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
  }

  & .news-item__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
  }

  & .news-list-card__image-wrap {
    aspect-ratio: 297 / 210;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
  }

  & .news-list-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ===================================================
   PC用メディアクエリ（min-width: 768px）
   ※ セクションごとに分散させず、ここにまとめて記述
=================================================== */
@media (min-width: 768px) {

  /* ハンバーガーボタン非表示 */
  .hamburger-button {
    display: none;
  }

  /* ヘッダー（固定・横並び） */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 0 40px;
    height: 64px;
    z-index: 100;

    & .site-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      max-width: 1200px;
      margin-inline: auto;
    }

    & .site-header__logo-image {
      height: 36px;
    }

    &.site-header--no-logo {
      & .site-header__logo {
        display: block;
      }
    }
  }

  /* サイトナビ（PC: 横並び） */
  .site-nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    display: flex;
    align-items: center;

    & .site-nav__list {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 2px;
      padding: 0;
      list-style: none;
    }

    & .site-nav__item {
      border-bottom: none;
      position: relative;
    }

    & .site-nav__link {
      display: flex;
      align-items: center;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 700;
      color: var(--color-text);
      text-decoration: none;
      white-space: nowrap;
      border-radius: 6px;
      transition: background 0.2s;
      width: auto;

      &:hover {
        background: var(--color-bg-pale);
      }
    }

    & .site-nav__link--toggle::after {
      display: none;
    }

    & .site-nav__sub-list {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--color-white);
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      min-width: 150px;
      padding: 10px 0 6px;
      z-index: 200;
      list-style: none;
      flex-direction: column;
    }

    & .site-nav__item--has-sub:hover .site-nav__sub-list {
      display: flex;
    }

    & .site-nav__sub-link {
      display: block;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 500;
      color: var(--color-text);
      text-decoration: none;
      white-space: nowrap;

      &:hover {
        background: var(--color-bg-pale);
      }
    }
  }

  .site-nav__overlay {
    display: none;
  }

  /* 固定ヘッダー分のオフセット（page-heroがあるページ） */
  .site-main--product,
  .site-main--license,
  .site-main--news,
  .site-main--about,
  .site-main--oem,
  .site-main--contact,
  .site-main--detail {
    padding-top: 64px;
  }

  /* ページヒーロー */
  .page-hero {
    height: 160px;
  }

  /* PC専用：お知らせ + サブスライダーエリア */
  .fv-news {
    display: block;
    background: var(--color-white);
    padding: 20px 40px 120px;
    position: relative;
    z-index: 4;
  }

  .fv-news__inner {
    max-width: 760px;
    margin-inline: auto;
  }

  /* SP版お知らせセクション：PC非表示 */
  .news-section {
    display: none;
  }

  /* ページネーション：PC版水色表示 */
  .fv__pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }
  .fv__pagination .swiper-pagination-bullet {
    background: var(--color-primary-light);
    opacity: 0.5;
  }
  .fv__pagination .swiper-pagination-bullet-active {
    background: var(--color-primary-light);
    opacity: 1;
  }

  /* FV */
  .fv {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 0;
    background: var(--color-bg-fv);

    & .fv__bg-wrap {
      inset: 0;
    }

    & .fv__bg-right {
      top: -15%;
      left: auto;
      right: 0;
      width: 400px;
      max-width: 400px;
    }

    & .fv__bg-left {
      display: block;
      bottom: auto;
      top: 70%;
      transform: translateY(-30%);
      left: 0;
      width: 400px;
    }

    & .fv__character-row {
      display: flex;
      bottom: auto;
      top: 82%;
      transform: translate(-50%, -50%);
      width: 920px;
      left: 50%;
      right: auto;
    }

    & .fv__character {
      width: 180px;

      &.fv__character--left {
        margin-left: -120px;
      }

      &.fv__character--right {
        margin-right: -120px;
      }
    }

    & .fv__slider-wrap {
      max-width: 760px;
      margin-inline: auto;
      padding: 32px 0 0;

      & .fv__nav--prev {
        left: -64px;
      }

      & .fv__nav--next {
        right: -64px;
      }
    }

    & .fv__slider {
      background: transparent;
    }

    & .fv__slide {
      background: transparent;
    }

    & .fv__slide-inner {
      border-radius: 14px;
    }

    & .fv__wave {
      bottom: -60px;
      top: auto;
      z-index: 3;
    }
  }

  /* お知らせカードスライダー */
  .fv__thumbs-wrap {
    display: block;
    margin: 20px 0 0;
    position: relative;
  }

  .fv-news-slider {
    position: static;
  }

  .fv-news-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    transition: border-color 0.2s, color 0.2s;
    z-index: 10;

    &.fv-news-slider__nav--prev {
      left: -52px;
    }

    &.fv-news-slider__nav--next {
      right: -52px;
    }

    &:hover {
      border-color: var(--color-primary-light);
      color: var(--color-primary-light);
    }

    &.swiper-button-disabled {
      opacity: 0.35;
      pointer-events: none;
    }
  }

  .fv__thumbs {
    width: 100%;
  }

  .fv-news-slider__pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }
  .fv-news-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-primary-light);
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 !important;
  }
  .fv-news-slider__pagination .swiper-pagination-bullet-active {
    background: var(--color-primary-light);
    opacity: 1;
  }

  .fv-news-card {
    border-radius: 12px;
    overflow: hidden;

    & .fv-news-card__link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    & .fv-news-card__image-wrap {
      overflow: hidden;

      & img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
      }
    }

    & .fv-news-card__body {
      background: var(--color-bg-pale);
      padding: 12px 14px 14px;
    }

    & .fv-news-card__meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    & .news-item__date {
      color: var(--color-primary);
      font-weight: 700;
      font-size: 12px;
    }

    & .news-item__badge {
      display: inline-block;
      background: #C0E7FF;
      color: var(--color-primary);
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 3px;
      letter-spacing: 0.05em;
    }

    & .fv-news-card__title {
      font-size: 13px;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.5;
    }
  }

  /* セクションタイトル */
  .section-title {
    margin-bottom: 40px;

    & .section-title__ja {
      font-size: 26px;
    }

    & .section-title__en {
      font-size: 12px;
    }
  }

  /* お知らせ */
  .news-section {
    padding: 80px 0 100px;

    & .news-section__inner {
      padding: 0 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    & .news-section__slide {
      width: 30%;
    }
  }

  .news-card {
    & .news-card__title {
      font-size: 14px;
    }
  }

  /* お知らせ一覧ページ：横並びカード */
  .news-list-section {
    padding: 40px 40px 80px;
  }

  .news-list-section__inner {
    max-width: 720px;
    margin-inline: auto;
    gap: 20px;
  }

  .news-list-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 5px 5px 0 0 var(--color-primary-light);

    & .news-list-card__header {
      flex: 1;
      background: var(--color-white);
      border-radius: 0;
      box-shadow: none;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    & .news-item__title {
      font-size: 18px;
    }

    & .news-list-card__image-wrap {
      width: 200px;
      flex-shrink: 0;
      aspect-ratio: auto;
      border-radius: 10px;
      overflow: hidden;
    }
  }

  /* 商品 */
  .product-section {
    padding: 0 0 200px;

    & .product-section__title-wrap {
      padding: 28px 0;
      margin-bottom: 80px;

      &::before {
        top: 14px;
        left: 0;
        right: 0;
      }

      &::after {
        bottom: 14px;
        left: 0;
        right: 0;
      }
    }

    & .product-section__inner {
      padding: 0 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    & .product-section__title-ja {
      font-size: 24px;
    }

    & .product-section__grid {
      flex-direction: row;
      gap: 64px;
      max-width: 900px;
    }

    & .product-section__wave svg {
      height: 160px;
    }
  }

  .product-card {
    flex: 1;

    & .product-card__link {
      border-radius: 20px;
    }
  }

  /* お問い合わせ */
  .contact-section {
    padding: 0 0 80px;

    & .contact-section__inner {
      padding: 0 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    & .contact-section__title-ja {
      font-size: 24px;
    }

    & .contact-section__list {
      flex-direction: row;
      max-width: 960px;
      gap: 24px;
    }
  }

  .contact-item {
    flex: 1;

    & .contact-item__text {
      font-size: 14px;
    }

    & .contact-item__card {
      padding: 28px 20px;
      height: 100%;
    }
  }

  /* フッター */
  .site-footer {
    padding: 60px 40px 32px;

    & .site-footer__card {
      max-width: 800px;
      margin-inline: auto;
      padding: 16px 48px 16px;
    }

    & .site-footer__logo-wrap {
      top: -20px;
    }

    & .site-footer__list {
      column-count: 2;
      column-gap: 40px;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    & .site-footer__item {
      break-inside: avoid;
    }
  }

  /* ライセンス・オリジナル商品一覧：3列 */
  .license-section {
    & .license-section__inner {
      max-width: 1000px;
      padding: 0 40px;
    }

    & .license-section__grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

  /* お知らせ詳細ページ */
  .news-detail-bar {
    padding-inline: max(16px, calc((100vw - 840px) / 2));
  }

  .news-detail-mv {
    &::before {
      top: 313px;
      width: 200vw;
      height: 200vw;
    }
  }

  .news-detail-mv__wrap {
    max-width: 840px;
    padding-bottom: 40px;
  }

  .news-detail-content {
    max-width: 840px;
    padding: 32px 0 0;
  }

  .news-detail__title {
    font-size: 28px;
  }

  /* 会社情報ページ */
  .about-section__inner {
    max-width: 960px;
    margin-inline: auto;
  }

  .about-title__character {
    left: 53%;
    top: 50%;
  }

  .about-body {
    max-width: 760px;
  }

  .about-blue-area__wave svg {
    height: 90px;
  }

  .business-list {
    flex-direction: row;
    max-width: 1000px;
    padding: 24px 40px 0;
    gap: 20px;
  }

  .business-item {
    flex: 1;
  }

  .business-item__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    height: 100%;
    box-sizing: border-box;
  }

  .business-item__icon {
    width: 60px;
    height: 60px;
  }

  .business-item__divider {
    display: none;
  }

  .business-item__number {
    margin-top: 12px;
  }

  .company-table-wrap {
    max-width: 800px;
    margin: 24px auto 0;
  }

  .office-section {
    padding: 0 40px 64px;
  }

  .office-cards {
    flex-direction: row;
    max-width: 960px;
  }

  /* お知らせセクション下余白 */
  .news-section {
    padding-bottom: 160px;
  }

  /* お問い合わせセクション矢印を下に */
  .contact-section__arrow {
    margin-top: 60px;
  }

}

/* ===========================
   商品詳細ページ
=========================== */

/* 一覧に戻るボタン */
.detail-back {
  padding: 14px 16px 8px;
  background: var(--color-primary-light);
}

.detail-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  background: var(--color-white);
  border-radius: 50px;
  padding: 6px 16px 6px 12px;
}

/* メインスライダー */
.detail-mv {
  position: relative;
  padding: 16px 20px 0;
  overflow: hidden;
  background: var(--color-primary-light);

  /* 白い大きな丸がスライダー中央付近から下に覗く（∩弧） */
  &::before {
    content: '';
    position: absolute;
    top: calc(16px + (100vw - 40px) * 210 / 594);
    left: 50%;
    transform: translateX(-50%);
    width: 160vw;
    height: 160vw;
    border-radius: 50%;
    background: var(--color-white);
    z-index: 0;
  }
}

.detail-mv__wrap {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin-inline: auto;
  padding-bottom: 28px;
}

/* スライダー画像エリア（ナビボタンの基準） */
.detail-mv__slider-area {
  position: relative;
}

.detail-mv__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  line-height: 1;
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  &.detail-mv__nav--prev { left: -10px; }
  &.detail-mv__nav--next { right: -10px; }
}

.detail-mv__slide-inner {
  aspect-ratio: 297 / 210;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
}

.detail-mv__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-mv__pagination {
  text-align: center;
  margin-top: 16px;

  & .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-primary-light);
    opacity: 0.4;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  & .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

/* 商品名タイトル */
.detail-title-wrap {
  margin: 0 16px 24px;
  background: var(--color-primary-light);
  border-radius: 50px;
  padding: 12px 28px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.detail-title-sns {
  position: absolute;
  top: -25px;
  right: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.detail-title-sns__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
}

.detail-title-sns__item--x {
  background: #000;
}

.detail-title-sns__item--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.detail-title-sns__item--tiktok {
  background: #010101;
}

.detail-title-sns__item svg {
  width: 12px;
  height: 12px;
  display: block;
}

.detail-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}

/* 商品説明テキスト */
.detail-description {
  margin: 0 16px 40px;
  padding-left: 14px;
  border-left: 3px solid var(--color-primary-light);
}

.detail-description__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
}

/* CHECK セクション */
.detail-check {
  padding: 0 28px 60px;
}

.detail-check__bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;

  /* 左: 外側\(45deg) + 内側\(70deg=より縦・2px上) */
  &::before {
    content: '';
    display: block;
    width: 28px;
    height: 20px;
    background:
      linear-gradient(45deg, transparent calc(50% - 1.5px), var(--color-primary-light) calc(50% - 1.5px), var(--color-primary-light) calc(50% + 1.5px), transparent calc(50% + 1.5px)) no-repeat 0 0 / 12px 100%,
      linear-gradient(70deg, transparent calc(50% - 1.5px), var(--color-primary-light) calc(50% - 1.5px), var(--color-primary-light) calc(50% + 1.5px), transparent calc(50% + 1.5px)) no-repeat 16px -2px / 12px 100%;
  }

  /* 右: 内側/(110deg=より縦・2px上) + 外側/(135deg) */
  &::after {
    content: '';
    display: block;
    width: 28px;
    height: 20px;
    background:
      linear-gradient(110deg, transparent calc(50% - 1.5px), var(--color-primary-light) calc(50% - 1.5px), var(--color-primary-light) calc(50% + 1.5px), transparent calc(50% + 1.5px)) no-repeat 0 -2px / 12px 100%,
      linear-gradient(135deg, transparent calc(50% - 1.5px), var(--color-primary-light) calc(50% - 1.5px), var(--color-primary-light) calc(50% + 1.5px), transparent calc(50% + 1.5px)) no-repeat 16px 0 / 12px 100%;
  }
}

.detail-check__bubble-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: 0.15em;
}

.detail-check__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.detail-check__item {
  aspect-ratio: 297 / 210;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: outline 0.15s;
  outline: 3px solid transparent;

  &.is-active {
    outline-color: var(--color-primary);
  }
}

.detail-check__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   ページヒーロー（内部ページ共通）
=========================== */
.page-hero {
  position: relative;
  background: var(--color-bg-pale);
}

.page-hero__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-hero > .site-header {
  position: relative;
  z-index: 1;
}

.page-hero__circle {
  position: absolute;
  width: 140vw;
  height: 140vw;
  border-radius: 50%;
  background: var(--color-primary-light);
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  z-index: 1;
  pointer-events: none;

  &::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.85);
    pointer-events: none;
  }
}

.page-hero__title {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero__title-ja {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.page-hero__title-en {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  margin-top: 3px;
}

.page-hero__title--no-sub {
  transform: translateY(-14px);
}

/* ===========================
   ライセンス商品一覧
=========================== */
.license-section {
  position: relative;
  padding: 40px 0 60px;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/bg_pattern-1.webp');
    background-repeat: repeat;
    background-size: 160px;
    opacity: 0.3;
    z-index: 0;
  }

  & .license-section__inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 520px;
    margin-inline: auto;
  }

  & .license-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}

.license-card {
  & .license-card__inner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 5px 5px 0 0 var(--color-primary-light);
  }

  & .license-card__image-wrap {
    aspect-ratio: 297 / 210;
    overflow: hidden;
    background: var(--color-white);
  }

  & .license-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  & .license-card__body {
    background: #E6F5FF;
    padding: 10px 8px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
  }

  & .license-card__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    -webkit-text-stroke: 4px white;
    paint-order: stroke fill;
  }

  & .license-card__label-sub {
    font-size: 11px;
    font-weight: 500;
  }
}

/* オリジナル商品種類一覧ページのカード背景のみ上書き */
.license-section--original-list .license-card__body {
  background: #F8FCFF;
}

/* ===========================
   OEM生産のご案内
=========================== */
.flow-section {
  position: relative;
  padding: 32px 20px 60px;
  background: var(--color-white);
}

.flow-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 440px;
  margin-inline: auto;
}

/* フローアイテム全体（円 + カードの重なり） */
.flow-item {
  position: relative;
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;

  /* 奇数カード：左右交互に背景ドットを配置 */
  &:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    left: -100px;
    width: 160px;
    height: 160px;
    background-image: url('../img/bg_dot-1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
  }

  &:nth-child(4n+3)::before {
    left: auto;
    right: -100px;
  }
}

/* 番号円SVG：中心がカード左上角に来る */
.flow-item__circle-wrap {
  position: absolute;
  top: 8px;
  left: -6px;
  z-index: 2;
  width: 52px;
  height: 52px;
}

.flow-item__circle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* カード本体 */
.flow-card {
  position: relative;
  z-index: 1;
  border: 1px solid #333;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 5px 5px 0 0 #E6F5FF;
  overflow: hidden;
}

/* カード上部：見出し + アイコン */
.flow-card__header {
  display: flex;
  align-items: flex-end;
  padding: 0 20px 0 20px;
}

.flow-card__heading-wrap {
  width: fit-content;
  display: flex;
  align-items: center;
  height: 70px;
  border-bottom: 2px dashed var(--color-primary-light);
}

.flow-card__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: -5px;
}

.flow-card__icon-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 10px;
}

.flow-card__icon {
  width: auto;
  height: 60px;
  max-width: 100px;
  object-fit: contain;
}

/* カード下部：テキスト */
.flow-card__text {
  padding: 16px 20px 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text);
}

.flow-card__text-note {
  font-size: 11px;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 6px;
}

/* ===========================
   実績セクション
=========================== */
.achievements-section {
  background: url('../img/bg_pattern-2.webp') repeat;
  background-size: 40px 40px;
}

/* タイトルエリア */
.achievements-title-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 36px 24px 0;
}

.achievements-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.achievements-title-dots {
  display: flex;
  align-items: center;
  gap: 3px;

  &:first-child .achievements-title-dot--lg {
    margin-left: 1px;
  }

  &:last-child .achievements-title-dot--lg {
    margin-right: 1px;
  }
}

.achievements-title-dot {
  border-radius: 50%;
  background: var(--color-primary);
  display: block;
}

.achievements-title-dot--lg {
  width: 14px;
  height: 14px;
}

.achievements-title-dot--sm {
  width: 8px;
  height: 8px;
}

.achievements-title-capsule {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  padding: 4px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.achievements-title-en {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* A4画像エリア */
.achievements-image-area {
  margin: 24px 24px 0;
  background: #c8d8e4;
  border-radius: 8px;
  overflow: hidden;
}

.achievements-image {
  width: 100%;
  aspect-ratio: 297 / 210;
  object-fit: cover;
  display: block;
}

/* 実績コンテンツ */
.achievements-content {
  padding: 28px 24px 60px;
}

.achievements-content__inner {
  max-width: 480px;
  margin-inline: auto;
}

/* 制作物ラベル */
.achievements-category {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 12px;
}

/* 実績見出し */
.achievements-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.achievements-heading__sub {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-left: 7px;
}

.br-pc {
  display: none;
}

.achievements-heading__main {
  font-size: 18px;
  white-space: nowrap;
}

/* 下線 */
.achievements-divider {
  height: 1px;
  background: var(--color-text);
  margin-bottom: 20px;
}

/* 詳細エリア */
.achievements-detail__row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* 矢印型小見出し */
.achievements-sub-label {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 16px 3px 10px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  min-width: 74px;
  justify-content: center;
  margin-right: 12px;
}

.achievements-sub-text {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
}

/* ご要望：箇条書き（左側水色縦線） */
.achievements-request-wrap {
  margin-bottom: 24px;
}

.achievements-request-label {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 16px 3px 10px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  min-width: 74px;
  justify-content: center;
  margin-bottom: 10px;
}

.achievements-list {
  list-style: none;
  padding: 0;
  padding-left: 5px;
  margin-left: 20px;
  border-left: 2px solid var(--color-primary-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.achievements-list__item {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text);

  &::before {
    content: '・';
    color: var(--color-primary);
  }
}

/* 製品化エピソードカード */
.achievements-episode {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.achievements-episode__header {
  width: fit-content;
  background: var(--color-primary-light);
  padding: 10px 18px;
  border-radius: 10px 0 10px 0;
}

.achievements-episode__header-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

/* メモ帳スタイル本文 */
.achievements-episode__body {
  padding: 20px 18px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 2.8;
  background-image:
    linear-gradient(var(--color-white), var(--color-white)),
    linear-gradient(
      to bottom,
      transparent 38px,
      var(--color-bg-fv) 38px,
      var(--color-bg-fv) 39px
    );
  background-size:
    calc(100% - 36px) 36px,
    calc(100% - 36px) 39px;
  background-position:
    18px 0,
    18px 57px;
  background-repeat:
    no-repeat,
    repeat-y;
}

/* ===========================
   会社情報ページ
=========================== */

/* 当社についてセクション */
.about-section {
  position: relative;
  padding: 38px 20px 56px;
  background: var(--color-white);

  &::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -120px;
    width: 180px;
    height: 180px;
    background-image: url('../img/bg_dot-1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
  }

  &::after {
    content: '';
    position: absolute;
    bottom: -55px;
    right: -120px;
    width: 180px;
    height: 180px;
    background-image: url('../img/bg_dot-1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
  }
}

.about-section__inner {
  position: relative;
  z-index: 1;
}

/* タイトル */
.about-title-wrap {
  position: relative;
  height: 130px;
  margin-bottom: 32px;
}

.about-title__circle--lg {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--color-bg-pale);
  top: 8%;
  left: calc(50% - 83px);
  z-index: 1;
}

.about-title__circle--sm {
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--color-bg-pale);
  top: 17%;
  left: calc(50% - 3px);
  z-index: 1;
}

.about-title__text {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}

.about-title__ja {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.about-title__en {
  font-size: 12px;
  color: var(--color-primary-light);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.about-title__character {
  position: absolute;
  width: 65px;
  top: 55%;
  left: 59%;
  z-index: 3;
  pointer-events: none;
}

/* 本文 */
.about-body {
  padding-top: 20px;
  max-width: 400px;
  margin-inline: auto;
}

.about-body__text {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 1.8em;

  &:last-child {
    margin-bottom: 0;
  }
}

/* ブルーエリア */
.about-blue-area {
  background: var(--color-primary-light);
}

.about-blue-area__wave {
  line-height: 0;

  & svg {
    display: block;
    width: 100%;
    height: 40px;
  }
}

/* 共通タイトル（ブルーエリア内） */
.blue-section-title-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px 24px 0;
}

.blue-section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.blue-section-title-dots {
  display: flex;
  align-items: center;
  gap: 3px;
}

.blue-section-title-dot {
  border-radius: 50%;
  background: var(--color-white);
  display: block;
}

.blue-section-title-dot--lg {
  width: 14px;
  height: 14px;
}

.blue-section-title-dot--sm {
  width: 8px;
  height: 8px;
}

.blue-section-title-capsule {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50px;
  padding: 4px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.blue-section-title-en {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* 事業内容 */
.business-section {
  padding-bottom: 48px;
}

.business-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px 0;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
}

.business-item__card {
  display: flex;
  align-items: stretch;
  padding: 14px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 14px;
  box-shadow: 6px 6px 0 0 var(--color-bg-fv);
}

.business-item__icon {
  width: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.business-item__divider {
  width: 1px;
  background: var(--color-bg-pale);
  margin: 0 16px;
  flex-shrink: 0;
}

.business-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-item__number {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.business-item__heading {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 6px;
}

/* 会社概要 */
.company-section {
  padding-bottom: 56px;
}

.company-table-wrap {
  margin: 24px 20px 0;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: var(--color-text);

  & th {
    width: 5.5em;
    padding: 12px 12px 12px 20px;
    font-weight: 700;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
  }

  & td {
    padding: 12px 20px 12px 12px;
    line-height: 1.8;
    vertical-align: top;
  }

  & tr:first-child th,
  & tr:first-child td {
    padding-top: 20px;
  }

  & tr:last-child th,
  & tr:last-child td {
    padding-bottom: 20px;
  }

  & tr:not(:last-child) {
    background-image: linear-gradient(var(--color-bg-pale), var(--color-bg-pale));
    background-size: calc(100% - 24px) 1px;
    background-position: 12px 100%;
    background-repeat: no-repeat;
  }

}

/* 所在地セクション */
.office-section {
  padding: 0 20px 64px;
  background: var(--color-white);
}

.office-section__title-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 46px 24px 0;
}

.office-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
  margin-top: 32px;
}

.office-card {
  background: var(--color-white);
  border: 1px solid var(--color-bg-pale);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.office-card__label {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px 8px 16px;
  border-radius: 0 50px 50px 0;
  margin: 16px 0 0;
}

.office-card__map {
  margin: 16px 16px 0;
  background: #d8e8f0;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  overflow: hidden;

  & iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px 20px;
}

.office-info__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.office-info__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-info__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text);
}

/* ===========================
   お知らせ詳細ページ
=========================== */

/* トップバー */
.news-detail-bar {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 16px 8px;
  background: var(--color-primary-light);
}

.news-detail-bar__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* メイン画像エリア */
.news-detail-mv {
  position: relative;
  padding: 16px 20px 0;
  overflow: hidden;
  background: var(--color-primary-light);
  margin-bottom: -1px;

  &::before {
    content: '';
    position: absolute;
    top: calc(16px + (100vw - 40px) * 210 / 594);
    left: 50%;
    transform: translateX(-50%);
    width: 160vw;
    height: 160vw;
    border-radius: 50%;
    background: var(--color-white);
    z-index: 0;
  }
}

.news-detail-mv__wrap {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin-inline: auto;
  padding-bottom: 28px;
}

.news-detail-mv__image-wrap {
  aspect-ratio: 297 / 210;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.news-detail-mv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 本文エリア */
.news-detail-content {
  padding: 20px 16px 0;
  max-width: 480px;
  margin-inline: auto;

  & .news-item__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  & .news-item__date {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
  }

  & .news-item__badge {
    display: inline-block;
    background: #C0E7FF;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 3px;
    letter-spacing: 0.05em;
  }
}

/* タイトル */
.news-detail__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 12px;
}

/* SNSボタン */
.news-detail__sns {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.news-detail__sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  padding: 1px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* 本文（メモ帳ライン） */
.news-detail__body {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 2.8;
  background-image:
    linear-gradient(var(--color-white), var(--color-white)),
    linear-gradient(
      to bottom,
      transparent 38px,
      var(--color-bg-fv) 38px,
      var(--color-bg-fv) 39px
    );
  background-size:
    100% 36px,
    100% 39px;
  background-position:
    0 0,
    0 57px;
  background-repeat:
    no-repeat,
    repeat-y;
  padding: 20px 0 0;
  margin-bottom: 24px;

  & p + p {
    margin-top: 0;
  }
}

/* スペック */
.news-detail__specs {
  background: var(--color-bg-fv);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}

.news-detail__spec-tag {
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  line-height: 1.6;
}

/* 導入店舗一覧 */
.news-detail__stores {
  position: relative;
  border: 2px solid var(--color-primary-light);
  border-radius: 12px;
  padding: 36px 16px 20px;
  margin-bottom: 60px;
}

.news-detail__stores-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.news-detail__store-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 8px;
}

.news-detail__store-item {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;

  &::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 8px;
    line-height: 1.8;
  }
}

/* 前後記事ナビ */
.news-detail__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px 60px;
  max-width: 480px;
  margin-inline: auto;
}

.news-detail__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--color-primary-light);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-light);
  text-decoration: none;
}

/* ===========================
   お問い合わせページ
=========================== */

.site-main--contact .page-hero {
  background: var(--color-bg-pale);
  margin-bottom: -1px;
}

.site-main--about .page-hero {
  background: var(--color-white);
  margin-bottom: -1px;
}

.about-top-wrap {
  position: relative;
  background: var(--color-white);
  margin-bottom: -1px;
  z-index: 1;
}

.news-top-wrap {
  background: url('../img/bg_pattern-2.webp') repeat;
  background-size: 60px;

  & .news-list-section {
    background: transparent;
  }
}

.site-main--news .page-hero {
  background: transparent;
  margin-bottom: 0;
}

.license-top-wrap {
  position: relative;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/bg_pattern-1.webp');
    background-repeat: repeat;
    background-size: 160px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
  }

  & .license-section::before {
    display: none;
  }
}

.site-main--license .page-hero {
  background: transparent;
  margin-bottom: 0;
}

.product-top-wrap {
  position: relative;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/bg_pattern-1.webp');
    background-repeat: repeat;
    background-size: 160px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
  }

  & .license-section::before {
    display: none;
  }
}

.site-main--product .page-hero {
  background: transparent;
  margin-bottom: 0;
}

.oem-top-wrap {
  position: relative;
  background: var(--color-white);
  overflow: hidden;

  & .flow-section {
    background: transparent;
  }
}

.site-main--oem .page-hero {
  background: transparent;
  margin-bottom: 0;
}

.contact-page {
  position: relative;
  background: var(--color-bg-pale);
  padding: 40px 0 64px;
}

/* 背景装飾（丸） */
.contact-page__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-page__deco--tl-fill {
  width: 250px;
  height: 250px;
  background: rgba(217, 217, 217, 0.25);
  top: 0%;
  left: -207px;
}

.contact-page__deco--tl-border {
  width: 250px;
  height: 250px;
  border: 1px solid #C4E8FF;
  background: transparent;
  top: -2%;
  left: -200px;
}

.contact-page__deco--br-fill {
  width: 250px;
  height: 250px;
  background: rgba(126, 205, 243, 0.20);
  bottom: 18%;
  right: -213px;
}

.contact-page__deco--br-border {
  width: 250px;
  height: 250px;
  border: 1px solid #C4E8FF;
  background: transparent;
  bottom: 21%;
  right: -45%;
}

.contact-page__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 480px;
  margin-inline: auto;
}

/* お問い合わせボックス共通 */
.contact-box {
  background: var(--color-white);
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
}

.contact-box__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px 0;
}

.contact-box__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-box__info {
  flex: none;
  text-align: center;
}

.contact-box__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.contact-box__tel {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-top: 4px;
  white-space: nowrap;
}

.contact-box__label-wrap {
  display: table;
}

.contact-box__stitch {
  margin-top: 14px;
  height: 1px;
  width: 100%;
  background-image: repeating-linear-gradient(
    to right,
    var(--color-primary-light) 0,
    var(--color-primary-light) 8px,
    transparent 8px,
    transparent 16px
  );
}

.contact-box__divider {
  height: 1px;
  background: #e8e8e8;
  margin: 0 auto;
  width: calc(100% - 120px);
}

.contact-box__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px 16px;
}

.contact-box__hour-label {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.contact-box__hour-value {
  font-size: 13px;
  color: var(--color-text);
}

.contact-box__note {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 16px;
  line-height: 1.6;
  text-align: center;
}

/* または区切り */
.contact-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 10px;
}

.contact-or__line {
  flex: 1;
  height: 1px;
  background: #C4E8FF;
}

.contact-or__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid #C4E8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* フォーム */
.contact-form {
  padding: 28px 20px 40px;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-form__label-row p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form__label-row br {
  display: none;
}

.contact-form__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.contact-form__badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.contact-form__badge--required {
  background: var(--color-primary);
  color: var(--color-white);
}

.contact-form__badge--optional {
  background: var(--color-primary-light);
  color: var(--color-white);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text);
  background: #FAFAFA;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;

  &:focus {
    border-color: var(--color-primary-light);
    background: var(--color-white);
  }

  &::placeholder {
    color: #b0b0b0;
  }
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.contact-form__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  background: var(--color-primary-light);
  border: none;
  border-radius: 50px;
  padding: 14px 14px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.15s, box-shadow 0.15s;

  &:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  }
}

.contact-form__submit-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.contact-form__submit-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===================================================
   PC用追加メディアクエリ（ページ固有セクション上書き）
   ※ ベースCSSより後に置いてカスケードで優先されるようにする
=================================================== */
@media (min-width: 768px) {

  /* お知らせ詳細ページ */
  .news-detail-bar {
    padding-inline: max(16px, calc((100vw - 680px) / 2));
    padding-top: 22px;
    padding-bottom: 8px;
  }

  .news-detail-mv::before {
    top: 260px;
    width: 200vw;
    height: 200vw;
  }

  .news-detail-mv__wrap {
    max-width: 680px;
    padding-bottom: 40px;
  }

  .news-detail-content {
    max-width: 680px;
    padding: 32px 0 0;
  }

  .news-detail__title {
    font-size: 26px;
  }

  /* ライセンス・オリジナル商品一覧：3列グリッド */
  .license-section {
    padding-bottom: 120px;
  }

  .license-section .license-section__inner {
    max-width: 1000px;
    padding: 0 40px;
  }

  .license-section .license-section__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 24px;
  }

  /* お知らせ一覧：カード間隔・幅 */
  .news-list-section__inner {
    max-width: 720px;
    gap: 32px;
  }

  /* 会社情報：タイトルキャラクター位置 */
  .about-title__character {
    left: 56%;
    top: 50%;
  }

  /* 会社情報：本文 中央寄せ・幅狭め・字間 */
  .about-body {
    max-width: 500px;
    margin-inline: auto;
    letter-spacing: 0.08em;
  }

  .about-body__text {
    font-size: 15px;
    line-height: 2.4;
  }

  /* 会社情報：事業内容カーブ急に */
  .about-blue-area__wave svg {
    height: 90px;
  }

  /* 会社情報：事業内容カード4列横並び */
  .business-list {
    flex-direction: row;
    max-width: 1000px;
    padding: 24px 40px 0;
    gap: 20px;
    margin-inline: auto;
  }

  .business-item {
    flex: 1;
  }

  /* 事業内容カード：上段＝番号(左)＋アイコン(右)、下段＝テキスト */
  .business-item__card {
    display: grid;
    grid-template-areas:
      "num icon"
      "text text";
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    gap: 12px 8px;
  }

  .business-item__icon {
    grid-area: icon;
    width: 56px;
    height: 56px;
    object-fit: contain;
    align-self: center;
  }

  .business-item__divider {
    display: none;
  }

  .business-item__body {
    display: contents;
  }

  .business-item__number {
    grid-area: num;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: 0.06em;
    margin-top: 0;
    align-self: center;
  }

  .business-item__heading {
    grid-area: text;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    margin-top: 0;
  }

  /* 会社情報：事業内容カード下余白 */
  .business-section {
    padding-bottom: 80px;
  }

  /* 会社情報：会社概要テーブル幅2/3・下余白 */
  .company-table-wrap {
    max-width: 540px;
    margin: 14px auto 64px;
  }

  /* 会社情報：所在地カード横並び・中央揃え・幅統一 */
  .office-section {
    padding: 60px 40px 80px;
  }

  .office-cards {
    flex-direction: row;
    max-width: 800px;
    margin-inline: auto;
    justify-content: center;
    gap: 32px;
  }

  .office-card {
    flex: 1;
  }

  .office-card__map {
    aspect-ratio: 4 / 3;
  }

  /* OEM：フローカード幅・見出し・説明文 */
  .flow-section__inner {
    max-width: 520px;
  }

  /* OEM：背景ドット（奇数5個）を大きく・左右交互 */
  .flow-item:nth-child(odd)::before {
    width: 280px;
    height: 280px;
    left: -230px;
    opacity: 0.08;
  }

  .flow-item:nth-child(4n+3)::before {
    left: auto;
    right: -230px;
  }

  .flow-card__heading {
    font-size: 18px;
  }

  .flow-card__heading br {
    display: none;
  }

  .flow-card__text {
    font-size: 15px;
  }

  .flow-section {
    padding-bottom: 100px;
  }

  /* OEM：実績セクション上余白・タイトルエリア */
  .achievements-section {
    padding-top: 20px;
  }

  .achievements-title-area {
    padding: 60px 24px 0;
  }

  /* OEM：画像幅を基準にコンテンツ幅を統一 */
  .achievements-image-area {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }

  .achievements-content {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 24px 80px;
  }

  .achievements-content__inner {
    max-width: none;
    margin-inline: 0;
  }

  .achievements-heading {
    font-size: 22px;
    white-space: normal;
  }

  .achievements-heading__sub {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin-left: 0;
  }

  .achievements-heading__main {
    font-size: inherit;
    white-space: normal;
  }

  .br-pc {
    display: inline;
  }

  /* トップページ：お知らせタイトル */
  .news-section__title-ja {
    font-size: 24px;
  }

  .news-section__title-en {
    font-size: 15px;
    margin-top: -4px;
  }

  .news-section__title-wrap {
    height: 170px;
    margin-bottom: 40px;
  }

  .news-section__circle--large {
    width: 125px;
    height: 125px;
    top: 28%;
    left: calc(50% - 92px);
  }

  .news-section__circle--small {
    width: 95px;
    height: 95px;
    top: 44%;
    left: calc(50% - 6px);
  }

  .news-section__title-icon {
    width: 88px;
    top: -1%;
    left: 53%;
  }

  /* トップページ：お問い合わせタイトルの円・アイコン・余白 */
  .contact-section .contact-section__circle--large {
    width: 130px;
    height: 130px;
    top: 3%;
    left: calc(50% - 97px);
  }

  .contact-section .contact-section__circle--small {
    width: 105px;
    height: 105px;
    top: 10%;
    left: calc(50% - 10px);
  }

  .contact-section .contact-section__title-icon {
    width: 65px;
    top: 61%;
    left: calc(50% + 35px);
  }

  .contact-section .contact-section__title-wrap {
    margin-bottom: 60px;
  }

  /* セクションタイトル：24px・ノーマルウェイト・下余白 */
  .blue-section-title-capsule {
    font-size: 24px;
    font-weight: 400;
  }

  .blue-section-title-en {
    font-size: 14px;
  }

  .blue-section-title-area {
    padding-bottom: 40px;
  }

  /* 所在地タイトル（achievements-title-capsule）：サイズ・ウェイト統一 */
  .achievements-title-capsule {
    font-size: 24px;
    font-weight: 400;
  }

  .office-section__title-area {
    padding-bottom: 40px;
  }

  /* お問い合わせはこちらまで */
  .cta-section .cta-section__text {
    font-size: 26px;
  }

  /* コンタクトカード本文 */
  .contact-section .contact-item__text {
    font-size: 15px;
  }

  /* 全体的な本文フォントの底上げ（15px統一） */
  .about-body__text {
    font-size: 15px;
  }

  .company-table {
    font-size: 15px;
  }

  .office-info__text {
    font-size: 15px;
  }

  .news-detail__body {
    font-size: 15px;
    margin-bottom: 40px;
    background-image:
      linear-gradient(var(--color-white), var(--color-white)),
      linear-gradient(
        to bottom,
        transparent 41px,
        var(--color-bg-fv) 41px,
        var(--color-bg-fv) 42px
      );
    background-size: 100% 39px, 100% 42px;
    background-position: 0 0, 0 61px;
  }

  .achievements-sub-text {
    font-size: 15px;
  }

  .achievements-list__item {
    font-size: 15px;
  }

  .achievements-episode__body {
    font-size: 15px;
  }

  /* OEM：実績 制作期間・素材を横並び */
  .achievements-content__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .achievements-content__inner > .achievements-category,
  .achievements-content__inner > .achievements-heading,
  .achievements-content__inner > .achievements-divider,
  .achievements-content__inner > .achievements-request-wrap,
  .achievements-content__inner > .achievements-episode {
    grid-column: 1 / -1;
  }

  /* 商品詳細ページ PC */
  .detail-mv::before {
    top: 290px;
    width: 200vw;
    height: 200vw;
  }

  .detail-back {
    padding-left: max(16px, calc((100vw - 600px) / 2));
  }

  .detail-mv__wrap {
    max-width: 600px;
    padding-bottom: 40px;
  }

  .detail-mv__nav {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .detail-mv__nav.detail-mv__nav--prev {
    left: -52px;
  }

  .detail-mv__nav.detail-mv__nav--next {
    right: -52px;
  }

  .detail-title-wrap {
    max-width: 600px;
    margin: 0 auto 24px;
  }

  .detail-title-sns {
    top: -28px;
  }

  .detail-title {
    font-size: 24px;
  }

  .detail-description {
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 40px;
  }

  .detail-description__text {
    font-size: 15px;
    line-height: 2.4;
  }

  .detail-check {
    max-width: 600px;
    margin-inline: auto;
    padding: 0 28px 80px;
  }

  /* お知らせ詳細ページ：導入店舗3列 + ナビ幅 */
  .news-detail__store-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .news-detail__nav {
    max-width: 680px;
  }

  /* 事業内容カード：番号スタイル + ステッチ */
  .business-item__number {
    font-size: 28px;
    text-align: center;
  }

  .business-item__heading {
    justify-self: center;
    border-bottom: 2px dashed var(--color-primary-light);
    padding-bottom: 16px;
    text-align: center;
  }

  /* 当社についてタイトル：24px + en + 円サイズ・位置 */
  .about-title-wrap {
    height: 160px;
  }

  .about-title__circle--lg {
    width: 130px;
    height: 130px;
    left: calc(50% - 106px);
  }

  .about-title__circle--sm {
    width: 100px;
    height: 100px;
  }

  .about-title__text {
    bottom: 48px;
  }

  .about-title__ja {
    font-size: 24px;
    font-weight: 700;
  }

  .about-title__en {
    font-size: 14px;
  }

  .about-title__character {
    top: 56%;
  }

  /* PC：ナビキャラクター非表示 */
  .site-nav__character {
    display: none;
  }

  /* OEM：実績コンテンツ内の余白・行間調整 */
  .achievements-divider {
    margin-bottom: 36px;
  }

  .achievements-list {
    gap: 14px;
  }

  .achievements-request-wrap {
    margin-bottom: 48px;
  }

  .achievements-episode {
    margin-bottom: 0px;
  }

  /* OEM：実績「制作物」カプセルをgrid内で左揃え */
  .achievements-content__inner > .achievements-category {
    justify-self: start;
  }

  /* OEM：実績「製品化にあたって」本文ラインをPC文字サイズに合わせる */
  .achievements-episode__body {
    background-image:
      linear-gradient(var(--color-white), var(--color-white)),
      linear-gradient(
        to bottom,
        transparent 41px,
        var(--color-bg-fv) 41px,
        var(--color-bg-fv) 42px
      );
    background-size: calc(100% - 36px) 39px, calc(100% - 36px) 42px;
    background-position: 18px 0, 18px 61px;
  }

  /* お問い合わせページ：PC版レイアウト・フォント拡大 */
  .contact-page {
    padding: 40px 0 80px;
  }

  .contact-page__inner {
    max-width: 700px;
    padding: 0 40px;
  }

  .contact-box {
    margin: 0;
  }

  /* 電話ボックスは幅を絞る */
  .contact-page__inner > .contact-box:first-child {
    max-width: 480px;
    margin-inline: auto;
  }

  /* または区切りは横線を短くする */
  .contact-or {
    max-width: 300px;
    margin-inline: auto;
  }

  /* 両ボックスのtop（アイコン＋見出し）を中央揃え */
  .contact-box__top {
    justify-content: center;
  }

  /* 電話ボックス内テキストを中央揃え */
  .contact-box__info {
    flex: none;
    text-align: center;
  }

  .contact-box__note {
    font-size: 13px;
    text-align: center;
  }

  .contact-box__bottom {
    justify-content: center;
  }

  .contact-box__label {
    font-size: 15px;
    font-weight: 700;
  }

  .contact-box__note {
    font-size: 13px;
    text-align: center;
  }

  .contact-box__divider {
    width: 80%;
    margin: 0 auto;
  }

  .contact-box__hour-label {
    font-size: 13px;
  }

  .contact-box__hour-value {
    font-size: 15px;
  }

  .contact-form {
    padding: 20px 32px 60px;
  }

  .contact-form__label {
    font-size: 15px;
  }

  .contact-form__input,
  .contact-form__textarea {
    font-size: 15px;
    padding: 14px 16px;
  }

  /* ページヒーロー：タイトル文字を大きく */
  .page-hero__title-ja {
    font-size: 28px;
  }

  .page-hero__title-en {
    font-size: 15px;
  }

  .page-hero__title--no-sub {
    transform: translateY(-18px);
  }

  /* トップページ お知らせタイトル：下に下げる */
  .news-section__title-text {
    bottom: 26px;
  }

  /* 当社について：背景ドットをPC幅に合わせて内側に寄せる */
  .about-section::before {
    top: -55px;
    left: 210px;
    width: 260px;
    height: 280px;
    opacity: 0.05;
  }

  .about-section::after {
    right: 170px;
    bottom: -10%;
    width: 260px;
    height: 280px;
    opacity: 0.05;
  }

  /* 商品・ライセンス一覧カード：見出しフォントサイズ */
  .license-card__label {
    font-size: 15px;
  }

  .license-card__label-sub {
    font-size: 13px;
  }

}

/* SP：ハンバーガーナビ キャラクター */
.site-nav__character {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 3%;
  right: 0%;
  width: 100%;
  overflow: hidden;
}

.site-nav__character-image {
  width: 70%;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateX(150%);
}

.site-nav__character.is-animated .site-nav__character-image {
  animation: charArcRight 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) 0.3s forwards;
}

.site-nav__character.is-hiding .site-nav__character-image {
  animation: charArcRightOut 0.5s cubic-bezier(0, 0, 0.3, 1) forwards;
}

/* PC専用エリア・サムネイル：モバイルのみ非表示 */
@media (max-width: 767px) {
  .fv-news {
    display: none;
  }

  .fv__thumbs-wrap {
    display: none;
  }

  /* page-hero：SP専用スタイル */
  .page-hero {
    height: 150px;

    & .site-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
    }
  }

  /* 詳細ページなど：no-logoヘッダーはSPでロゴ非表示・nav固定のため padding不要 */
  .site-header--no-logo {
    padding: 0;
  }

  /* about-top-wrap の z-index がスタッキングコンテキストを作りナビを埋めるため無効化 */
  .about-top-wrap {
    z-index: auto;
  }

  .contact-box__note {
    white-space: nowrap;
  }
}

/* PC：ナビキャラクターを確実に非表示（base CSSより後に置く必要あり） */
@media (min-width: 768px) {
  .site-nav__character {
    display: none;
  }
}

/* ============================================================
   検索ボタン・オーバーレイ
============================================================ */

/* SP：固定検索ボタン（ハンバーガーの左） */
.search-button {
  position: fixed;
  top: 14px;
  right: 68px;
  width: 44px;
  height: 44px;
  z-index: 210;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--color-white);
  filter: drop-shadow(0 0 4px rgba(1, 128, 203, 0.9));
  cursor: pointer;
}

/* PC時はSP検索ボタンを非表示 */
@media (min-width: 768px) {
  .search-button {
    display: none;
  }
}

/* SP時はPC検索ボタン（li）を非表示・PC時は表示 */
.site-nav__item--search {
  display: none;
}

/* PC：ナビ内検索ボタン */
@media (min-width: 768px) {
  .site-nav__item--search {
    display: block;
    margin-left: 4px;
  }

  .site-nav__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    border-radius: 6px;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s;

    &:hover {
      background: rgba(0, 0, 0, 0.06);
    }
  }
}

/* PC：page-hero内headerをfixed・z-index確保（セレクター詳細度対策） */
@media (min-width: 768px) {
  .page-hero > .site-header {
    position: fixed;
    z-index: 100;
  }
}

/* 検索オーバーレイ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;

  &.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  & .search-overlay__inner {
    width: min(560px, 90vw);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }

  & .search-overlay__form {
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--color-white);
    border-radius: 40px;
    padding: 4px 4px 4px 24px;
  }

  & .search-overlay__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    padding: 10px 8px 10px 0;
    color: var(--color-text);

    &::placeholder {
      color: var(--color-text-light);
    }
  }

  & .search-overlay__submit {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: opacity 0.2s;

    &:hover {
      opacity: 0.85;
    }
  }

  & .search-overlay__close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.2s;

    &:hover {
      background: rgba(255, 255, 255, 0.35);
    }
  }
}

/* ===========================
   検索結果
=========================== */
.search-result-count {
  color: #0180CB;
  font-size: 15px;
}

/* ===========================
   Contact Form 7 対応
   wpcf7-form を contact-form と同じスタイルで表示
=========================== */
.wpcf7-form {
  padding: 20px 20px 40px;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7 .contact-form__submit-wrap > p {
  margin: 0;
}

.wpcf7 .contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 14px 14px;
}
.wpcf7 .contact-form__submit .contact-form__submit-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.wpcf7-not-valid-tip {
  color: #e00;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
}

.wpcf7-mail-sent-ok {
  background: #e6f5e6;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background: #fdecea;
  border: 1px solid #e53935;
  color: #b71c1c;
}

/* ===========================
   プライバシーポリシーページ
=========================== */
.privacy-section {
  padding: 48px 0 80px;
}

.privacy-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 40px;
}

.privacy-block {
  margin-bottom: 36px;
}

.privacy-block__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-primary-light);
}

.privacy-block__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}

.privacy-block__list {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  padding-left: 1.4em;
  margin-top: 8px;

  & li {
    list-style: disc;
    margin-bottom: 4px;
  }
}

.privacy-block__link {
  color: var(--color-primary);
  text-decoration: underline;
}

.privacy-date {
  font-size: 13px;
  color: var(--color-text);
  opacity: 0.6;
  text-align: right;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .privacy-section {
    padding: 64px 0 120px;
  }

  .privacy-lead {
    font-size: 15px;
  }

  .privacy-block__title {
    font-size: 18px;
  }

  .privacy-block__text,
  .privacy-block__list {
    font-size: 15px;
  }
}
