:root {
--color-primary: #e50038;
  --color-primary-light: #ffe4ec;
  --color-bg: #f7f7f7;
  --color-gray: #f6f6f6;
  --color-text: #333333;
  --max-width: 1120px;
  --radius-lg: 24px;
  --radius-md: 16px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 15px;
}
img {
/* max-width: 100%; */
  height: auto;
  display: block;
}
a {
color: inherit;
  text-decoration: none;
}
.site-header {
margin-top: 0 !important;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #f0f0f0;
}
.header-main {
font-weight: 600;
  background-color: #f7f7f7;
}
.header-cta-double.inline-style {
display: flex;
  gap: 12px;
  flex-wrap: nowrap; /* 折り返し禁止 */
  justify-content: flex-end; /* ← 右寄せ */
  background-color: #f7f7f7;
}
.header-cta-double .cta-box.small {
padding: 10px 14px;
  text-align: center;
  max-width: 260px;
  position: relative;
  background-color: #fff;
}
.header-cta-double .cta-box.small .cta-label-black {
font-size: 10px;
  padding: 2px 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  background: #111;
  color: #fff;
  font-family: josefin Sans;
  height: 20px;
  position: absolute;
  top:-10px;
  left: 50%;                 /* 親の幅のちょうど真ん中に基点を持ってくる */
  transform: translateX(-50%); /* 自分自身の幅の半分だけ左に戻す → 中央揃え */
}
.cta-label-black::after {
content: "";
  position: absolute;
  bottom: 0;
  left: 57%;
  border-style: solid;
  border-width: 10px 5px 0 0;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
  transform: skew(-24deg);
  transform-origin: top;
}
.header-cta-double .cta-box.small {
font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.header-cta-double .cta-box.small .cta-btn {
font-size: 12px;
  padding: 6px 12px;
  min-width: 180px;
}
@media (max-width: 820px) {
.header-cta-double.inline-style {
display: none;
}
}
.header-nav {
display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  padding-left: 0;
  font-weight: 600;
  white-space: nowrap;
}
.header-nav a {
position: relative;
  padding-bottom: 3px;
  font-size: 16px;
}
.header-nav a::after {
content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width .2s ease;
}
.header-nav a:hover::after {
width: 100%;
}
@media (max-width: 820px) {
.header-auth {
display: none;
}
.header-center {
display: flex;
    align-items: center;
    gap: 0;
}
}
@media (min-width: 821px) {
.header-logo-group {
display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.header-center {
display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0; /* 長い文言でもレイアウト崩れを抑制 */
}
.header-nav {
width: auto;
    padding-left: 0;
    gap: 22px;
    justify-content: center;
    white-space: nowrap;
}
.header-auth {
display: flex;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
}
.header-auth-btn {
padding: 7px 14px;
    font-size: 13px;
    border-radius: 999px;
    line-height: 1;
}
}
@media (min-width: 821px) and (max-width: 1024px) {
.header-main {
gap: 12px;
    padding: 8px 12px;
}
.header-nav a {
font-size: 15px;
}
.header-auth {
gap: 8px;
}
.header-auth-btn {
padding: 6px 12px;
    font-size: 12px;
}
}
.logo-img {
height: 65px;
  width: auto;
}
.logo-text {
font-weight: 700;
  font-size: 17px;
  color: #111;
  white-space: nowrap;
  font-family: 'Josefin Sans', system-ui, sans-serif;
}
.btn {
display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn-primary {
background-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
transform: translateY(-1px);
}
.auto-banner {
width: 100%;
  height: 90px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px 0;
  font-size: 28px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp-page .auto-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.auto-banner span {
font-size: 32px;
}
.cta-box {
border: 1px solid #e50038;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  max-width: 320px;
  flex: 1;
  min-width: 280px;
}
.cta-text {
font-size: 13px;
  font-weight: 900;
  font-family: HGTE角ゴシック;
  margin: 6px 0 5px;
}
.cta-btn {
min-width: 200px;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 999px;
}
.migi {
font-size: 12px;
  font-weight: 100;
}
.line-style {
background-color: #e50038;
  color: #fff;
}
.header-logo-group {
display: flex;
  align-items: center;
  gap: 20px;
  min-width: 260px;
  margin-left: 30px;
}
details {
border-radius: var(--radius-md);
  border: 1px solid #eee;
  background-color: #fff;
  padding: 10px 14px;
}
summary {
font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
display: none;
}
details[open] {
border-color: var(--color-primary-light);
  background-color: #fff9fb;
}
.header-cta-double {
display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 16px;
  background-color: #fafafa;
  flex-wrap: wrap;
}
.site-footer {
background-color: #e50038;
  padding: 15px 0;
  font-size: 12px;
  height: 140px;
}
.footer-inner {
display: flex;
  gap: 40px;
  align-items: flex-start;
  color: #ffffff;
  width: 900px;
  margin: auto;
}
.footer-logo-img {
height: 90spx;     /* ロゴの見た目サイズ */
  width: auto;
}
@media (max-width: 820px) {
.header-main {
flex-wrap: wrap;
}
}
@media screen and (max-width: 820px) {
html, body {
overflow-x: hidden;
}
.auto-banner {
height: auto;              /* ← 固定高さをやめる */
    padding: 16px 20px;        /* ← 上下余白で高さを作る */
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}
.auto-banner span {
display: inline-block;     /* ← 改行してもズレない */
    white-space: nowrap;       /* ← 「自動化」が割れない */
}
.auto-banner span {
font-size: 16px;
}
.logo-text {
font-size: 12px;
}
.site-header {
position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff; /* 必要に応じて元の背景色に */
    border-bottom: 1px solid #ddd;
}
body {
padding-top: 70px; /* ヘッダーの高さに応じて調整（例：70px） */
}
.header-main, .header-cta-double.inline-style {
flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    width: 100% !important;
    left: 0 !important;
}
@media (max-width: 820px) {
.cta-text {
font-size: 7px;
}
.cta-btn {
min-height: 20px;
    font-size: 11px;
    padding: 0 6px;
    min-width: 150px;
}
}
.header-nav {
flex-direction: column;
    align-items: center;
    width: 100%;
    padding-left: 0;
}
}
@media screen and (max-width: 820px) {
.header-main {
flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
}
.header-logo-group {
align-items: center;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding: 13px 0 11px 0;
}
.logo-img {
width:50px;
    height: auto;
}
.logo-text {
font-size: 12px;
    white-space: nowrap;
    position: relative;
    top: 4px;
}
.header-nav {
display: flex;
    flex-direction: row;
    font-size: 13px;
    white-space: nowrap;
    margin-left: auto;
    padding-left: 0;
    background-color: #e50038; /* 赤背景 */
    padding: 8px 12px;
}
.header-nav a {
color: #000; 
  font-weight: bold;
  background-color: #fff;
  border-radius: 20px;
  width: 105px;
  text-align: center;
}
.header-cta-double.inline-style {
display: none;
}
}
@media screen and (max-width: 820px) {
.site-footer {
background-color: #e50038;
  padding: 15px 0;
  font-size: 12px;
  height: 140px;
}
.footer-logo-img {
width: 70px;
}
.site-footer {
background-color: #e50038;
  padding: 15px 0;
  font-size: 12px;
  height: 87px;
}
.footer-inner {
display: flex;
  gap: 3px;
  align-items: flex-start;
  color: #ffffff;
  max-width: 320px;
  width: 100%;
  margin: auto;
}
}
@media screen and (max-width: 820px) {
.header-cta-double.inline-style {
display: none;
}
.header-main {
flex-direction: column;
    align-items: center;
    gap: 10px;
}
.logo-text {
font-size: 15px;
}
.header-nav {
overflow-x: auto;
}
.header-nav::-webkit-scrollbar {
display: none;
}
.header-nav a {
flex: 0 0 auto;
    width: 90px;              /* ← 重要：110 → 96 */
    text-align: center;
    padding: 4px 0;
    font-size: 12px;
    white-space: nowrap;
}
.header-logo-group {
gap: 10px;                 /* ロゴと文字の間隔を詰める */
}
.logo-img {
height: 42px;              /* ← 65px → 42px */
    width: auto;
}
.logo-text {
font-size: 13px;           /* 少しだけ小さく */
    line-height: 1.2;          /* 縦の余白を削る */
    white-space: nowrap;
}
.header-logo-group {
margin-left: 0;        /* ← 左の余白を消す */
    min-width: auto;       /* ← 固定幅も解除 */
}
.cta-text {
font-size: 13px !important;
    margin: 6px 0 5px !important;
}
.cta-btn {
min-width: 200px !important;     /* これが48% + min-width150 と衝突してた */
    font-size: 16px !important;
    padding: 4px 16px !important;
    min-height: unset !important;
}
}
@media screen and (max-width: 444px) {
.site-footer .footer-inner {
text-align: center; /* 既存と同じなら影響なし */
}
}
@media screen and (max-width: 340px) {
.cta-btn {
min-width: unset !important;
}
}
@media screen and (max-width: 374px) {
html, body {
overflow-x: clip;
}
}
@media screen and (min-width: 821px) and (max-width: 1024px) {
.header-cta-double.inline-style {
display: none !important;
}
.header-main {
width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}
.footer-inner {
gap: 30px;
    max-width: 800px;
    width: 100%;
}
.footer-logo-img {
margin-left: 20px;
}
.cta-text {
font-size: 1.3vw;
}
.header-nav {
padding-left: 1px;
}
}
@media screen and (max-width: 374px) {
html, body {
overflow-x: hidden;
}
section {
overflow-x: visible;
}
}
@media screen and (max-width: 820px) {
.site-footer {
height: auto !important; /* 固定高さで切れるのを防止 */
    padding: 14px 0 16px;
}
.footer-inner {
width: 92vw !important;
    max-width: 92vw !important;
    gap: 12px !important;
    align-items: center !important;
}
.footer-logo-img {
width: 56px;
    height: auto;
}
.site-footer .footer-inner {
display: inline-flex !important;   /* ← inline-flex がポイント（幅が内容にフィット） */
    align-items: center !important;
    gap: 14px !important;               /* ロゴと文字の距離 */
    width: auto !important;
    margin: 0 auto !important;         /* まとめた塊を中央へ */
}
.site-footer .footer-inner img {
display: block !important;
    margin: 0 !important;
}
.site-footer .footer-inner :is(p, div, span) {
width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
}
.site-footer {
text-align: center;
}
}
@media screen and (max-width: 820px) {
html, body {
overflow-x: hidden !important;
}
}
@media screen and (max-width: 820px) {
html, body {
overflow-x: hidden !important;
}
}
@media (min-width: 1025px) {
.header-logo-group {
grid-area: logo;
}
.header-center {
grid-area: center;
}
.header-cta-double.inline-style {
grid-area: cta;
}
.header-center {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
    flex-wrap: wrap; /* 画面が狭いPCでも「重なり」ではなく折返しにする */
}
.header-nav {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding-left: 0 !important;
    width: auto !important;
}
.header-auth {
display: flex;
    align-items: center;
    gap: 10px;
}
}
@media (min-width: 821px) and (max-width: 1024px) {
.header-main {
display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "logo . cta"
      "center center center";
    align-items: center;
    row-gap: 10px;
    column-gap: 12px;
    padding: 8px 12px;
    justify-content: initial !important;
}
.header-logo-group {
grid-area: logo;
}
.header-center {
grid-area: center;
}
.header-cta-double.inline-style {
grid-area: cta;
}
.header-center {
width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.header-nav {
flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding-left: 0 !important;
    width: auto !important;
}
.header-nav a {
font-size: 15px;
}
.header-auth {
display: flex;
    gap: 8px;
    justify-content: center;
    flex: 0 0 auto;
}
.header-auth-btn {
padding: 6px 12px;
    font-size: 12px;
}
.logo-text {
font-size: 15px;
}
}
@media screen and (min-width: 821px) and (max-width: 1024px) {
.header-main {
display: grid;
    grid-template-columns: 1fr auto 1fr; /* 左右を同幅に */
    grid-template-areas:
      ". logo cta"
      "nav nav nav";
    align-items: center;
}
.header-logo-group {
grid-area: logo;
    justify-self: center;
    text-align: center;
}
.header-center {
grid-area: nav;
    justify-content: center;
}
}
@media screen and (min-width: 821px) {
.header-main {
display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    gap: 12px;                 /* 全体の余白を少し詰める */
    padding: 8px 14px;         /* 高さを小さく */
}
.header-logo-group {
flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.header-logo-group img {
height: 34px;              /* ロゴを小さく（元に合わせて調整可） */
    width: auto;
}
.header-center {
flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-width: 0;
    flex-wrap: nowrap !important;
}
.header-nav {
display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    flex-wrap: nowrap !important;

    /* 既存の固定幅・paddingが干渉するのを無効化 */
    width: auto !important;
    padding-left: 0 !important;
    justify-content: center !important;
}
.header-nav a {
font-size: 15px;           /* ナビ文字を小さく */
    line-height: 1;
    white-space: nowrap;
}
.header-auth {
display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    flex-wrap: nowrap !important;
}
.header-auth .header-auth-btn {
font-size: 12px;
    padding: 6px 12px;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
}
}
@media screen and (min-width: 1025px) {
.header-cta-double {
transform: scale(0.78);          /* ← ここで縮小率調整 */
    transform-origin: right center;  /* 右端基準で縮める（左を空ける） */
}
.header-cta-double {
width: calc(100% * 0.78);
    max-width: 520px; /* 念のための上限。環境により調整可 */
}
}
@media screen and (min-width: 1025px) {
.header-logo-group, .header-nav, .header-auth {
flex: 0 0 auto;
    white-space: nowrap;
}
.header-cta-double.inline-style {
flex: 0 0 auto;

    /* 画面幅に応じて自動縮小（1280pxでも確実に縮む） */
    --cta-scale: clamp(0.55, calc(100vw / 1900), 0.78);

    transform: scale(var(--cta-scale));
    transform-origin: right center;
}
}
@media (min-width: 821px) {
.nav-divider {
display: inline-block;
    height: 16px;
    width: 2px;
    background-color: var(--color-primary); /* 赤色 */
    margin: 0 12px;
    vertical-align: middle;
}
}
@media (max-width: 1480px) {
.header-cta-double {
display: none !important;
}
}
@media screen and (min-width: 1025px) and (max-width: 1590px) {
.header-main {
padding-top: 5px !important;
    padding-bottom: 5px !important;
}
}
@media (min-width: 1025px) {
.site-footer {
width: 100%;
}
.site-footer .footer-inner {
max-width: 1200px;
    margin: 0 auto;
}
}
.auto-banner {
width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 821px) and (max-width: 1024px) {
.header-main {
padding-top: 20px;
    padding-bottom: 20px;
}
}
@media screen and (min-width: 821px) and (max-width: 925px) {
.header-center {
min-width: 0 !important;
    flex: 1 1 auto !important;
}
.header-nav, .header-auth, .header-nav ul {
min-width: 0 !important;
}
.header-center {
gap: 20px !important;
}
.header-nav ul {
gap: 10px !important;
}
.header-auth {
gap: 8px !important;
}
.header-auth a, .header-auth .btn {
padding-left: 12px !important;
    padding-right: 12px !important;
}
@supports (zoom: 1) {
.header-center {
zoom: 0.84;                 /* ← もっと縮小（0.78→0.74くらい） */
}
}
}
@media screen and (min-width: 1300px) {
.header-main {
justify-content: flex-start !important;
    gap: 14px !important;  /* ロゴ〜中央〜CTA間の距離（好みで調整OK） */
}
.header-logo-group {
margin-right: auto !important;
}
.header-cta-double.inline-style {
margin-left: 10px !important;         /* ボタンとの間隔 */
    transform: scale(0.9) !important;    /* ← おもいっきり縮小 */
    transform-origin: right center !important;
}
}
@media screen and (min-width: 1300px) and (max-width: 1480px) {
.header-main {
justify-content: flex-start !important;
    gap: 12px !important;
}
.header-logo-group {
margin-right: auto !important;
}
.header-main {
--hScale: clamp(
      0.60,
      calc(0.60 + ((100vw - 1300px) * 0.18 / 180)),
      0.78
    );
}
.header-cta-double, .header-cta-double.inline-style {
transform: none !important;
    width: auto !important;
    max-width: none !important;
}
.header-center, .header-cta-double.inline-style {
zoom: var(--hScale) !important;
}
@supports not (zoom: 1) {
.header-center, .header-cta-double.inline-style {
transform: scale(var(--hScale)) !important;
      transform-origin: center center !important;
}
}
}
@media screen and (max-width: 820px) {
.header-cta-double.inline-style {
display: none !important;
}
.header-main {
display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo auth"
      "nav  nav";
    align-items: center;
    gap: 0 !important;
    padding: 0 !important;
    background: #fff !important; /* 上段は白 */
}
.header-center {
display: contents !important;
}
.header-logo-group {
grid-area: logo;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 0 !important;
    min-width: 0;
}
.logo-text {
display: none !important;
}
.logo-img {
height: 42px !important;
    width: auto;
}
.header-auth {
grid-area: auth;
    display: flex !important;            /* 既存の display:none を上書き */
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 12px;
    white-space: nowrap;
}
.header-auth .header-auth-btn {
padding: 8px 14px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
}
.header-nav {
grid-area: nav;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: var(--color-primary) !important;
    color: #fff !important;

    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px !important;
    flex-wrap: nowrap !important; /* 文字が切れない前提で折り返しはさせない */
}
.header-nav a {
font-size: 16px !important;
    padding: 0 !important;
    white-space: nowrap;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
    font-weight: 600;
    line-height: 1.2 !important;

    /* 追加分：各ナビ項目を「同じ幅」にして中央寄せ */
    flex: 1;                 /* ← これが重要 */
    text-align: center;
}
.header-nav a::after {
display: none !important;
}
.header-nav .nav-divider {
display: block;
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.6);
    flex: 0 0 1px; /* 区切り線は幅固定 */
}
}
@media screen and (max-width: 345px) {
.header-auth {
transform: scale(0.88);          /* ← 縮小率（0.86〜0.9で微調整可） */
    transform-origin: right center;  /* 右基準で縮小（ロゴに被らない） */
}
}
@media screen and (max-width: 820px) {
.site-header {
backdrop-filter: none;
    background-color: #fff;
}
.header-main {
display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
}
.header-center {
display: none;
}
.header-logo-group {
margin-left: 0;
    min-width: auto;
}
.logo-img {
height: 42px;
}
.logo-text {
display: none; /* スマホでは非表示（画像準拠） */
}
}
@media screen and (max-width: 820px) {
.site-header .header-center {
display: contents !important;
}
.site-header .header-cta-double.inline-style {
display: none !important;
}
.site-header:has(.header-auth) .header-main {
display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo auth"
      "nav  nav";
    align-items: center;
    gap: 0 !important;
    padding: 0 !important;
    background: #fff !important;
}
.site-header:has(.header-auth) .header-logo-group {
grid-area: logo;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 0 !important;
    min-width: 0;
}
.site-header:has(.header-auth) .logo-text {
display: none !important;
}
.site-header:has(.header-auth) .logo-img {
height: 42px !important;
    width: auto;
}
.site-header:has(.header-auth) .header-auth {
grid-area: auth;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 12px;
    white-space: nowrap;
}
.site-header:has(.header-auth) .header-auth .header-auth-btn {
padding: 8px 14px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
}
.site-header:has(.header-auth) .header-nav {
grid-area: nav;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: var(--color-primary) !important;
    color: #fff !important;

    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}
.site-header:has(.header-auth) .header-nav a {
font-size: 16px !important;
    padding: 0 !important;
    white-space: nowrap;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
    font-weight: 600;
    line-height: 1.2 !important;

    flex: 1;
    text-align: center;
}
.site-header:has(.header-auth) .header-nav a::after {
display: none !important;
}
.site-header:has(.header-auth) .header-nav .nav-divider {
display: block;
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.6);
    flex: 0 0 1px;
}
}
@media screen and (max-width: 345px) {
.site-header:has(.header-auth) .header-auth {
transform: scale(0.88);
    transform-origin: right center;
}
}
.site-footer {
background-color: #e50038 !important;
  height: 150px !important;
  padding: 0 !important;
}
.site-footer .footer-inner {
width: min(1200px, calc(100% - 32px)) !important;
  height: 100%;
  margin: 0 auto !important;
  color: #fff !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas:
    "logo company links1 links2"
    "copy copy copy copy";
  align-items: center !important;
  column-gap: 36px !important;
  row-gap: 1px;
}
.site-footer .footer-logo-area {
grid-area: logo; margin-top: 12px;
}
.site-footer .footer-company {
grid-area: company; display: grid; row-gap: 3px; margin-top: 12px;
}
.site-footer .footer-links-col[aria-label*="1"] {
grid-area: links1;
}
.site-footer .footer-links-col[aria-label*="2"] {
grid-area: links2;
}
.site-footer .footer-copyright {
grid-area: copy;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.site-footer .footer-logo-img {
width: 120px !important;
  height: auto !important;
  display: block;
}
.site-footer .footer-company p {
margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}
.site-footer .footer-company p:nth-child(2), .site-footer .footer-company p:nth-child(3), .site-footer .footer-company p:nth-child(4) {
font-size: 14px;
}
.site-footer .footer-links-col {
display: grid;
  gap: 7px;
  align-content: center;
}
.site-footer .footer-links-col a {
color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 820px) {
.site-footer {
height: auto !important;
    min-height: 176px !important;
    padding: 8px 0 0 !important;
}
.site-footer .footer-inner {
width: calc(100% - 28px) !important;
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "links1 links2"
      "copy copy";
    align-items: center !important;
    justify-items: center;
    column-gap: 20px !important;
    row-gap: 6px;
    align-content: start;
}
.site-footer .footer-logo-img {
width: 100px !important;
}
.site-footer .footer-logo-area {
margin-top: 6px;
}
.site-footer .footer-company {
display: none;
}
.site-footer .footer-links-col {
gap: 6px;
}
.site-footer .footer-links-col a {
font-size: 12px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
}
.site-footer .footer-copyright {
font-size: 9px;
    margin-top: -2px;
    line-height: 1;
}
}

/* privacypolicy main redesign */
.pp-page main {
  background:
    radial-gradient(1200px 380px at 50% 0%, #ffecef 0%, #f7f7f7 60%),
    #f7f7f7;
  padding: 0 16px 72px;
}

.privecy {
  width: min(1040px, 100%);
  margin: 28px auto 0;
}

.label {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  padding: 42px 52px;
}

.label-title {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.label-section {
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.label-divider {
  border-top: 1px solid #f0f0f0;
  margin: 14px 0 18px;
}

.pinfo-policy {
  margin-bottom: 10px;
}

.pinfo-policy-title {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
  color: #222;
}

.pinfo-policy-list {
  margin: 0 0 18px;
  padding-left: 1.4em;
  display: grid;
  gap: 10px;
}

.pinfo-policy-item-title {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #222;
}

.pinfo-policy-text {
  margin: 0;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.pinfo-policy-contact {
  margin: 0 20px 14px;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.95;
  max-width: 72%;
}

.pinfo-policy-manager {
  margin: 0;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.95;
  text-align: left;
  margin-left: 20px;
}

.label-heading {
  margin: 28px 0 8px;
  color: #222;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
}

.label-heading::first-letter {
  color: var(--color-primary);
}

.label-text,
.legal-text {
  margin: 0;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.label-list1 {
  margin: 10px 0 8px 1.2em;
  padding: 0;
  display: grid;
  gap: 4px;
}

.label-list1 li {
  font-size: 15px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .label {
    padding: 34px 34px;
    border-radius: 16px;
  }

  .label-heading {
    font-size: 19px;
  }
}

@media (max-width: 820px) {
  .pp-page {
    padding-top: 0;
  }

  .pp-page .site-header {
    position: fixed;
    top: 0;
  }

  .pp-page main {
    padding: 104px 12px 48px;
  }

  .auto-banner {
    min-height: 68px;
    height: auto;
    font-size: clamp(22px, 6.2vw, 28px);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 14px 10px;
  }

  .privecy {
    margin-top: 16px;
  }

  .label {
    padding: 24px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
  }

  .label-title {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .label-section {
    padding-top: 10px;
  }

  .label-heading {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .label-text,
  .legal-text {
    font-size: 13px;
    line-height: 1.82;
  }

  .label-list1 {
    margin-left: 1.1em;
    gap: 2px;
  }

  .label-list1 li {
    font-size: 13px;
    line-height: 1.8;
  }

  .pinfo-policy-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .pinfo-policy-list {
    gap: 8px;
  }

  .pinfo-policy-item-title {
    font-size: 14px;
  }

  .pinfo-policy-text,
  .pinfo-policy-contact,
  .pinfo-policy-manager {
    font-size: 13px;
    line-height: 1.82;
  }

  .pinfo-policy-contact {
    max-width: 100%;
  }

  .pinfo-policy-manager {
    text-align: left;
  }
}
