@charset "UTF-8";
:root {
  --green: #4CB54E; /* 完了・反映済・有効 */
  --pink: #F574A8; /* お知らせ・発信・舞台裏 */
  --orange: #ff6503; /* 行動・CTA・推進力 */
  --black: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-off: #9c9c9c;
  --gray-mid: #666;
  --gray-light:#d1d1d1;
  --white: #fff;
  --off-white: #f8f8f8;
  --bg-gray: #f0f0f0; /* ページ背景 */
  --success: #4CB54E; /* =グリーン：整合OK */
  --error: #d92d20; /* 赤 */
  --warning: #f87058; /* 薄い橙：ブランドorangeと区別 */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-12: 96px;
  --space-24: 192px; /* セクション間（4倍） */
  --radius-input: 8px; /* 入力・ボタン */
  --radius-card: 12px; /* カード */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --font-base: "Noto Sans JP", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

body {
  font-family: var(--font-base);
  color: var(--black);
  background-color: var(--bg-gray);
  line-height: 1.6;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

a {
  color: var(--black);
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
  padding-top: var(--space-6);
}
@media (max-width: 768px) {
  .container {
    padding-top: var(--space-4);
  }
}

.fc-form-inline-error {
  margin: 6px 0 0;
  color: var(--error);
  font-size: 0.8125rem;
  line-height: 1.4;
}

input.is-inline-invalid:not([type=checkbox]):not([type=radio]),
select.is-inline-invalid,
textarea.is-inline-invalid {
  border-color: var(--error);
  background: #fff7f6;
}

input[type=checkbox].is-inline-invalid,
input[type=radio].is-inline-invalid {
  outline: 1px solid var(--error);
  outline-offset: 1px;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --fade-duration: 820ms;
  --fade-pseudo-duration: 1080ms;
  --fade-delay: 0ms;
  --fade-distance: 22px;
  --fade-blur: 3px;
  --fade-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-fade].is-fade-ready {
  opacity: 0;
  transform: translate3d(0, var(--fade-distance), 0);
  filter: blur(var(--fade-blur));
  transition: opacity var(--fade-duration) var(--fade-ease) var(--fade-delay), transform calc(var(--fade-duration) + 120ms) var(--fade-ease) var(--fade-delay), filter calc(var(--fade-duration) + 120ms) var(--fade-ease) var(--fade-delay);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

[data-fade].is-fade-ready.is-fade-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

[data-fade-onload] {
  opacity: 0;
  transform: translate3d(0, var(--fade-distance), 0);
  filter: blur(var(--fade-blur));
  animation-name: fade-onload-enter;
  animation-duration: calc(var(--fade-duration) + 120ms);
  animation-timing-function: var(--fade-ease);
  animation-delay: var(--fade-delay);
  animation-fill-mode: both;
  animation-play-state: paused;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

html.is-hero-onload-active [data-fade-onload] {
  animation-play-state: running;
}

@keyframes fade-onload-enter {
  from {
    opacity: 0;
    transform: translate3d(0, var(--fade-distance), 0);
    filter: blur(var(--fade-blur));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
[data-fade-pseudo].is-fade-ready::before,
[data-fade-pseudo].is-fade-ready::after {
  opacity: 0;
  transition: opacity var(--fade-pseudo-duration, var(--fade-duration)) var(--fade-ease) var(--fade-delay);
  will-change: opacity;
}

[data-fade-pseudo].is-fade-ready.is-fade-visible::before,
[data-fade-pseudo].is-fade-ready.is-fade-visible::after {
  opacity: var(--fade-pseudo-opacity, 1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --fade-distance: 0px;
    --fade-blur: 0px;
  }
  [data-fade].is-fade-ready,
  [data-fade-pseudo].is-fade-ready::before,
  [data-fade-pseudo].is-fade-ready::after {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }
  [data-fade-onload] {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--green);
}
header nav {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 96%;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
header nav .site-nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
header nav .site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--white);
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
header nav .site-nav__toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 768px) {
  header nav {
    flex-wrap: nowrap;
    gap: 10px;
  }
  header nav .site-nav__toggle {
    display: inline-flex;
  }
  header nav .site-nav__menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 4%;
    background: var(--white);
    border-bottom: 1px solid var(--green);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.12);
  }
}
header nav a {
  position: relative;
  color: var(--black);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.09em;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
header nav a[data-ja]:not(.schedule)::before {
  content: attr(data-ja);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-base);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}
header nav a[data-ja]:not(.schedule):hover, header nav a[data-ja]:not(.schedule).is-current {
  color: transparent;
  font-family: var(--font-base);
  font-size: 0.8rem;
}
header nav a[data-ja]:not(.schedule):hover::before, header nav a[data-ja]:not(.schedule).is-current::before {
  opacity: 1;
  color: var(--green);
}
header nav a:not(.logo):not(.schedule)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}
header nav a:not(.logo):not(.schedule):hover::after, header nav a:not(.logo):not(.schedule).is-current::after {
  width: 100%;
}
header nav a.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  margin-right: auto;
  padding-bottom: 0;
}
header nav a.logo .logo__image {
  width: clamp(44px, 3.2vw, 62px);
  height: auto;
  flex-shrink: 0;
}
header nav a.logo .logo__text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  header nav a.logo {
    width: auto;
    text-align: left;
    margin-right: 0;
    gap: 8px;
  }
}
header nav a.schedule {
  color: var(--white);
  padding: 0.4em 0.8em;
  z-index: 0;
}
header nav a.schedule::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orange);
  clip-path: polygon(6% 18%, 96% 4%, 90% 86%, 40% 100%, 0% 60%);
  z-index: -1;
  transition: background 0.3s ease;
}
header nav a.schedule::after {
  content: attr(data-ja);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-base);
  letter-spacing: 0.05em;
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}
header nav a.schedule:hover {
  color: transparent;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 900;
}
header nav a.schedule:hover::before {
  background: var(--gray-light);
  width: 131px;
  height: 43px;
}
header nav a.schedule:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  header.is-menu-open nav .site-nav__menu {
    display: flex;
  }
}
header.is-menu-open nav .site-nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.is-menu-open nav .site-nav__toggle-line:nth-child(2) {
  opacity: 0;
}
header.is-menu-open nav .site-nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  body.is-nav-open {
    overflow: hidden;
  }
  header nav a[data-ja]:not(.schedule)::before {
    display: none;
  }
  header nav a[data-ja]:not(.schedule):hover {
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
  }
  header nav a[data-ja]:not(.schedule).is-current {
    color: var(--green);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
  }
  header nav a[data-ja]:not(.schedule):hover::before,
  header nav a[data-ja]:not(.schedule).is-current::before {
    opacity: 0;
  }
  header nav a:not(.logo):not(.schedule)::after {
    display: none;
  }
  header nav .site-nav__menu a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
  }
  header nav .site-nav__menu a.schedule {
    width: auto;
    margin-top: 8px;
    border-bottom: 0;
    padding: 0.4em 0.8em;
  }
  header nav a.schedule:hover {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
  }
  header nav a.schedule:hover::before {
    background: var(--orange);
    width: auto;
    height: auto;
  }
  header nav a.schedule:hover::after {
    opacity: 0;
  }
}
body.admin-bar header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar #wpadminbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateZ(0);
    will-change: transform;
  }
  body.admin-bar header {
    top: 46px;
  }
}
footer.site-footer {
  padding: clamp(56px, 8vw, 96px) 0 28px;
  color: var(--gray-dark);
  background: var(--gray-light);
}

.site-footer__inner {
  width: min(960px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-footer__links a,
.site-footer__account a {
  color: #3e3e3e;
  text-decoration: none;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.45;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__account a:hover,
.site-footer__account a:focus-visible {
  text-decoration: underline;
}

.site-footer__brand {
  margin-top: clamp(48px, 7vw, 96px);
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  display: block;
  width: clamp(260px, 30vw, 460px);
  height: auto;
}

.site-footer__copyright {
  margin: 20px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6a6a6a;
}

.site-footer__account {
  margin-top: clamp(28px, 4vw, 56px);
}

@media (max-width: 768px) {
  html {
    background-color: var(--gray-light);
  }
  footer.site-footer {
    padding: var(--space-3) 0 calc(var(--space-2) + 8px + env(safe-area-inset-bottom, 0px));
  }
  .site-footer__links {
    gap: 8px;
  }
  .site-footer__account {
    margin-top: 20px;
  }
  .site-footer__brand {
    margin-top: 36px;
  }
  .site-footer__logo img {
    width: min(340px, 76vw);
  }
  .site-footer__copyright {
    margin-top: 12px;
    font-size: 0.8125rem;
  }
}
.page-top-button {
  position: fixed;
  right: 1%;
  bottom: 30%;
  z-index: 900;
  color: var(--green);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.page-top-button:hover, .page-top-button:focus-visible {
  opacity: 0.72;
}
.page-top-button__arrow {
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 2px;
}
.page-top-button__label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media (prefers-reduced-motion: reduce) {
  .page-top-button {
    transition: none;
  }
}

.fanclub-top {
  overflow-x: hidden;
}

.hero {
  --hero-curve-width: 100%;
  --hero-curve-height: 110%;
  position: relative;
  background-image: linear-gradient(135deg, rgba(8, 20, 45, 0.78) 0%, rgba(8, 20, 45, 0.62) 45%, rgba(8, 20, 45, 0.82) 100%), url("../img/top/FV.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
  clip-path: ellipse(var(--hero-curve-width) var(--hero-curve-height) at 50% 0%);
  -webkit-clip-path: ellipse(var(--hero-curve-width) var(--hero-curve-height) at 50% 0%);
  margin-bottom: var(--space-24);
  position: relative;
  height: 90vh;
}
@media (max-width: 768px) {
  .hero {
    --hero-curve-width: 118%;
    --hero-curve-height: 106%;
    height: auto;
    min-height: 80vh;
    height: 80vh;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3) clamp(92px, 14vh, 148px);
  height: 66%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    padding-bottom: clamp(82px, 16vw, 120px);
  }
}
.hero__contents {
  display: flex;
  align-items: center;
  margin-top: var(--space-3);
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero__contents {
    flex-direction: column;
  }
}
.hero__logo {
  --hero-fade-duration: 1120ms;
  --hero-fade-delay: 120ms;
  --hero-fade-distance: 54px;
  --hero-fade-blur: 6px;
  width: min(230px, 48vw);
  height: auto;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .hero__logo {
    --hero-fade-distance: 36px;
    --hero-fade-blur: 4px;
  }
}
.hero__title {
  --hero-fade-duration: 1320ms;
  --hero-fade-delay: 420ms;
  --hero-fade-distance: 36px;
  --hero-fade-blur: 4px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 8.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2196078431);
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
  z-index: 0;
  position: relative;
  margin-right: 2%;
}
@media (max-width: 768px) {
  .hero__title {
    --hero-fade-distance: 24px;
    --hero-fade-blur: 3px;
    font-size: 5rem;
  }
}
.hero__logo, .hero__title {
  opacity: 0;
  transform: translate3d(0, var(--hero-fade-distance, 32px), 0);
  filter: blur(var(--hero-fade-blur, 3px));
  animation-name: hero-fade-in;
  animation-duration: var(--hero-fade-duration, 1000ms);
  animation-delay: var(--hero-fade-delay, 0ms);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  animation-play-state: paused;
  will-change: opacity, transform, filter;
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo, .hero__title {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}
.hero__scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(2px, 1.2vh, 12px);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--green);
  z-index: 3;
  opacity: 0;
  animation: hero-scroll-fade 720ms ease 980ms forwards;
}
.hero__scroll-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  line-height: 1;
}
.hero__scroll-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
  animation: hero-scroll-bounce 1.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-indicator {
    opacity: 1;
    animation: none;
  }
  .hero__scroll-arrow {
    animation: none;
  }
}

html.is-hero-onload-active .hero__logo,
html.is-hero-onload-active .hero__title {
  animation-play-state: running;
}

.hero-report {
  position: absolute;
  z-index: 2;
  width: min(900px, 78vw);
  margin: auto 0 0 auto;
  text-align: left;
  right: 3%;
  bottom: 10%;
  top: calc(90vh - 500px);
}
@media (max-width: 768px) {
  .hero-report {
    width: 88%;
    right: unset;
    top: 50%;
  }
}
.hero-report__header {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 1.8vw, 28px);
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .hero-report__header {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
  }
}
.hero-report__title.section-title {
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
}
.hero-report__title.section-title::before {
  background: rgba(255, 255, 255, 0.4196078431);
}
.hero-report__title.section-title .accent {
  color: var(--green);
}
.hero-report__new {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.8;
  color: #ff2323;
}
.hero-report__more.link-more {
  margin-left: auto;
  color: var(--green);
  border-color: var(--green);
  background: rgba(216, 244, 211, 0.3882352941);
  white-space: nowrap;
  background: var(--green);
  color: var(--white);
}
.hero-report__more.link-more:hover {
  background: var(--green);
  color: var(--white);
  color: var(--green);
  background: rgba(216, 244, 211, 0.3882352941);
}
@media (max-width: 768px) {
  .hero-report__more.link-more {
    padding: 8px 12px;
    font-size: 0.6rem;
  }
}
.hero-report__card {
  margin: 0;
}
.hero-report__slider {
  position: relative;
  display: grid;
  overflow: hidden;
}
.hero-report__slider .match-report-card__link {
  background: rgba(255, 255, 255, 0.6);
}
.hero-report__slider .match-report-card__main {
  background-color: unset;
}
.hero-report__slider .match-report-card__opponent {
  color: var(--gray-dark);
}
.hero-report__slider .match-report-card__team-name {
  color: var(--gray-dark);
}
.hero-report__slider .match-report-card__date-block {
  color: var(--gray-dark);
}
.hero-report__slider .match-report-card__badge--win, .hero-report__slider .match-report-card--win .match-report-card__score .match-report-card__score-num:first-of-type,
.hero-report__slider .match-report-card--win .match-report-card__score-mobile--for, .hero-report__slider .match-report-card__score-num, .hero-report__slider .match-report-card__score-sep {
  text-shadow: 0 0 rgb(255, 255, 255);
  text-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
}
.hero-report__slide {
  grid-area: 1/1;
  width: 100%;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 620ms;
  will-change: opacity, transform;
}
.hero-report__slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}
.hero-report__slide.is-entering {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  visibility: visible;
  pointer-events: none;
  z-index: 2;
  transition: none;
}
.hero-report__slide.is-leaving {
  opacity: 0;
  transform: translate3d(0, -28px, 0);
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}
.hero-report__card-head {
  position: relative;
}
.hero-report__card-head .match-report-card__title {
  padding-right: clamp(88px, 10vw, 152px);
  background-color: var(--gray-light);
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-mid);
}
.hero-report__next {
  position: absolute;
  top: 50%;
  right: clamp(12px, 2vw, 30px);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: clamp(66px, 6vw, 102px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-shadow: 0 0 rgb(255, 255, 255);
  text-decoration: none;
}
.hero-report__next:hover {
  transform: translateY(-50%) translateX(4px);
}
.hero-report__next:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.hero-report--info .hero-report__title.section-title .accent {
  color: var(--orange);
}
.hero-report--info .hero-report__more.link-more {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.hero-report--info .hero-report__more.link-more:hover {
  color: var(--orange);
  background: rgba(242, 219, 205, 0.7294117647);
}
.hero-report--info .hero-report__next--header {
  position: static;
  top: auto;
  right: auto;
  transform: none;
  min-width: auto;
  padding: 0;
  color: var(--orange);
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  line-height: 1;
}
.hero-report--info .hero-report__next--header:hover {
  transform: translateX(4px);
}
.hero-report--info .hero-info__news-item {
  margin: 0;
  background: rgba(255, 255, 255, 0.8117647059);
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, var(--hero-fade-distance, 32px), 0);
    filter: blur(var(--hero-fade-blur, 3px));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes hero-scroll-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-scroll-bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}
.section {
  position: relative;
  isolation: isolate;
  margin-bottom: calc(var(--space-24) * 2);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: calc(var(--space-12) * 2);
  }
}
.section > * {
  position: relative;
  z-index: 1;
}
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
@media (max-width: 768px) {
  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }
}

.section--news,
.section--photo,
.section--video {
  --section-overlay-opacity: 0.95;
  --fade-pseudo-opacity: var(--section-overlay-opacity);
  z-index: 0;
  padding: 4%;
}
.section--news::before,
.section--photo::before,
.section--video::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  opacity: var(--section-overlay-opacity);
}
.section--news::after,
.section--photo::after,
.section--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, calc(100% - 65px) 0, 100% 65px, 100% 100%, 65px 100%, 0 calc(100% - 65px));
}
.section--news > *,
.section--photo > *,
.section--video > * {
  z-index: 2;
}
@media (max-width: 768px) {
  .section--news::before,
  .section--photo::before,
  .section--video::before {
    background-attachment: scroll;
    background-position: center calc(50% + var(--section-parallax-y, 0px));
    transform: translate3d(0, calc(var(--section-parallax-y, 0px) * -0.35), 0);
    will-change: transform, background-position;
    opacity: var(--section-overlay-opacity);
  }
}

.section--news::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/top/top_section_1-opt.jpg");
  width: 100%;
  height: 138%;
  right: 24%;
  top: -11%;
}
@media (max-width: 768px) {
  .section--news::before {
    background-position: left calc(50% + var(--section-parallax-y, 0px));
    right: -2%;
    top: -13%;
    width: 92%;
    height: 120%;
    background-size: contain;
    background-repeat: repeat-y;
  }
}

.section--photo::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/top/top_section_2-opt.jpg");
  width: 100%;
  height: 123%;
  left: 20%;
  top: -6%;
}
@media (max-width: 768px) {
  .section--photo::before {
    left: -2%;
    top: -13%;
    height: 128%;
    width: 90%;
  }
}

.section--video::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/top/top_section_3-opt.jpg");
  width: 100%;
  height: 130%;
  right: 20%;
  top: -10%;
}
@media (max-width: 768px) {
  .section--video::before {
    height: 135%;
    right: -2%;
    top: -18%;
    width: 90%;
  }
}

.section-title {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.07em;
  color: var(--gray-dark);
  padding: 0.3em 0.8em 0.3em 0.5em;
  line-height: 0.5;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--gray-off);
  clip-path: polygon(6% 18%, 96% 4%, 90% 86%, 40% 100%, 0% 60%);
  z-index: -1;
}
.section-title .accent {
  font-size: 1.5em; /* 最初の1文字を大きく */
  color: var(--pink); /* ピンク色 */
  margin-right: 0.05em;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--orange);
  text-decoration: none;
  padding: 14px 28px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  transition: all 0.3s ease;
  background: var(--orange);
  color: var(--white);
}
.link-more::after {
  content: "→";
}
.link-more:hover {
  color: var(--orange);
  background: rgba(242, 219, 205, 0.7294117647);
}

.no-content {
  padding: var(--space-4) 0;
  text-align: center;
  color: var(--bg-gray);
  font-size: 1rem;
}

.section--news {
  --news-title-size: 1.2rem;
  --news-date-size: 1.6rem;
  --news-category-size: 0.9rem;
  --news-excerpt-size: 0.9rem;
  --news-arrow-size: 2rem;
}
.section--news .section-title .accent {
  color: var(--orange); /* NEWS accent */
}
@media (max-width: 768px) {
  .section--news {
    --news-title-size: 1.1rem;
    --news-date-size: 1.3rem;
    --news-category-size: 0.7rem;
    --news-excerpt-size: 0.9rem;
    --news-arrow-size: 1.8rem;
  }
}

.hero-info__news-item {
  --news-title-size: 1.2rem;
  --news-date-size: 1.6rem;
  --news-category-size: 0.9rem;
  --news-excerpt-size: 0.9rem;
  --news-arrow-size: 2rem;
}
@media (max-width: 768px) {
  .hero-info__news-item {
    --news-title-size: 1.1rem;
    --news-date-size: 1.3rem;
    --news-category-size: 0.7rem;
    --news-excerpt-size: 0.9rem;
    --news-arrow-size: 1.8rem;
  }
}

.section--report .section-title .accent {
  color: var(--green);
}
.section--report .link-more {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.section--report .link-more:hover {
  color: var(--green);
  background: rgba(216, 244, 211, 0.3882352941);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.match-report-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.section--news.section--report .match-report-card__main {
  background-color: var(--off-white);
}

.section--news.section--report .match-report-card.is-disabled .match-report-card__link {
  background-color: var(--off-white);
  background-image: none;
  opacity: 1;
}

.news-item {
  position: relative;
  background: var(--gray-light);
  border-left: 4px solid var(--orange);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.news-item:hover {
  background: var(--white);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.08);
}
.news-item__link {
  display: grid;
  grid-template-columns: minmax(114px, 120px) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(20px, 3vw, 44px);
  padding: 2%;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1024px) {
  .news-item__link {
    column-gap: 22px;
  }
}
@media (max-width: 768px) {
  .news-item__link {
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    row-gap: 12px;
    padding: 20px 16px 34px;
  }
}
.news-item__body {
  min-width: 0;
}
.news-item__new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--gray-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.news-item__category {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: var(--news-category-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.news-item__title {
  margin: 0;
  font-size: var(--news-title-size);
  font-weight: 700;
  color: var(--gray-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__excerpt {
  margin: 12px 0 0;
  color: var(--gray-mid);
  font-size: var(--news-excerpt-size);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-item__excerpt {
    margin-top: 10px;
  }
}
.news-item__date {
  color: var(--gray-mid);
  font-family: var(--font-display);
  font-size: var(--news-date-size);
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-item__date {
    grid-column: 1/-1;
  }
}
.news-item__arrow {
  color: var(--orange);
  font-size: var(--news-arrow-size);
  line-height: 1;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .news-item__arrow {
    align-self: end;
    padding-bottom: 2px;
  }
}
.news-item:hover .news-item__arrow {
  transform: translateX(4px);
}

.section--photo .link-more {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}
.section--photo .link-more:hover {
  background-color: rgba(241, 222, 229, 0.7294117647);
  color: var(--pink);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}
@media (max-width: 768px) {
  .card-grid--thumb {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card__thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--gray-dark);
  overflow: hidden;
}
.card__thumb--placeholder {
  background: var(--gray-dark);
}
.card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gray-mid);
  opacity: 0.3;
  border-radius: 8px;
}

.section--video .link-more {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}
.section--video .link-more:hover {
  color: var(--pink);
  background-color: rgba(241, 222, 229, 0.7294117647);
}

.video-featured {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  padding: var(--space-3);
}
.video-featured__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.video-featured__player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.video-featured__player:hover .video-featured__play-icon {
  transform: scale(1.1);
}
.video-featured__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-featured__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray-dark);
}
.video-featured__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video-featured__play-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .video-featured__play-icon {
    width: 60px;
    height: 60px;
  }
}
.video-featured__duration {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 1;
}
.video-featured__info {
  margin-top: var(--space-2);
  padding: 0 var(--space-1);
}
.video-featured__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 var(--space-1) 0;
  color: var(--black);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .video-featured__title {
    font-size: 0.875rem;
  }
}
.video-featured__date {
  display: block;
  font-size: 0.6875rem;
  color: var(--gray-mid);
}

.gallery-grid {
  display: grid;
  gap: var(--space-2);
}

.gallery-grid--photo {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-grid--photo .gallery-card:nth-child(n+4) {
  display: none;
}
@media (max-width: 1024px) {
  .gallery-grid--photo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid--photo .gallery-card:nth-child(n+4) {
    display: block;
  }
}
@media (max-width: 768px) {
  .gallery-grid--photo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gallery-grid--video {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-grid--video .gallery-card:nth-child(n+3) {
  display: none;
}
@media (max-width: 768px) {
  .gallery-grid--video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid--video .gallery-card:nth-child(n+3) {
    display: block;
  }
}

.gallery-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 0;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow: 0 4px 10px rgba(26, 26, 26, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.gallery-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.16);
  border-color: #cfcfcf;
}
.gallery-card:focus-within .gallery-card__img {
  transform: scale(1.06);
}
.gallery-card:focus-within .gallery-card__media::after {
  opacity: 1;
}
.gallery-card:focus-within .gallery-card__play {
  transform: translate(-50%, -50%) scale(1.12);
}
.gallery-card:focus-within .gallery-card__duration {
  transform: translateY(-1px);
}
.gallery-card:focus-within .gallery-card__body {
  background: #dfdfdf;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.16);
    border-color: #cfcfcf;
  }
  .gallery-card:hover .gallery-card__img {
    transform: scale(1.06);
  }
  .gallery-card:hover .gallery-card__media::after {
    opacity: 1;
  }
  .gallery-card:hover .gallery-card__play {
    transform: translate(-50%, -50%) scale(1.12);
  }
  .gallery-card:hover .gallery-card__duration {
    transform: translateY(-1px);
  }
  .gallery-card:hover .gallery-card__body {
    background: #dfdfdf;
  }
}
.gallery-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-card__link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.gallery-card__media {
  position: relative;
  aspect-ratio: 16/9;
  background: #d8d8d8;
  overflow: hidden;
}
.gallery-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.32) 0%, rgba(26, 26, 26, 0) 64%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.gallery-card__media--placeholder {
  background: var(--gray-dark);
}
.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}
.gallery-card__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.2);
}
.gallery-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.25s ease;
}
.gallery-card__play-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: filter 0.25s ease;
}
.gallery-card__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  border-radius: 0;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  padding: 5px 6px;
  transition: transform 0.24s ease;
}
.gallery-card__body {
  padding: 8px 10px 10px;
  background: var(--gray-light);
  transition: background-color 0.24s ease;
}
.gallery-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.24s ease;
}
.gallery-card__date {
  display: block;
  font-size: 0.625rem;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
  transition: color 0.24s ease;
}

.section--photo .gallery-card--photo {
  border-left: 4px solid var(--pink);
}
.section--photo .gallery-card--photo .gallery-card__media {
  aspect-ratio: 6/8;
}
.section--photo .gallery-card--photo:is(:hover, :focus-within) .gallery-card__title {
  color: var(--pink);
}

.section--video .gallery-card--video:is(:hover, :focus-within) .gallery-card__title {
  color: var(--green);
}
.section--video .gallery-card--video:is(:hover, :focus-within) .gallery-card__play-icon {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.34));
}

.fanclub-top__mypage-sidebar-section {
  margin: 0 0 var(--space-12);
  padding: clamp(20px, 3.6vw, 34px);
  position: relative;
}
.fanclub-top__mypage-sidebar-section .section__header {
  position: relative;
  z-index: 1;
}
.fanclub-top__mypage-sidebar-section::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, calc(100% - 65px) 0, 100% 65px, 100% 100%, 65px 100%, 0 calc(100% - 65px));
}
.fanclub-top__mypage-sidebar-section .fanclub-top__mypage-title .accent {
  color: var(--green);
}
.fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top {
  position: static;
  top: auto;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}
.fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top .fc-mypage__profile {
  width: 100%;
  max-width: 300px;
  margin: 0;
}
.fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top .fc-mypage__menu {
  margin-top: 0;
}
.fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top .fc-mypage__menu ul {
  padding-bottom: 0;
}
.fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top .fc-mypage__menu a {
  padding: 19px 18px;
}

@media (max-width: 768px) {
  .fanclub-top__mypage-sidebar-section {
    padding: var(--space-2);
  }
  .fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top .fc-mypage__menu a {
    padding: 12px 18px;
  }
  .fanclub-top__mypage-sidebar-section .fc-mypage__sidebar--top .fc-mypage__profile {
    max-width: none;
  }
}
.fc-guide {
  padding: 0 0 var(--space-6);
  overflow: hidden;
}

.fc-guide > .container {
  position: relative;
  z-index: 1;
  padding-top: var(--space-3);
}

.fc-guide__editor[id],
.fc-guide__block[id],
.fc-guide__subblock[id] {
  scroll-margin-top: 104px;
}

body.admin-bar .fc-guide__editor[id],
body.admin-bar .fc-guide__block[id],
body.admin-bar .fc-guide__subblock[id] {
  scroll-margin-top: 146px;
}

.fc-guide__sticky-cta {
  position: fixed;
  right: clamp(10px, 2vw, 22px);
  z-index: 1200;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(170px, 18vw, 240px);
  min-height: 92px;
  padding: 10px 12px 9px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, #ff5a00 0%, #e66fa8 100%);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 26px rgba(16, 16, 16, 0.24), 0 6px 0 rgba(108, 26, 6, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -10px 14px rgba(100, 24, 10, 0.24);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, filter 0.28s ease, background-image 0.34s ease;
  will-change: transform, box-shadow;
}

.fc-guide__sticky-cta::before {
  content: "";
  position: absolute;
  inset: 4px 16px 48% 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-9deg);
  pointer-events: none;
}

.fc-guide__sticky-cta--bottom {
  bottom: calc(30px + env(safe-area-inset-bottom));
}

.fc-guide__sticky-sub,
.fc-guide__sticky-main {
  display: block;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fc-guide__sticky-sub {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.fc-guide__sticky-main {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.fc-guide__sticky-dot {
  display: block;
  margin: 2px 0 1px;
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  line-height: 1;
}

.fc-guide__sticky-sub,
.fc-guide__sticky-main,
.fc-guide__sticky-dot {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(20, 20, 20, 0.24);
}

.fc-guide__sticky-cta:focus-visible,
.fc-guide__sticky-cta:hover {
  color: #fff;
  background-image: linear-gradient(146deg, #ff5a00 0%, #e66fa8 100%);
  filter: brightness(1.1);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 20px 36px rgba(16, 16, 16, 0.32), 0 8px 0 rgba(108, 26, 6, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -12px 16px rgba(100, 24, 10, 0.28);
}

.fc-guide__sticky-cta:active {
  filter: brightness(1.03);
  transform: translateY(2px) scale(1.01);
  box-shadow: 0 10px 18px rgba(16, 16, 16, 0.24), 0 2px 0 rgba(108, 26, 6, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -8px 12px rgba(100, 24, 10, 0.2);
}

.fc-guide__hero {
  margin-bottom: 18px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--gray-light);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px));
  background-color: var(--gray-dark);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  align-items: end;
  column-gap: clamp(16px, 2.6vw, 34px);
  row-gap: 10px;
}

.fc-guide__hero-intro {
  min-width: 0;
}

.fc-guide__hero-flag {
  margin: 0;
  width: min(100%, 470px);
  justify-self: end;
  align-self: end;
}

.fc-guide__hero-flag img {
  display: block;
  width: 100%;
  height: auto;
}

.fc-guide__kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.86);
}

.fc-guide__title {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  line-height: 1.4;
}

.fc-guide__lead {
  margin: 10px 0 0;
  font-size: 1.2rem;
  line-height: 1.75;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  background: var(--gray-dark);
  padding: 18px;
  font-weight: 600;
  width: fit-content;
}

.fc-guide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.fc-guide__meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
}

.fc-guide__draft-note {
  margin: 10px 0 0;
  color: var(--gray-mid);
  font-size: 0.8125rem;
}

.fc-guide__hero .fc-guide__draft-note {
  color: rgba(255, 255, 255, 0.82);
}

.fc-guide__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.fc-guide__hero-actions .fc-auth__register-btn {
  min-width: 156px;
}

.fc-guide__anchor {
  margin-top: 12px;
  grid-column: 1/-1;
}

.fc-guide__anchor ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.fc-guide__anchor a {
  min-height: 60px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  text-align: center;
  padding: var(--space-2);
  text-decoration: none;
  border: 3px solid rgba(255, 101, 3, 0.7803921569);
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, filter 0.28s ease;
}

.fc-guide__anchor a:hover,
.fc-guide__anchor a:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 101, 3, 0.16);
  color: var(--orange);
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.fc-guide__anchor a:active {
  transform: translateY(-1px);
}

.fc-guide__editor,
.fc-guide__block,
.fc-guide__final {
  margin-bottom: 14px;
}

section.fc-guide__block {
  margin-bottom: 100px;
}

.fc-guide__panel {
  padding: clamp(16px, 2.2vw, 24px);
}

.fc-guide__panel > :first-child {
  margin-top: 0;
}

.fc-guide__panel > :last-child {
  margin-bottom: 0;
}

.fc-guide__block-title {
  margin: 0 0 32px;
  padding-left: 10px;
  color: var(--gray-dark);
  font-size: clamp(1.3rem, 2.2vw, 1.4rem);
  line-height: 1.4;
  padding: 18px;
  width: fit-content;
  color: var(--gray-mid);
  background: rgba(216, 244, 211, 0.77);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.fc-guide__block-lead {
  margin: 0 0 12px;
  color: var(--gray-mid);
  font-size: 0.9375rem;
}

.fc-guide__join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fc-guide__join-card {
  padding: 14px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
}

.fc-guide__join-card h3 {
  margin: 0 0 8px;
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-guide__join-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

.fc-guide__join-card p + p {
  margin-top: 10px;
}

.fc-guide__inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.fc-guide__inline-actions .fc-auth__register-btn {
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.26s ease, background-color 0.26s ease, border-color 0.26s ease, color 0.26s ease, filter 0.26s ease;
}

.fc-guide__inline-actions .fc-auth__register-btn.fc-auth__button.fc-auth__button--register {
  border-radius: 0;
  background: #f2d9c9;
  border-color: #f2d9c9;
}

.fc-guide__inline-actions .fc-auth__register-btn:hover,
.fc-guide__inline-actions .fc-auth__register-btn:focus-visible {
  transform: translateY(-3px);
  background: #ffefe4;
  border-color: var(--orange);
  color: var(--orange);
  filter: brightness(1.03);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.fc-guide__inline-actions .fc-auth__register-btn:active {
  transform: translateY(-1px);
}

.fc-guide__text-link {
  color: var(--gray-dark);
  font-size: 0.875rem;
  text-decoration-color: transparent;
  transition: color 0.24s ease, text-decoration-color 0.24s ease, opacity 0.24s ease;
}

.fc-guide__text-link:hover,
.fc-guide__text-link:focus-visible {
  color: var(--orange);
  text-decoration-color: currentColor;
}

.fc-guide__flow-list a {
  text-underline-offset: 0.18em;
  transition: color 0.24s ease, text-decoration-color 0.24s ease, opacity 0.24s ease;
}

.fc-guide__flow-list a:hover,
.fc-guide__flow-list a:focus-visible {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  .fc-guide__anchor a,
  .fc-guide__inline-actions .fc-auth__register-btn,
  .fc-guide__text-link,
  .fc-guide__flow-list a {
    transition-duration: 1ms;
    transform: none !important;
  }
}
.fc-guide__table-wrap {
  overflow-x: auto;
  padding: 3%;
}

.fc-guide__table-wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url(../img/top/dot.png);
  background-size: cover;
  clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 45px, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}

.fc-guide__table-wrap {
  position: relative;
}

.fc-guide__fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--gray-light);
}

.fc-guide__fee-table th,
.fc-guide__fee-table td {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
  font-size: 1.2rem;
  font-weight: 600;
}

.fc-guide__fee-table th {
  color: var(--gray-mid);
  font-weight: 700;
}

.fc-guide__benefit-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
  padding: 3%;
  position: relative;
}
.fc-guide__benefit-grid:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url(../img/top/dot.png);
  background-size: contain;
  clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 45px, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}

.fc-guide__benefit-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--gray-light);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.fc-guide__benefit-media {
  position: relative;
  width: 100%;
  background: var(--gray-light);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, #9E9E9E 52%, #9E9E9E 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5%;
  max-height: 350px;
}

.fc-guide__benefit-badge {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--off-white);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  line-height: 1;
  white-space: nowrap;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  pointer-events: none;
}

.fc-guide__benefit-media img {
  display: block;
  width: 77%;
  height: auto;
}

.fc-guide__benefit-placeholder {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  color: var(--gray-mid);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.fc-guide__benefit-text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--green);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 0px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  padding: 3% 5%;
  min-height: 108px;
}

.fc-guide__benefit-card h3 {
  margin: 10px 0 6px;
  font-size: 1.3rem;
  color: var(--off-white);
}

.fc-guide__benefit-card p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.65;
}

.fc-guide__bundle {
  display: grid;
  gap: 60px;
}

.fc-guide__subblock {
  padding-top: 12px;
  border-top: 1px solid #ececec;
  position: relative;
  padding: 2%;
}
.fc-guide__subblock:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url(../img/top/dot.png);
  background-size: cover;
  clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 45px, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}

.fc-guide__subblock > * {
  position: relative;
  z-index: 1;
}

.fc-guide__subblock:first-child {
  padding-top: 0;
  border-top: 0;
}

.fc-guide__sub-title {
  margin: 0 0 30px;
  color: var(--gray-dark);
  font-size: 1.2rem;
}

.fc-guide__subblock p {
  margin: 0;
  color: var(--gray-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

.fc-guide__subblock p + p {
  margin-top: 10px;
}

.fc-guide__flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: fc-guide-flow;
  padding: 3%;
  position: relative;
}

.fc-guide__flow-list li {
  position: relative;
  margin: 0;
  padding: 2% 2% 2% 38px;
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.7;
  background: var(--gray-light);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.fc-guide__flow-list li + li {
  margin-top: 8px;
}

.fc-guide__flow-list li::before {
  counter-increment: fc-guide-flow;
  content: counter(fc-guide-flow);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.fc-guide__faq-list {
  display: grid;
  gap: 8px;
  position: relative;
  padding: 3%;
}

.fc-guide__faq-item {
  border: 1px solid #e6e6e6;
  background: #fcfcfc;
}

.fc-guide__faq-item summary {
  cursor: pointer;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.fc-guide__faq-item p {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--gray-mid);
  font-size: 0.875rem;
}

.fc-guide__panel--cta {
  text-align: center;
}

.fc-guide__cta-title {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
}

.fc-guide__panel--cta p {
  margin: 0;
  color: var(--gray-mid);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .fc-guide {
    padding-bottom: var(--space-4);
  }
  .fc-guide > .container {
    padding-top: var(--space-2);
  }
  .fc-guide__hero {
    padding: 16px 14px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .fc-guide__hero-intro {
    order: 1;
  }
  .fc-guide__hero-flag {
    order: 2;
    width: min(100%, 360px);
    justify-self: left;
  }
  .fc-guide__anchor {
    order: 3;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .fc-guide__anchor ul {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    padding-bottom: 2px;
  }
  .fc-guide__anchor li {
    flex: 0 0 min(170px, 46vw);
  }
  .fc-guide__anchor a {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
  }
  .fc-guide__hero-actions .fc-auth__register-btn {
    width: 100%;
  }
  .fc-guide__join-grid {
    grid-template-columns: 1fr;
  }
  .fc-guide__inline-actions .fc-auth__register-btn {
    width: 100%;
  }
  .fc-guide__fee-table {
    min-width: 100%;
  }
  .fc-guide__sticky-cta {
    right: 10px;
    width: min(58vw, 220px);
    min-height: 84px;
    padding: 9px 10px 8px;
  }
  .fc-guide__sticky-cta--bottom {
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
  .fc-guide__sticky-sub,
  .fc-guide__sticky-main {
    font-size: clamp(1.4rem, 5.8vw, 2rem);
  }
  .fc-guide__editor[id],
  .fc-guide__block[id],
  .fc-guide__subblock[id] {
    scroll-margin-top: 88px;
  }
  body.admin-bar .fc-guide__editor[id],
  body.admin-bar .fc-guide__block[id],
  body.admin-bar .fc-guide__subblock[id] {
    scroll-margin-top: 132px;
  }
  .fc-guide__benefit-media img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 580px) {
  .fc-guide__benefit-grid {
    grid-template-columns: 1fr;
  }
}
.page-template-page-login header,
.page-template-page-login-password header,
.page-template-page-register-email header,
.page-template-page-register-sent header,
.page-template-page-register-verify header,
.page-template-page-register-form header,
.page-template-page-register-confirm header {
  border-bottom: 1px solid #d9d9d9;
}
.page-template-page-login header nav,
.page-template-page-login-password header nav,
.page-template-page-register-email header nav,
.page-template-page-register-sent header nav,
.page-template-page-register-verify header nav,
.page-template-page-register-form header nav,
.page-template-page-register-confirm header nav {
  justify-content: center;
  max-width: 560px;
  padding: 0 var(--space-2);
}
.page-template-page-login header nav .site-nav__toggle,
.page-template-page-login header nav .site-nav__menu,
.page-template-page-login-password header nav .site-nav__toggle,
.page-template-page-login-password header nav .site-nav__menu,
.page-template-page-register-email header nav .site-nav__toggle,
.page-template-page-register-email header nav .site-nav__menu,
.page-template-page-register-sent header nav .site-nav__toggle,
.page-template-page-register-sent header nav .site-nav__menu,
.page-template-page-register-verify header nav .site-nav__toggle,
.page-template-page-register-verify header nav .site-nav__menu,
.page-template-page-register-form header nav .site-nav__toggle,
.page-template-page-register-form header nav .site-nav__menu,
.page-template-page-register-confirm header nav .site-nav__toggle,
.page-template-page-register-confirm header nav .site-nav__menu {
  display: none !important;
}
.page-template-page-login header nav a:not(.logo),
.page-template-page-login-password header nav a:not(.logo),
.page-template-page-register-email header nav a:not(.logo),
.page-template-page-register-sent header nav a:not(.logo),
.page-template-page-register-verify header nav a:not(.logo),
.page-template-page-register-form header nav a:not(.logo),
.page-template-page-register-confirm header nav a:not(.logo) {
  display: none;
}
.page-template-page-login header nav a.logo,
.page-template-page-login-password header nav a.logo,
.page-template-page-register-email header nav a.logo,
.page-template-page-register-sent header nav a.logo,
.page-template-page-register-verify header nav a.logo,
.page-template-page-register-form header nav a.logo,
.page-template-page-register-confirm header nav a.logo {
  margin-right: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.page-template-page-login footer,
.page-template-page-login-password footer,
.page-template-page-register-email footer,
.page-template-page-register-sent footer,
.page-template-page-register-verify footer,
.page-template-page-register-form footer,
.page-template-page-register-confirm footer {
  display: none;
}

.fc-auth {
  padding: var(--space-6) 0 var(--space-4);
}

.fc-auth__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  width: 96%;
  max-width: 560px;
  margin: 0 auto var(--space-3);
  padding: 0;
}

.fc-auth__steps li {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.fc-auth__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 4px;
  border-radius: 999px;
  background: var(--gray-off);
  z-index: 0;
}

.fc-auth__step-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
}

.fc-auth__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-off);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.fc-auth__step-label {
  color: var(--gray-off);
  white-space: nowrap;
}

.fc-auth__steps .is-current .fc-auth__step-chip {
  color: var(--success);
}

.fc-auth__steps .is-current .fc-auth__step-label {
  color: var(--success);
}

.fc-auth__steps .is-current .fc-auth__step-num {
  background: var(--success);
}

.fc-auth__steps .is-completed .fc-auth__step-chip {
  color: #eff9ef;
}

.fc-auth__steps .is-completed .fc-auth__step-label {
  color: #eff9ef;
}

.fc-auth__steps .is-completed .fc-auth__step-num {
  background: var(--success);
  font-size: 0;
}

.fc-auth__steps .is-completed .fc-auth__step-num::before {
  content: "✓";
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.fc-auth__steps .is-pending .fc-auth__step-chip {
  color: var(--gray-off);
}

.fc-auth__steps .is-pending .fc-auth__step-label {
  color: var(--gray-off);
}

.fc-auth__steps .is-completed::after {
  background: var(--success);
}

.fc-auth--verify-failed .fc-auth__steps .is-current .fc-auth__step-chip {
  color: var(--warning);
}

.fc-auth--verify-failed .fc-auth__steps .is-current .fc-auth__step-label {
  color: var(--warning);
}

.fc-auth--verify-failed .fc-auth__steps .is-current .fc-auth__step-num {
  background: var(--warning);
}

.fc-auth__steps-mobile {
  display: none;
}

.fc-auth .form-container {
  width: 96%;
  max-width: 560px;
  margin: 0 auto;
}

.fc-auth__form-container--wide {
  max-width: 760px;
}

.fc-auth__card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-6) var(--space-4) var(--space-4);
}

.fc-auth__title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}

.fc-auth__title + .fc-auth__status {
  margin-top: var(--space-3);
}

.fc-auth__lead {
  margin: var(--space-2) 0 var(--space-4);
  color: var(--gray-mid);
  text-align: center;
}

.fc-auth__lead--error {
  color: var(--error);
}

.fc-auth__note {
  margin: var(--space-2) 0 var(--space-3);
  color: var(--gray-mid);
  text-align: center;
  font-size: 0.875rem;
}

.fc-auth__status {
  margin: 0 0 var(--space-3);
  border-radius: var(--radius-input);
  padding: 10px 12px;
  font-size: 0.875rem;
}

.fc-auth__status p {
  margin: 0;
}

.fc-auth__status p + p {
  margin-top: 6px;
}

.fc-auth__status--error {
  border: 1px solid #f3c1bd;
  background: #fff1ef;
  color: var(--error);
}

.fc-auth__status--success {
  border: 1px solid #b7e1b8;
  background: #eff9ef;
  color: var(--success);
}

.fc-auth__form {
  display: grid;
  gap: var(--space-2);
}

.fc-auth__field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--gray-dark);
  font-size: 0.9375rem;
  font-weight: 700;
}

.fc-auth__required {
  color: var(--error);
  font-weight: 700;
}

.fc-auth__field input[type=email],
.fc-auth__field input[type=password],
.fc-auth__field input[type=text],
.fc-auth__field input[type=tel],
.fc-auth__field select {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-input);
  border: 1px solid #cccccc;
  padding: 0 12px;
  background: var(--white);
}

.fc-auth__field input.is-inline-invalid,
.fc-auth__field select.is-inline-invalid,
.fc-auth__field textarea.is-inline-invalid {
  border-color: var(--error);
  background: #fff7f6;
}

.fc-form-inline-error {
  margin: 6px 0 0;
  color: var(--error);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.fc-auth__field input::placeholder {
  color: #999999;
}

.fc-auth__field input[readonly] {
  background: var(--off-white);
  color: var(--gray-mid);
}

.fc-password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fc-password-input-wrap > input[type=password],
.fc-password-input-wrap > input[type=text] {
  padding-right: 52px;
}

.fc-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid #cccccc;
  border-radius: 999px;
  background: var(--white);
  color: #666666;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fc-password-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fc-password-toggle__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fc-password-toggle__icon--hide {
  display: none;
}

.fc-password-toggle:hover,
.fc-password-toggle:focus-visible {
  border-color: #9f9f9f;
  background: #f5f5f5;
  color: #3f3f3f;
}

.fc-password-input-wrap.is-password-visible .fc-password-toggle {
  border-color: #8dbf8e;
  background: #eff9ef;
  color: #2f6b31;
}

.fc-password-input-wrap.is-password-visible .fc-password-toggle__icon--show {
  display: none;
}

.fc-password-input-wrap.is-password-visible .fc-password-toggle__icon--hide {
  display: inline-flex;
}

.fc-auth__remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-mid);
}

.fc-auth__remember input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  accent-color: var(--orange);
}

.fc-auth__button {
  border: 1px solid transparent;
  border-radius: var(--radius-input);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fc-auth__button--login {
  background: var(--gray-mid);
  color: var(--white);
}

.fc-auth__button--login:hover,
.fc-auth__button--login:focus {
  background: var(--gray-dark);
}

.fc-auth__button--register {
  background: rgba(255, 101, 3, 0.16);
  border-color: rgba(255, 101, 3, 0.28);
  color: var(--orange);
}

.fc-auth__button--register:hover,
.fc-auth__button--register:focus {
  background: rgba(255, 101, 3, 0.24);
}

.fc-auth__button--success {
  background: var(--success);
  color: var(--white);
}

.fc-auth__button--success:hover,
.fc-auth__button--success:focus {
  filter: brightness(0.95);
}

.fc-auth__button--warning {
  background: var(--warning);
  color: var(--white);
}

.fc-auth__button--warning:hover,
.fc-auth__button--warning:focus {
  filter: brightness(0.95);
}

.fc-auth__submit {
  display: inline-block;
  margin-top: 4px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 1rem;
}

.fc-auth__link,
.fc-auth__sublead,
.fc-auth__register,
.fc-auth__setup-link {
  margin: 0;
  text-align: center;
}

.fc-auth__link {
  margin-top: var(--space-4);
  font-size: 0.875rem;
}

.fc-auth__link a,
.fc-auth__setup-link a {
  color: var(--gray-dark);
}

.fc-auth__sublead {
  margin-top: var(--space-4);
  color: var(--gray-mid);
  font-size: 0.875rem;
}

.fc-auth__register {
  margin-top: var(--space-2);
}

.fc-auth__register-btn {
  display: inline-block;
  min-width: 196px;
  min-height: 44px;
  padding: 10px 24px;
}

.fc-auth__setup-link {
  margin-top: var(--space-3);
  font-size: 0.8125rem;
}

.fc-auth__back {
  margin: var(--space-3) 0 0;
  text-align: center;
  font-size: 0.875rem;
}

.fc-auth__back a {
  color: var(--gray-dark);
  text-decoration: none;
}

.fc-auth__back a:hover,
.fc-auth__back a:focus {
  text-decoration: underline;
}

.fc-auth__back--done a {
  text-decoration: underline;
}

.fc-auth__back--underline a {
  text-decoration: underline;
}

.fc-auth__hint {
  margin: 0;
  color: var(--gray-mid);
  font-size: 0.8125rem;
}

.fc-auth__message {
  margin: 0 0 var(--space-2);
  color: var(--gray-dark);
  text-align: center;
  line-height: 1.6;
}

.fc-auth__actions {
  margin: var(--space-3) 0 0;
  text-align: center;
}

.fc-auth__text-link {
  color: var(--gray-dark);
  text-decoration: underline;
  font-size: 0.9375rem;
}

.fc-auth__text-link:hover,
.fc-auth__text-link:focus {
  text-decoration: underline;
}

.fc-auth__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
}

.fc-confirm-list {
  margin: 0 0 var(--space-3);
  padding: 0;
  border-top: 1px solid #e5e5e5;
}

.fc-register-form {
  display: grid;
  gap: var(--space-2);
}

.fc-register-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.fc-register-form__birth {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-register-form__birth-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fc-register-form__birth-item select {
  width: auto;
  min-width: 86px;
}

.fc-register-form__birth-item span {
  color: var(--gray-mid);
  font-size: 0.875rem;
}

.fc-register-form__gender {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fc-register-form__gender label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
}

.fc-confirm-list__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #ededed;
}

.fc-confirm-list__row dt {
  margin: 0;
  color: var(--gray-mid);
  font-weight: 700;
}

.fc-confirm-list__row dd {
  margin: 0;
  color: var(--gray-dark);
}

.fc-confirm-consent {
  margin: 0 0 8px;
  color: var(--gray-dark);
}

.fc-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-3);
}

.fc-confirm__actions .fc-auth__action-link {
  min-width: 168px;
}

.fc-confirm-plan {
  margin-top: var(--space-6);
  border-top: 1px solid #dedede;
  padding-top: var(--space-3);
  margin-bottom: var(--space-12);
}

.fc-confirm-plan__title {
  margin: 0 0 var(--space-2);
  font-size: 1rem;
  color: var(--gray-dark);
}

.fc-confirm-plan__list {
  margin: 0;
  padding: 40px;
  background-color: var(--off-white);
  border-radius: 15px;
}

.fc-confirm-plan__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #ededed;
}

.fc-confirm-plan__row dt {
  margin: 0;
  color: var(--gray-mid);
  font-weight: 700;
}

.fc-confirm-plan__row dd {
  margin: 0;
  color: var(--gray-dark);
}

.fc-confirm-plan__detail {
  margin: var(--space-3) 0 0;
  text-align: center;
  color: var(--gray-dark);
  font-size: 0.875rem;
  line-height: 1.6;
}

.fc-confirm-plan__links {
  margin: var(--space-2) 0 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
}

.fc-confirm-plan__links a {
  color: var(--gray-dark);
  text-decoration: underline;
}

.fc-confirm-plan__links a + a {
  margin-left: 12px;
}

.fc-confirm__agree {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-2);
  color: var(--gray-dark);
}

.fc-confirm__agree input[type=checkbox] {
  margin-top: 2px;
}

.fc-register-form__gender input.is-inline-invalid,
.fc-confirm__agree input.is-inline-invalid {
  outline: 1px solid var(--error);
  outline-offset: 1px;
}

.fc-confirm__agree .fc-form-inline-error {
  flex-basis: 100%;
  margin-top: 0;
  margin-left: 26px;
}

.fc-auth__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 6px;
  margin: var(--space-4) 0 0;
  font-size: 0.75rem;
  color: var(--gray-mid);
}

.fc-auth__legal > a {
  white-space: nowrap;
}

.fc-auth__legal > span {
  flex-basis: 100%;
  text-align: center;
  white-space: nowrap;
}

.fc-auth__legal a {
  color: var(--gray-mid);
  text-decoration: none;
}

.fc-auth__legal a:hover,
.fc-auth__legal a:focus {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fc-auth {
    padding-top: var(--space-4);
  }
  .fc-auth__card {
    padding: var(--space-4) var(--space-3);
  }
  .fc-auth__title {
    font-size: 1.75rem;
  }
  .fc-auth__register-btn {
    width: 100%;
  }
  .fc-auth__steps {
    display: none;
  }
  .fc-auth__steps-mobile {
    width: 96%;
    max-width: 560px;
    margin: 0 auto var(--space-3);
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
  }
  .fc-auth__steps-mobile-ring {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: conic-gradient(var(--success) 0deg 60deg, var(--gray-off) 60deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fc-auth__steps-mobile-ring--2 {
    background: conic-gradient(var(--success) 0deg 120deg, var(--gray-off) 120deg 360deg);
  }
  .fc-auth__steps-mobile-ring--3 {
    background: conic-gradient(var(--success) 0deg 180deg, var(--gray-off) 180deg 360deg);
  }
  .fc-auth__steps-mobile-ring--4 {
    background: conic-gradient(var(--success) 0deg 240deg, var(--gray-off) 240deg 360deg);
  }
  .fc-auth__steps-mobile-ring--5 {
    background: conic-gradient(var(--success) 0deg 300deg, var(--gray-off) 300deg 360deg);
  }
  .fc-auth__steps-mobile-ring--6 {
    background: conic-gradient(var(--success) 0deg 360deg, var(--gray-off) 360deg 360deg);
  }
  .fc-auth--verify-failed .fc-auth__steps-mobile-ring--2 {
    background: conic-gradient(var(--warning) 0deg 120deg, var(--gray-off) 120deg 360deg);
  }
  .fc-auth__steps-mobile-ring::before {
    content: "";
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
  }
  .fc-auth__steps-mobile-ring span {
    position: absolute;
    color: var(--gray-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
  }
  .fc-auth__steps-mobile-texts {
    min-width: 0;
  }
  .fc-auth__steps-mobile-current {
    margin: 0;
    color: var(--success);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .fc-auth--verify-failed .fc-auth__steps-mobile-current {
    color: var(--warning);
  }
  .fc-auth__steps-mobile-next {
    margin: 4px 0 0;
    color: var(--gray-mid);
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .fc-confirm-list__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .fc-register-form__grid {
    grid-template-columns: 1fr;
  }
  .fc-register-form__birth {
    flex-direction: column;
    gap: 8px;
  }
  .fc-register-form__birth-item {
    width: 100%;
  }
  .fc-register-form__birth-item select {
    width: 100%;
  }
  .fc-register-form__gender {
    flex-direction: column;
    gap: 10px;
  }
  .fc-confirm-plan__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .fc-confirm-plan {
    margin-top: var(--space-4);
  }
  .fc-confirm__actions {
    flex-direction: column;
  }
  .fc-confirm__actions .fc-auth__action-link {
    width: 100%;
  }
  .page-template-page-login header nav a.logo,
  .page-template-page-login-password header nav a.logo,
  .page-template-page-register-email header nav a.logo,
  .page-template-page-register-sent header nav a.logo,
  .page-template-page-register-verify header nav a.logo,
  .page-template-page-register-form header nav a.logo,
  .page-template-page-register-confirm header nav a.logo {
    font-size: 1.25rem;
  }
}
.page-template-page-payment-checkout header,
.page-template-page-payment-complete header,
.page-template-page-payment-resend-setup header,
.page-payment-checkout header,
.page-payment-complete header,
.page-payment-resend-setup header {
  border-bottom: 1px solid #d9d9d9;
}
.page-template-page-payment-checkout header nav,
.page-template-page-payment-complete header nav,
.page-template-page-payment-resend-setup header nav,
.page-payment-checkout header nav,
.page-payment-complete header nav,
.page-payment-resend-setup header nav {
  justify-content: center;
  max-width: 560px;
  padding: 0 var(--space-2);
}
.page-template-page-payment-checkout header nav .site-nav__toggle,
.page-template-page-payment-checkout header nav .site-nav__menu,
.page-template-page-payment-complete header nav .site-nav__toggle,
.page-template-page-payment-complete header nav .site-nav__menu,
.page-template-page-payment-resend-setup header nav .site-nav__toggle,
.page-template-page-payment-resend-setup header nav .site-nav__menu,
.page-payment-checkout header nav .site-nav__toggle,
.page-payment-checkout header nav .site-nav__menu,
.page-payment-complete header nav .site-nav__toggle,
.page-payment-complete header nav .site-nav__menu,
.page-payment-resend-setup header nav .site-nav__toggle,
.page-payment-resend-setup header nav .site-nav__menu {
  display: none !important;
}
.page-template-page-payment-checkout header nav a:not(.logo),
.page-template-page-payment-complete header nav a:not(.logo),
.page-template-page-payment-resend-setup header nav a:not(.logo),
.page-payment-checkout header nav a:not(.logo),
.page-payment-complete header nav a:not(.logo),
.page-payment-resend-setup header nav a:not(.logo) {
  display: none;
}
.page-template-page-payment-checkout header nav a.logo,
.page-template-page-payment-complete header nav a.logo,
.page-template-page-payment-resend-setup header nav a.logo,
.page-payment-checkout header nav a.logo,
.page-payment-complete header nav a.logo,
.page-payment-resend-setup header nav a.logo {
  margin-right: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.page-template-page-payment-checkout .page-top-button,
.page-template-page-payment-complete .page-top-button,
.page-template-page-payment-resend-setup .page-top-button,
.page-payment-checkout .page-top-button,
.page-payment-complete .page-top-button,
.page-payment-resend-setup .page-top-button {
  display: none;
}
.page-template-page-payment-checkout footer,
.page-template-page-payment-complete footer,
.page-template-page-payment-resend-setup footer,
.page-payment-checkout footer,
.page-payment-complete footer,
.page-payment-resend-setup footer {
  display: none;
}

.fc-payment {
  padding: var(--space-6) 0 var(--space-4);
}

.fc-payment .container {
  width: 96%;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 0;
}

.fc-payment__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  width: min(100%, 560px);
  margin: 0 auto var(--space-3);
  padding: 0;
}

.fc-payment__steps li {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.fc-payment__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 4px;
  border-radius: 999px;
  background: var(--gray-off);
  z-index: 0;
}

.fc-payment__step-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  color: var(--gray-off);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
}

.fc-payment__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-off);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.fc-payment__steps .is-completed .fc-payment__step-num {
  background: var(--success);
  color: transparent;
  font-size: 0;
}

.fc-payment__steps .is-completed .fc-payment__step-num::before {
  content: "✓";
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
}

.fc-payment__steps .is-completed::after {
  background: var(--success);
}

.fc-payment__steps .is-current .fc-payment__step-chip {
  color: var(--success);
}

.fc-payment__steps .is-current .fc-payment__step-num {
  background: var(--success);
  color: var(--white);
}

.fc-payment__steps .is-pending .fc-payment__step-chip {
  color: var(--gray-off);
}

.fc-payment__steps .is-pending .fc-payment__step-num {
  background: var(--gray-off);
  color: var(--white);
}

.fc-payment__card-wrap {
  width: min(100%, 560px);
  margin: 0 auto;
}

.fc-payment__card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-height: 460px;
  padding: var(--space-6) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fc-payment__card--error {
  min-height: unset;
}

.fc-payment__card--complete {
  min-height: 500px;
}

.fc-payment__card--resend {
  min-height: 460px;
  justify-content: flex-start;
}

.fc-payment__status {
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid #f3c1bd;
  border-radius: var(--radius-input);
  padding: 10px 12px;
  background: #fff2f0;
  color: var(--error);
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.6;
}

p.fc-payment__status.fc-payment__status--error {
  margin: 5% 0 16%;
  padding: 3%;
}

.fc-payment__title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.fc-payment__lead {
  margin: var(--space-2) 0 0;
  color: var(--gray-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.fc-payment__action {
  width: min(300px, 100%);
  margin: var(--space-4) 0 0;
}

.fc-payment__actions {
  width: min(300px, 100%);
  margin: var(--space-4) 0 0;
}

.fc-payment__action-group + .fc-payment__action-group {
  margin-top: var(--space-3);
}

.fc-payment__actions .fc-payment__action {
  width: 100%;
  margin: 0;
}

.fc-payment__submit {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-input);
  padding: 0 20px;
  background: var(--success);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fc-payment__submit:hover,
.fc-payment__submit:focus-visible {
  filter: brightness(0.95);
  color: var(--white);
}

.fc-payment__submit--link {
  text-decoration: none;
}

.fc-payment__note {
  margin: var(--space-2) 0 0;
  color: var(--gray-mid);
  font-size: 0.875rem;
  line-height: 1.5;
}

.fc-payment__helper {
  margin: 8px 0 0;
  color: var(--gray-mid);
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
}

.fc-payment__note--common {
  width: min(300px, 100%);
  margin-top: var(--space-3);
  text-align: left;
}

.fc-payment__check {
  margin: 0 0 var(--space-2);
  color: var(--success);
  font-size: 3rem;
  line-height: 1;
}

.fc-payment__mail-status {
  width: 100%;
  margin-top: var(--space-2);
  border-radius: var(--radius-input);
  border: 1px solid #d8d8d8;
  background: var(--off-white);
  padding: 12px 14px;
  color: var(--gray-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.fc-payment__mail-status p {
  margin: 0;
}

.fc-payment__mail-status p + p {
  margin-top: 4px;
}

.fc-payment__mail-status--sending {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.fc-payment__loading-dots {
  display: inline-flex;
  gap: 0.08em;
}

.fc-payment__loading-dots span {
  opacity: 0.28;
  animation: fc-payment-dot-pulse 1.2s ease-in-out infinite;
}

.fc-payment__loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.fc-payment__loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fc-payment-dot-pulse {
  0%, 20%, 100% {
    opacity: 0.28;
  }
  45% {
    opacity: 1;
  }
}
.fc-payment__mail-status--sent {
  border-color: #b7e1b8;
  background: #eff9ef;
  color: var(--success);
  text-align: left;
}

.fc-payment__resend-box {
  width: 100%;
  margin-top: var(--space-2);
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-input);
  background: var(--off-white);
  padding: 12px 14px;
}

.fc-payment__resend-box p {
  margin: 0;
  color: var(--gray-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.fc-payment__resend-box a {
  color: var(--gray-dark);
}

.fc-payment__form {
  width: 100%;
  margin-top: var(--space-4);
}

.fc-payment__field {
  text-align: left;
}

.fc-payment__field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--gray-dark);
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 700;
}

.fc-payment__required {
  color: var(--error);
  font-weight: 700;
}

.fc-payment__field input[type=email] {
  width: 100%;
  height: 44px;
  border: 1px solid #cccccc;
  border-radius: var(--radius-input);
  padding: 0 12px;
  background: var(--white);
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-payment__field input[type=email]::placeholder {
  color: #999999;
}

.fc-payment__form .fc-payment__submit {
  margin-top: var(--space-2);
}

@media (max-width: 768px) {
  .page-template-page-payment-checkout header nav a.logo,
  .page-template-page-payment-complete header nav a.logo,
  .page-template-page-payment-resend-setup header nav a.logo,
  .page-payment-checkout header nav a.logo,
  .page-payment-complete header nav a.logo,
  .page-payment-resend-setup header nav a.logo {
    font-size: 1.25rem;
  }
  .fc-payment {
    padding-top: var(--space-4);
  }
  .fc-payment__steps {
    display: none;
  }
  .fc-payment .fc-auth__steps-mobile {
    margin-bottom: var(--space-2);
  }
  .fc-payment__card {
    min-height: 0;
    padding: var(--space-4) var(--space-3);
  }
  .fc-payment__title {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .fc-payment__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .fc-payment__action {
    margin-top: var(--space-3);
  }
  .fc-payment__actions {
    margin-top: var(--space-3);
  }
  .fc-payment__action-group + .fc-payment__action-group {
    margin-top: var(--space-2);
  }
  .fc-payment__submit {
    min-height: 46px;
    font-size: 0.9375rem;
  }
  .fc-payment__note {
    font-size: 0.875rem;
  }
  .fc-payment__helper {
    margin-top: 6px;
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  .fc-payment__note--common {
    margin-top: var(--space-2);
    font-size: 0.875rem;
  }
  .fc-payment__check {
    font-size: 2.4rem;
    margin-bottom: 6px;
  }
  .fc-payment__mail-status {
    margin-top: 10px;
    font-size: 0.875rem;
  }
  .fc-payment__mail-status--sending {
    font-size: 0.9375rem;
  }
  .fc-payment__resend-box {
    margin-top: 10px;
    padding: 12px 14px;
  }
  .fc-payment__resend-box p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .fc-payment__form {
    margin-top: var(--space-3);
  }
  .fc-payment__field label {
    font-size: 0.875rem;
  }
  .fc-payment__field input[type=email] {
    height: 46px;
    font-size: 0.9375rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-payment__loading-dots span {
    animation: none;
    opacity: 1;
  }
}
.page-template-page-mypage .fc-mypage {
  position: relative;
  padding: 0 0 var(--space-12);
  overflow: hidden;
}
.page-template-page-mypage .fc-mypage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-template-page-mypage .fc-mypage > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.fc-mypage__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}

.fc-mypage__sidebar {
  position: sticky;
  top: calc(78px + var(--space-2));
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  overflow: hidden;
}

.fc-mypage__sidebar-title {
  margin: 0;
  padding: 16px 20px;
  background: linear-gradient(92deg, #2f2f2f 0%, #555555 100%);
  color: var(--white);
  font-family: var(--font-display), var(--font-base);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.fc-mypage__profile {
  padding: 22px 22px 20px;
  text-align: center;
  background-color: var(--white);
}

.fc-mypage__avatar {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto 14px;
  background: var(--gray-light);
  max-width: 300px;
  overflow: hidden;
}

.fc-mypage__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 3%;
  object-fit: contain;
}

.fc-mypage__name {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-mypage__member-no {
  margin: 8px 0 0;
  color: var(--gray-mid);
  font-size: 0.8125rem;
}

.fc-mypage__menu {
  margin-top: 50px;
}

.fc-mypage__menu ul {
  margin: 0;
  padding: 0px 0 12px;
  list-style: none;
  background: var(--white);
}
.fc-mypage__menu li + li {
  margin-top: 2px;
  border-left: 4px solid rgba(76, 181, 78, 0.3490196078);
}
.fc-mypage__menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  color: #3f3f3f;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.fc-mypage__menu a::after {
  content: "→";
  color: var(--gray-off);
  font-size: 0.8125rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.fc-mypage__menu .is-current > a {
  background: rgba(76, 181, 78, 0.2196078431);
  border-left: 4px solid var(--green);
  padding-left: 14px;
  color: var(--green);
  font-weight: 700;
}
.fc-mypage__menu .is-current > a::after {
  color: var(--green);
}
.fc-mypage__menu a:hover,
.fc-mypage__menu a:focus-visible {
  background: #f6f6f6;
  padding-left: 20px;
}
.fc-mypage__menu a:hover::after,
.fc-mypage__menu a:focus-visible::after {
  color: var(--green);
  transform: translateX(2px);
}

.fc-mypage__title-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 80px;
  background-color: var(--gray-off);
  z-index: 0;
  position: relative;
  padding: 20px max(2%, (100vw - 1200px) / 2 + 2%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 67%;
  background-image: linear-gradient(135deg, rgba(8, 20, 45, 0.78) 0%, rgba(8, 20, 45, 0.62) 45%, rgba(8, 20, 45, 0.82) 100%), url(../img/top/FV.jpg);
}

.fc-mypage__title {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  color: var(--gray-dark);
  padding: 0.2em 0.55em 0.18em 0.42em;
}

.fc-mypage__title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gray-light);
  clip-path: polygon(6% 18%, 96% 4%, 90% 86%, 40% 100%, 0% 60%);
  width: 200%;
  top: 17px;
}

.fc-mypage__title::after {
  content: "マイページ";
  position: absolute;
  z-index: 0;
  width: 130%;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.25;
  font-style: italic;
  height: auto;
  bottom: 16%;
  /* color: var(--green); */
  text-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
  letter-spacing: -0.04em;
}

.fc-mypage__title .accent {
  color: var(--green);
  font-size: 1.8em;
}

.fc-mypage__title-sub {
  margin: 0 0 0 2px;
  color: var(--gray-mid);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
}

.fc-mypage__cards {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.fc-mypage__card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 20px 52px 20px 22px;
  background: var(--white);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  text-decoration: none;
  color: #3f3f3f;
  font-size: 1.125rem;
  line-height: 1.4;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.fc-mypage__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 101, 3, 0.08), rgba(255, 101, 3, 0));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.fc-mypage__card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.24s ease;
}

.fc-mypage__cards li:nth-child(2n) .fc-mypage__card::before {
  background: linear-gradient(135deg, rgba(245, 116, 168, 0.12), rgba(245, 116, 168, 0));
}

.fc-mypage__cards li:nth-child(3n) .fc-mypage__card::before {
  background: linear-gradient(135deg, rgba(76, 181, 78, 0.12), rgba(76, 181, 78, 0));
}

.fc-mypage__card span {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.fc-mypage__card:hover,
.fc-mypage__card:focus-visible {
  border-color: #c7c7c7;
  box-shadow: 0 12px 26px rgba(26, 26, 26, 0.14);
  transform: translateY(-4px);
}

.fc-mypage__card:hover::before,
.fc-mypage__card:focus-visible::before {
  opacity: 1;
}

.fc-mypage__card:hover::after,
.fc-mypage__card:focus-visible::after {
  transform: translate3d(3px, -50%, 0);
}

@media (max-width: 1024px) {
  .fc-mypage__layout {
    grid-template-columns: 260px 1fr;
    gap: 28px;
  }
  .fc-mypage__card {
    min-height: 94px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-mypage .fc-mypage {
    padding-bottom: var(--space-6);
  }
  .fc-mypage__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fc-mypage__sidebar {
    position: static;
  }
  .fc-mypage__title-wrap {
    margin-bottom: 16px;
    padding: 14px 4%;
  }
  .fc-mypage__title {
    font-size: clamp(2.4rem, 14vw, 3.3rem);
    padding-right: 0.5em;
  }
  .fc-mypage__title::before {
    width: clamp(20rem, 70vw, 23rem);
  }
  .fc-mypage__title::after {
    font-size: clamp(1.8rem, 5vw, 2rem);
  }
  .fc-mypage__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fc-mypage__card {
    min-height: 82px;
    font-size: 0.9375rem;
    padding-right: 44px;
  }
  .fc-mypage__card::after {
    font-size: 1.5rem;
    right: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-mypage__menu a,
  .fc-mypage__menu a::after,
  .fc-mypage__card,
  .fc-mypage__card::before,
  .fc-mypage__card::after {
    transition: none;
  }
}
.page-template-page-mypage-profile .fc-mypage {
  position: relative;
  padding: 0 0 var(--space-12);
  overflow: hidden;
}
.page-template-page-mypage-profile .fc-mypage > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.fc-mypage__main.fc-mypage__main {
  min-width: 0;
  background-image: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3%;
  clip-path: polygon(0 0, calc(100% - 65px) 0, 100% 65px, 100% 100%, 65px 100%, 0 calc(100% - 0px));
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-mypage-profile__heading {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--green);
  color: var(--gray-dark);
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 500;
  width: 80%;
}

.fc-mypage-profile__notice {
  margin: 20px 0 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.75;
}

.fc-mypage-profile__panel {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 22px 22px 0;
}

.fc-mypage-profile__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.fc-mypage-profile__grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.fc-mypage-profile__field label {
  display: inline-block;
  margin: 0 0 8px;
  color: #3f3f3f;
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 700;
}
.fc-mypage-profile__field input[type=text] {
  width: 100%;
  height: 54px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #f4f4f4;
  color: #4a4a4a;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0 16px;
}
.fc-mypage-profile__field input[type=text][readonly] {
  background: #efefef;
  color: #606060;
}

.fc-mypage-profile__field--zip {
  max-width: 290px;
}

.fc-mypage-profile__field--phone {
  max-width: 400px;
}

.fc-mypage-profile__avatar-picker {
  margin-bottom: 18px;
}

.fc-mypage-profile__avatar-label {
  margin: 0 0 10px;
  color: #3f3f3f;
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 700;
}

.fc-mypage-profile__avatar-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 12px;
}

.fc-mypage-profile__avatar-option {
  cursor: pointer;
}

.fc-mypage-profile__avatar-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.fc-mypage-profile__avatar-option-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px solid #c8c8c8;
  background: #efefef;
  display: block;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fc-mypage-profile__avatar-option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-mypage-profile__avatar-option input:checked + .fc-mypage-profile__avatar-option-thumb {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(76, 181, 78, 0.2);
}

.fc-mypage-profile__avatar-option input:focus-visible + .fc-mypage-profile__avatar-option-thumb {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.fc-mypage-profile__avatar-empty {
  margin: 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.5;
}

.fc-mypage-profile__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid #d8d8d8;
  padding: 22px 0;
  margin-top: 8px;
}

.fc-mypage-profile__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 10px 24px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fc-mypage-profile__button--ghost {
  background: var(--white);
  border-color: #9c9c9c;
  color: #575757;
}

.fc-mypage-profile__button--ghost:hover,
.fc-mypage-profile__button--ghost:focus-visible {
  background: #f7f7f7;
}

.fc-mypage-profile__button--primary {
  background: #5b5b5b;
  color: var(--white);
}

.fc-mypage-profile__button--primary:hover,
.fc-mypage-profile__button--primary:focus-visible {
  background: #4a4a4a;
}

@media (max-width: 1024px) {
  .fc-mypage-profile__heading {
    font-size: 1.75rem;
  }
  .fc-mypage-profile__notice {
    font-size: 1rem;
  }
  .fc-mypage-profile__field input[type=text] {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-mypage-profile .fc-mypage {
    padding-bottom: var(--space-6);
  }
  .fc-mypage-profile__heading {
    font-size: 1.5rem;
  }
  .fc-mypage-profile__notice {
    font-size: 1rem;
    margin-top: 14px;
  }
  .fc-mypage-profile__panel {
    padding: 16px 14px 0;
    margin-top: 16px;
  }
  .fc-mypage-profile__grid--2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fc-mypage-profile__field input[type=text] {
    height: 46px;
    font-size: 1rem;
  }
  .fc-mypage-profile__field label,
  .fc-mypage-profile__avatar-label {
    font-size: 1rem;
    line-height: 1.35;
  }
  .fc-mypage-profile__avatar-empty {
    font-size: 0.875rem;
  }
  .fc-mypage-profile__field--zip,
  .fc-mypage-profile__field--phone {
    max-width: none;
  }
  .fc-mypage-profile__actions {
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
  }
  .fc-mypage-profile__button {
    width: 100%;
    font-size: 0.9375rem;
  }
}
.page-template-page-mypage-email .fc-mypage {
  position: relative;
  padding: 0 0 var(--space-12);
  overflow: hidden;
}
.page-template-page-mypage-email .fc-mypage > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.fc-mypage-email__heading {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--green);
  color: var(--gray-dark);
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 500;
  width: 80%;
}

.fc-mypage-email__panel {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 22px 22px;
}

.fc-mypage-email__status {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.fc-mypage-email__status--error {
  background: #fff2f0;
  border: 1px solid #f4b2aa;
  color: var(--error);
}

.fc-mypage-email__view-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 26px;
}

.fc-mypage-email__current {
  padding-bottom: 18px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 22px;
}

.fc-mypage-email__current-label {
  margin: 0;
  color: #3f3f3f;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.fc-mypage-email__current-value {
  margin: 12px 0 0;
  color: var(--gray-dark);
  font-size: 1.9rem;
  line-height: 1.3;
  word-break: break-word;
}

.fc-mypage-email__lead {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-mypage-email__lead + .fc-mypage-email__lead {
  margin-top: 4px;
}

.fc-mypage-email__notice-box {
  margin-top: 18px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 18px 22px;
}

.fc-mypage-email__notice-title {
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}

.fc-mypage-email__notice-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.fc-mypage-email__notice-box li {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.8;
}

.fc-mypage-email__intro {
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.fc-mypage-email__intro p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-mypage-email__intro p + p {
  margin-top: 4px;
}

.fc-mypage-email__field {
  margin-bottom: 18px;
}

.fc-mypage-email__field label {
  display: inline-block;
  margin: 0 0 8px;
  color: #3f3f3f;
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 700;
}

.fc-mypage-email__field input[type=email] {
  width: 100%;
  height: 58px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #f4f4f4;
  color: #4a4a4a;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0 16px;
}

.fc-mypage-email__field input[type=email][readonly] {
  background: #efefef;
  color: #606060;
}

.fc-mypage-email__hint {
  margin: 8px 0 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.5;
}

.fc-mypage-email__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid #d8d8d8;
  padding: 22px 0;
  margin-top: 14px;
}

.fc-mypage-email__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 10px 24px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fc-mypage-email__button--ghost {
  background: var(--white);
  border-color: #9c9c9c;
  color: #575757;
}

.fc-mypage-email__button--ghost:hover,
.fc-mypage-email__button--ghost:focus-visible {
  background: #f7f7f7;
}

.fc-mypage-email__button--primary {
  background: #5b5b5b;
  color: var(--white);
}

.fc-mypage-email__button--primary:hover,
.fc-mypage-email__button--primary:focus-visible {
  background: #4a4a4a;
}

.fc-mypage-email__panel--sent,
.fc-mypage-email__panel--updated {
  text-align: center;
  padding: 52px 40px 46px;
}

.fc-mypage-email__state-title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.fc-mypage-email__panel--sent .fc-mypage-email__lead,
.fc-mypage-email__panel--updated .fc-mypage-email__lead {
  margin-top: 16px;
}

.fc-mypage-email__sent-to {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  padding: 10px 22px;
  border-radius: 6px;
  background: #f0f0f0;
  color: var(--gray-dark);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-all;
}

.fc-mypage-email__panel--sent .fc-mypage-email__notice-box,
.fc-mypage-email__panel--updated .fc-mypage-email__result-box {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
}

.fc-mypage-email__panel--sent .fc-mypage-email__notice-box {
  text-align: left;
}

.fc-mypage-email__result-box {
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 18px 22px;
  text-align: left;
}

.fc-mypage-email__result-list {
  margin: 0;
}

.fc-mypage-email__result-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #d8d8d8;
}

.fc-mypage-email__result-list > div:last-child {
  border-bottom: 0;
}

.fc-mypage-email__result-list dt {
  margin: 0;
  color: #4d4d4d;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.fc-mypage-email__result-list dd {
  margin: 0;
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-all;
}

.fc-mypage-email__result-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f2f2f2;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
}

.fc-mypage-email__center-action {
  margin: 26px 0 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .fc-mypage-email__heading {
    font-size: 1.75rem;
  }
  .fc-mypage-email__current-value,
  .fc-mypage-email__sent-to {
    font-size: 1.4rem;
  }
  .fc-mypage-email__field input[type=email] {
    font-size: 1.25rem;
  }
  .fc-mypage-email__state-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-mypage-email .fc-mypage {
    padding-bottom: var(--space-6);
  }
  .fc-mypage-email__heading {
    font-size: 1.5rem;
    width: 100%;
  }
  .fc-mypage-email__panel {
    margin-top: 16px;
    padding: 16px 14px 0;
  }
  .fc-mypage-email__view-head {
    justify-content: stretch;
    margin-bottom: 16px;
  }
  .fc-mypage-email__view-head .fc-mypage-email__button {
    width: 100%;
  }
  .fc-mypage-email__current {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .fc-mypage-email__lead,
  .fc-mypage-email__notice-box li,
  .fc-mypage-email__intro p,
  .fc-mypage-email__field label {
    font-size: 1rem;
  }
  .fc-mypage-email__notice-title {
    font-size: 1rem;
  }
  .fc-mypage-email__current-value {
    font-size: 1.05rem;
  }
  .fc-mypage-email__field input[type=email] {
    height: 46px;
    font-size: 1rem;
  }
  .fc-mypage-email__hint {
    font-size: 0.875rem;
  }
  .fc-mypage-email__actions {
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
  }
  .fc-mypage-email__button {
    width: 100%;
    font-size: 0.9375rem;
  }
  .fc-mypage-email__panel--sent,
  .fc-mypage-email__panel--updated {
    padding: 28px 14px 24px;
  }
  .fc-mypage-email__state-title {
    font-size: 1.3rem;
  }
  .fc-mypage-email__sent-to {
    width: 100%;
    font-size: 1.1rem;
    padding: 10px 14px;
  }
  .fc-mypage-email__panel--sent .fc-mypage-email__notice-box,
  .fc-mypage-email__panel--updated .fc-mypage-email__result-box {
    margin-top: 18px;
  }
  .fc-mypage-email__result-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .fc-mypage-email__result-list dd {
    font-size: 1rem;
  }
  .fc-mypage-email__result-note {
    font-size: 0.9375rem;
    padding: 12px;
  }
}
.page-template-page-mypage-password .fc-mypage {
  position: relative;
  padding: 0 0 var(--space-12);
  overflow: hidden;
}
.page-template-page-mypage-password .fc-mypage > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.fc-mypage-password__heading {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--green);
  color: var(--gray-dark);
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 500;
  width: 80%;
}

.fc-mypage-password__panel {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 22px 22px 0;
}

.fc-mypage-password__status {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.fc-mypage-password__status--error {
  background: #fff2f0;
  border: 1px solid #f4b2aa;
  color: var(--error);
}

.fc-mypage-password__view-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 26px;
}

.fc-mypage-password__lead {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
}

.fc-mypage-password__lead + .fc-mypage-password__lead {
  margin-top: 4px;
}

.fc-mypage-password__field {
  margin-top: 18px;
}

.fc-mypage-password__field label {
  display: inline-block;
  margin: 0 0 8px;
  color: #3f3f3f;
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 700;
}

.fc-mypage-password__field input[type=password] {
  width: 100%;
  height: 58px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #f4f4f4;
  color: #4a4a4a;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0 16px;
}

.fc-mypage-password__hint {
  margin: 8px 0 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.5;
}

.fc-mypage-password__rule-box,
.fc-mypage-password__notice-box {
  margin-top: 18px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 18px 22px;
}

.fc-mypage-password__rule-title,
.fc-mypage-password__notice-title {
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}

.fc-mypage-password__rule-box ul,
.fc-mypage-password__notice-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.fc-mypage-password__rule-box li,
.fc-mypage-password__notice-box li {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.8;
}

.fc-mypage-password__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid #d8d8d8;
  padding: 22px 0;
  margin-top: 20px;
}

.fc-mypage-password__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 10px 24px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fc-mypage-password__button--ghost {
  background: var(--white);
  border-color: #9c9c9c;
  color: #575757;
}

.fc-mypage-password__button--ghost:hover,
.fc-mypage-password__button--ghost:focus-visible {
  background: #f7f7f7;
}

.fc-mypage-password__button--primary {
  background: #5b5b5b;
  color: var(--white);
}

.fc-mypage-password__button--primary:hover,
.fc-mypage-password__button--primary:focus-visible {
  background: #4a4a4a;
}

.fc-mypage-password__panel--updated {
  text-align: center;
  padding: 52px 40px 46px;
}

.fc-mypage-password__state-title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.fc-mypage-password__panel--updated .fc-mypage-password__lead {
  margin-top: 16px;
}

.fc-mypage-password__updated-box {
  max-width: 760px;
  margin: 26px auto 0;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 22px;
  text-align: left;
}

.fc-mypage-password__updated-time,
.fc-mypage-password__updated-note {
  margin: 0;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
}

.fc-mypage-password__updated-note {
  margin-top: 2px;
}

.fc-mypage-password__updated-box .fc-mypage-password__notice-box {
  margin-top: 16px;
}

.fc-mypage-password__center-action {
  margin: 26px 0 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .fc-mypage-password__heading {
    font-size: 1.75rem;
  }
  .fc-mypage-password__field input[type=password] {
    font-size: 1.25rem;
  }
  .fc-mypage-password__state-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-mypage-password .fc-mypage {
    padding-bottom: var(--space-6);
  }
  .fc-mypage-password__heading {
    font-size: 1.5rem;
    width: 100%;
  }
  .fc-mypage-password__panel {
    margin-top: 16px;
    padding: 16px 14px 0;
  }
  .fc-mypage-password__view-head {
    justify-content: stretch;
    margin-bottom: 16px;
  }
  .fc-mypage-password__view-head .fc-mypage-password__button {
    width: 100%;
  }
  .fc-mypage-password__lead,
  .fc-mypage-password__rule-box li,
  .fc-mypage-password__notice-box li,
  .fc-mypage-password__field label {
    font-size: 1rem;
  }
  .fc-mypage-password__rule-title,
  .fc-mypage-password__notice-title {
    font-size: 1rem;
  }
  .fc-mypage-password__field input[type=password] {
    height: 46px;
    font-size: 1rem;
  }
  .fc-mypage-password__hint {
    font-size: 0.875rem;
  }
  .fc-mypage-password__actions {
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
  }
  .fc-mypage-password__button {
    width: 100%;
    font-size: 0.9375rem;
  }
  .fc-mypage-password__panel--updated {
    padding: 28px 14px 24px;
  }
  .fc-mypage-password__state-title {
    font-size: 1.3rem;
  }
  .fc-mypage-password__updated-box {
    margin-top: 18px;
    padding: 14px;
  }
  .fc-mypage-password__updated-time,
  .fc-mypage-password__updated-note {
    font-size: 0.9375rem;
  }
}
.page-template-page-mypage-cancel .fc-mypage {
  position: relative;
  padding: 0 0 var(--space-12);
  overflow: hidden;
}
.page-template-page-mypage-cancel .fc-mypage > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.fc-mypage-cancel__heading {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--green);
  color: var(--gray-dark);
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 500;
  width: 80%;
}

.fc-mypage-cancel__status {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

.fc-mypage-cancel__status--error {
  background: #fff2f0;
  border: 1px solid #f4b2aa;
  color: var(--error);
}

.fc-mypage-cancel__panel {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 22px 22px;
}

.fc-mypage-cancel__lead-panel {
  border: 2px solid #9d9d9d;
  border-radius: 6px;
  padding: 30px 38px 28px;
}

.fc-mypage-cancel__lead-title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.fc-mypage-cancel__lead {
  margin: 14px 0 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.75;
}

.fc-mypage-cancel__notice-box {
  margin-top: 22px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 18px 22px;
}
.fc-mypage-cancel__notice-box h4 {
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}
.fc-mypage-cancel__notice-box ul {
  margin: 0;
  padding-left: 1.4em;
}
.fc-mypage-cancel__notice-box li,
.fc-mypage-cancel__notice-box p {
  margin: 0;
  color: #555;
  font-size: 1.15rem;
  line-height: 1.8;
}
.fc-mypage-cancel__notice-box li + li {
  margin-top: 2px;
}

.fc-mypage-cancel__confirm-wrap {
  margin-top: 24px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 20px 22px 22px;
}

.fc-mypage-cancel__checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--gray-dark);
  font-size: 1.15rem;
  line-height: 1.6;
  cursor: pointer;
}

.fc-mypage-cancel__checkline + .fc-mypage-cancel__checkline {
  margin-top: 10px;
}

.fc-mypage-cancel__checkline input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
}

.fc-mypage-cancel__note-box {
  margin-top: 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f2f2f2;
  padding: 14px 16px;
}
.fc-mypage-cancel__note-box p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

.fc-mypage-cancel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 12px;
}

.fc-mypage-cancel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 10px 24px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.fc-mypage-cancel__button--ghost {
  background: var(--white);
  border-color: #9c9c9c;
  color: #575757;
}

.fc-mypage-cancel__button--ghost:hover,
.fc-mypage-cancel__button--ghost:focus-visible {
  background: #f7f7f7;
}

.fc-mypage-cancel__button--danger,
.fc-mypage-cancel__button--primary {
  background: #5b5b5b;
  color: var(--white);
}

.fc-mypage-cancel__button--danger:hover,
.fc-mypage-cancel__button--danger:focus-visible,
.fc-mypage-cancel__button--primary:hover,
.fc-mypage-cancel__button--primary:focus-visible {
  background: #4a4a4a;
}

.fc-mypage-cancel__button--danger:disabled,
.fc-mypage-cancel__button--danger[disabled],
.fc-mypage-cancel__button.is-placeholder {
  background: #b8b8b8;
  border-color: #b8b8b8;
  color: #f5f5f5;
  cursor: not-allowed;
  pointer-events: none;
}

.fc-mypage-cancel__panel--complete {
  text-align: center;
  padding: 52px 40px 46px;
}

.fc-mypage-cancel__state-title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.fc-mypage-cancel__panel--complete .fc-mypage-cancel__lead {
  margin-top: 16px;
}

.fc-mypage-cancel__complete-boxes {
  margin: 26px auto 0;
  padding: 24px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  text-align: left;
}

.fc-mypage-cancel__complete-box {
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f2f2f2;
  padding: 16px 18px;
}

.fc-mypage-cancel__complete-box + .fc-mypage-cancel__complete-box {
  margin-top: 14px;
}

.fc-mypage-cancel__complete-box h4 {
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}

.fc-mypage-cancel__complete-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.fc-mypage-cancel__complete-box li,
.fc-mypage-cancel__complete-box p {
  margin: 0;
  color: #555;
  font-size: 1.15rem;
  line-height: 1.8;
}

.fc-mypage-cancel__complete-note {
  margin: 18px 0 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.75;
}

.fc-mypage-cancel__center-action {
  margin: 26px 0 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .fc-mypage-cancel__heading {
    font-size: 1.75rem;
  }
  .fc-mypage-cancel__lead-title,
  .fc-mypage-cancel__state-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-mypage-cancel .fc-mypage {
    padding-bottom: var(--space-6);
  }
  .fc-mypage-cancel__heading {
    font-size: 1.5rem;
    width: 100%;
  }
  .fc-mypage-cancel__panel {
    margin-top: 16px;
    padding: 16px 14px;
  }
  .fc-mypage-cancel__lead-panel {
    padding: 18px 14px;
  }
  .fc-mypage-cancel__lead-title,
  .fc-mypage-cancel__state-title {
    font-size: 1.3rem;
  }
  .fc-mypage-cancel__lead,
  .fc-mypage-cancel__checkline,
  .fc-mypage-cancel__notice-box li,
  .fc-mypage-cancel__notice-box p,
  .fc-mypage-cancel__complete-box li,
  .fc-mypage-cancel__complete-box p,
  .fc-mypage-cancel__note-box p,
  .fc-mypage-cancel__complete-note {
    font-size: 1rem;
  }
  .fc-mypage-cancel__notice-box h4,
  .fc-mypage-cancel__complete-box h4 {
    font-size: 1rem;
  }
  .fc-mypage-cancel__confirm-wrap {
    padding: 16px 14px;
  }
  .fc-mypage-cancel__actions {
    flex-direction: column;
    gap: 10px;
  }
  .fc-mypage-cancel__button {
    width: 100%;
    font-size: 0.9375rem;
  }
  .fc-mypage-cancel__panel--complete {
    padding: 28px 14px 24px;
  }
  .fc-mypage-cancel__complete-boxes {
    margin-top: 18px;
    padding: 14px;
  }
}
.page-template-page-mypage-billing .fc-mypage {
  position: relative;
  padding: 0 0 var(--space-12);
  overflow: hidden;
}
.page-template-page-mypage-billing .fc-mypage > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.fc-mypage-billing__heading {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--green);
  color: var(--gray-dark);
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 500;
  width: 80%;
}

.fc-mypage-billing__panel {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 22px 22px;
}

.fc-mypage-billing__status {
  margin: 0 0 14px;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.6;
}

.fc-mypage-billing__status--error {
  color: var(--gray-dark);
}

.fc-mypage-billing__table-wrap {
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  padding: 16px 20px;
}

.fc-mypage-billing__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid var(--gray-light);
}
.fc-mypage-billing__table th,
.fc-mypage-billing__table td {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid #dedede;
  word-break: break-word;
}
.fc-mypage-billing__table th {
  background: #ececec;
  color: #4a4a4a;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom-color: #d4d4d4;
}
.fc-mypage-billing__table tbody tr:last-child td {
  border-bottom: 0;
}
.fc-mypage-billing__table td:nth-child(1),
.fc-mypage-billing__table th:nth-child(1) {
  width: 27%;
}
.fc-mypage-billing__table td:nth-child(2),
.fc-mypage-billing__table th:nth-child(2) {
  width: 43%;
}
.fc-mypage-billing__table td:nth-child(3),
.fc-mypage-billing__table th:nth-child(3) {
  width: 30%;
}

.fc-mypage-billing__table-empty,
.fc-mypage-billing__empty {
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  padding: 24px 16px;
  margin: 0;
}

@media (max-width: 1024px) {
  .fc-mypage-billing__heading {
    font-size: 1.75rem;
  }
  .fc-mypage-billing__table th {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-mypage-billing .fc-mypage {
    padding-bottom: var(--space-6);
  }
  .fc-mypage-billing__heading {
    font-size: 1.5rem;
    width: 100%;
  }
  .fc-mypage-billing__panel {
    margin-top: 16px;
    padding: 16px 14px;
  }
  .fc-mypage-billing__status,
  .fc-mypage-billing__table th,
  .fc-mypage-billing__table td,
  .fc-mypage-billing__table-empty,
  .fc-mypage-billing__empty {
    font-size: 1rem;
  }
  .fc-mypage-billing__table-wrap {
    padding: 10px 10px;
    overflow-x: auto;
  }
  .fc-mypage-billing__table {
    min-width: 560px;
  }
}
.page-template-page-mypage-email-verify header nav .site-nav__menu,
.page-template-page-mypage-email-verify header nav .site-nav__toggle {
  display: none;
}
.page-template-page-mypage-email-verify header nav {
  justify-content: flex-start;
}
.page-template-page-mypage-email-verify header nav a.logo {
  margin-right: 0;
}
.page-template-page-mypage-email-verify .page-top-button {
  display: none;
}

.fc-mypage-email-verify {
  background: var(--bg-gray);
  padding: 52px 0 var(--space-12);
  min-height: calc(100vh - 170px);
}

.fc-mypage-email-verify__heading {
  margin: 0;
  text-align: center;
  color: var(--gray-dark);
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.2;
}

.fc-mypage-email-verify__card {
  margin: 56px auto 0;
  max-width: 760px;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding: 88px 36px 74px;
}

.fc-mypage-email-verify__title {
  margin: 0;
  color: #3f3f3f;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.35;
}

.fc-mypage-email-verify__message {
  margin: 18px 0 0;
  color: #575757;
  font-size: 1.75rem;
  line-height: 1.75;
}

.fc-mypage-email-verify__action {
  margin: 30px 0 0;
}

.fc-mypage-email-verify__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #5b5b5b;
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 12px 20px;
  transition: background-color 0.2s ease;
}

.fc-mypage-email-verify__button:hover,
.fc-mypage-email-verify__button:focus-visible {
  background: #4a4a4a;
}

@media (max-width: 1024px) {
  .fc-mypage-email-verify__heading {
    font-size: 1.75rem;
  }
  .fc-mypage-email-verify__title {
    font-size: 2.2rem;
  }
  .fc-mypage-email-verify__message {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .fc-mypage-email-verify {
    padding: 34px 0 var(--space-6);
    min-height: calc(100vh - 132px);
  }
  .fc-mypage-email-verify__heading {
    font-size: 1.5rem;
  }
  .fc-mypage-email-verify__card {
    margin-top: 28px;
    padding: 32px 16px 26px;
  }
  .fc-mypage-email-verify__title {
    font-size: 1.6rem;
  }
  .fc-mypage-email-verify__message {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .fc-mypage-email-verify__action {
    margin-top: 20px;
  }
  .fc-mypage-email-verify__button {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
  }
}
.fc-inquiry {
  padding: var(--space-4) 0 var(--space-12);
}

.fc-inquiry__inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.fc-inquiry__header {
  margin-bottom: 26px;
}

.fc-inquiry__title-wrap {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 16px;
}

.fc-inquiry__page-title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 2.125rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.fc-inquiry__lead {
  margin: 20px 0 0;
  color: var(--gray-mid);
  font-size: 1rem;
  line-height: 1.75;
}

.fc-inquiry__panel {
  margin: 0;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 24px 20px 20px;
}

.fc-inquiry__status {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

.fc-inquiry__status--success {
  background: #eff9ef;
  border: 1px solid #b7e1b8;
  color: var(--success);
}

.fc-inquiry__status--error {
  background: #fff2f0;
  border: 1px solid #f4b2aa;
  color: var(--error);
}

.fc-inquiry__panel--sent {
  padding-bottom: 24px;
}

.fc-inquiry__summary {
  margin: 0;
  padding: 0;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: var(--white);
}

.fc-inquiry__summary-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 10px 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #ededed;
}

.fc-inquiry__summary-row:last-child {
  border-bottom: 0;
}

.fc-inquiry__summary-row dt {
  margin: 0;
  color: #5c5c5c;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
}

.fc-inquiry__summary-row dd {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}

.fc-inquiry__sent-action {
  margin: 20px 0 0;
  text-align: center;
}

.fc-inquiry__top-link {
  display: inline-flex;
  width: min(360px, 100%);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid #545454;
  border-radius: var(--radius-input);
  background: linear-gradient(135deg, #666666 0%, #4d4d4d 100%);
  color: var(--white);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-inquiry__top-link:hover,
.fc-inquiry__top-link:focus-visible {
  background: linear-gradient(135deg, #5f5f5f 0%, #444444 100%);
  border-color: #4a4a4a;
  transform: translateY(-1px);
  color: var(--white);
}

.fc-inquiry__identity {
  margin-bottom: 28px;
}

.fc-inquiry__name {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.fc-inquiry__member-no {
  margin: 6px 0 0;
  color: #767676;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.fc-inquiry__field + .fc-inquiry__field {
  margin-top: 16px;
}

.fc-inquiry__field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gray-dark);
  font-size: 1.1875rem;
  line-height: 1.4;
  font-weight: 500;
}

.fc-inquiry__required {
  color: #7b7b7b;
  font-weight: 700;
}

.fc-inquiry__field input[type=text],
.fc-inquiry__field textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: var(--radius-input);
  background: var(--white);
  color: var(--gray-dark);
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0 14px;
}

.fc-inquiry__field input[type=text] {
  height: 56px;
}

.fc-inquiry__field textarea {
  min-height: 180px;
  resize: vertical;
  padding: 14px;
}

.fc-inquiry__field input[type=text]::placeholder,
.fc-inquiry__field textarea::placeholder {
  color: #8e8e8e;
}

.fc-inquiry__field input[type=text]:focus-visible,
.fc-inquiry__field textarea:focus-visible {
  outline: 2px solid #9a9a9a;
  outline-offset: 2px;
}

.fc-inquiry__agreement-wrap {
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid #dddddd;
}

.fc-inquiry__agreement-title {
  margin: 0;
  color: var(--gray-dark);
  font-size: 1.1875rem;
  line-height: 1.4;
  font-weight: 500;
}

.fc-inquiry__agreement {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: var(--gray-dark);
  font-size: 1.25rem;
  line-height: 1.6;
  cursor: pointer;
}

.fc-inquiry__agreement input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  flex-shrink: 0;
}

.fc-inquiry__agreement a {
  color: inherit;
}

.fc-inquiry__actions {
  margin-top: 20px;
}

.fc-inquiry__submit {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid #5b5b5b;
  border-radius: var(--radius-input);
  background: #5b5b5b;
  color: var(--white);
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.fc-inquiry__submit:hover,
.fc-inquiry__submit:focus-visible {
  background: #4a4a4a;
  border-color: #4a4a4a;
}

.fc-inquiry__submit:disabled,
.fc-inquiry__submit[disabled] {
  background: #b8b8b8;
  border-color: #b8b8b8;
  color: #f2f2f2;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .fc-inquiry {
    padding: var(--space-2) 0 var(--space-6);
  }
  .fc-inquiry__header {
    margin-bottom: 16px;
  }
  .fc-inquiry__title-wrap {
    padding-bottom: 12px;
  }
  .fc-inquiry__page-title {
    font-size: 1.75rem;
  }
  .fc-inquiry__lead {
    margin-top: 14px;
    font-size: 0.9375rem;
  }
  .fc-inquiry__panel {
    padding: 16px 14px;
  }
  .fc-inquiry__status {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
  .fc-inquiry__summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 12px;
  }
  .fc-inquiry__summary-row dt,
  .fc-inquiry__summary-row dd {
    font-size: 0.9375rem;
  }
  .fc-inquiry__sent-action {
    margin-top: 14px;
  }
  .fc-inquiry__top-link {
    min-height: 50px;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(26, 26, 26, 0.16);
  }
  .fc-inquiry__identity {
    margin-bottom: 18px;
  }
  .fc-inquiry__name {
    font-size: 1.25rem;
  }
  .fc-inquiry__member-no {
    font-size: 0.8125rem;
  }
  .fc-inquiry__field label,
  .fc-inquiry__agreement-title {
    font-size: 1rem;
  }
  .fc-inquiry__field input[type=text] {
    height: 46px;
    font-size: 1rem;
  }
  .fc-inquiry__field textarea,
  .fc-inquiry__agreement {
    font-size: 1rem;
  }
  .fc-inquiry__field textarea {
    min-height: 146px;
  }
  .fc-inquiry__agreement-wrap {
    margin-top: 14px;
    padding-top: 16px;
  }
  .fc-inquiry__agreement input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  .fc-inquiry__actions {
    margin-top: 16px;
  }
  .fc-inquiry__submit {
    min-height: 50px;
    font-size: 1.125rem;
  }
}
.match-report-archive {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: var(--space-3) 0 var(--space-6);
}

span.photo-gallery-page__title-accent.match-report-gallery-page__title-accent {
  color: var(--green);
}

.match-report-archive__title {
  margin: 0 0 20px;
}

.match-report-gallery-page .match-report-grid.photo-gallery-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
}

.match-report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.match-report-card {
  --match-accent: var(--gray-mid);
  margin: 0;
  border-left: 4px solid var(--green);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.match-report-card--win {
  --match-accent: var(--green);
}

.match-report-card--lose {
  --match-accent: var(--gray-dark);
}

.match-report-card--draw {
  --match-accent: var(--gray-mid);
}

.match-report-card__title {
  margin: 0;
  color: var(--gray-dark);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 16px;
  background-color: var(--gray-light);
}

.match-report-card__head {
  position: relative;
}

.match-report-card__head .match-report-card__title {
  padding-right: clamp(72px, 7.4vw, 118px);
}

.match-report-card__head .hero-report__next {
  right: clamp(10px, 1.4vw, 24px);
  min-width: clamp(56px, 4.4vw, 84px);
  font-size: clamp(1.6rem, 2.1vw, 2.4rem);
  text-decoration: none;
}

.match-report-card__link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #141414;
  padding: 0;
  background: #efefef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  background-image: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.match-report-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.match-report-card__link--disabled {
  cursor: default;
}

.match-report-card.is-disabled .match-report-card__link {
  opacity: 0.9;
  filter: grayscale(0.08);
}

.match-report-card__result-label {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  margin: 0;
}

.match-report-card__main {
  display: grid;
  grid-template-columns: minmax(250px, 310px) repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6509803922);
}

.match-report-card__date-block {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  background: var(--gray-light);
  color: var(--gray-mid);
  height: 100%;
}

.match-report-card__year {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: var(--font-display);
}

.match-report-card__date-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.match-report-card__date-main {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.match-report-card__weekday {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.match-report-card__time {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.match-report-card__venue {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.match-report-card__team {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 16px 12px;
  text-align: center;
}

.match-report-card__team-logo {
  width: min(80px, 90%);
  height: auto;
}

.match-report-card__team-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-mid);
  line-height: 1;
}

.match-report-card__result {
  min-height: 172px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 16px 12px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.match-report-card__score-mobile {
  display: none;
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--gray-mid);
  font-family: var(--font-display);
}

.match-report-card__score-mobile--for {
  font-size: clamp(3.4rem, 5vw, 5.1rem);
}

.match-report-card__score-mobile--against {
  font-size: clamp(2.8rem, 4.2vw, 4.3rem);
}

.match-report-card--win .match-report-card__score-mobile--for {
  color: var(--green);
}

.match-report-card--lose .match-report-card__score-mobile--for {
  color: var(--gray-dark);
}

.match-report-card--draw .match-report-card__score-mobile--for {
  color: var(--gray-mid);
}

.match-report-card__badge {
  margin: 0;
  display: inline-block;
  font-size: clamp(3.25rem, 4.4vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  padding: 8px 0 6px;
  border-radius: 0;
  color: var(--match-accent);
  background: transparent;
  min-width: min(220px, 90%);
  text-align: center;
  letter-spacing: 0.15em;
}

.match-report-card__badge--win {
  color: var(--green);
  border-color: var(--green);
  font-size: 4rem;
}

.match-report-card__badge--lose {
  color: var(--gray-dark);
  border-color: var(--gray-dark);
}

.match-report-card__badge--draw {
  color: var(--gray-mid);
  border-color: var(--gray-mid);
  font-size: 2rem;
  font-family: var(--font-base);
}

.match-report-card__score {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  line-height: 1;
}

.match-report-card__score-num {
  font-size: clamp(3.2rem, 4.9vw, 4.9rem);
  font-size: clamp(4.2rem, 6.2vw, 6.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gray-mid);
}

.match-report-card__score .match-report-card__score-num:first-of-type {
  font-size: clamp(4.2rem, 6.2vw, 6.4rem);
}

.match-report-card--win .match-report-card__score .match-report-card__score-num:first-of-type {
  color: var(--green);
}

.match-report-card--lose .match-report-card__score .match-report-card__score-num:first-of-type {
  color: var(--gray-dark);
}

.match-report-card--draw .match-report-card__score .match-report-card__score-num:first-of-type {
  color: var(--gray-mid);
}

.match-report-card__score-sep {
  font-size: clamp(4rem, 5.4vw, 5.7rem);
  color: var(--gray-mid);
  transform: translateY(-1px);
}

.match-report-card__opponent-wrap {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 16px 12px;
  text-align: center;
}

.match-report-card__opponent {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--gray-mid);
  text-align: center;
}

.match-report-archive__empty {
  margin: 0;
}

.match-report-single {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: var(--space-3) 0 var(--space-6);
}

.match-report-single__article {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.match-report-single__header {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.match-report-single__result {
  margin: 0 0 8px;
}

.match-report-single__result-label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: #777;
  margin-right: 8px;
}

.match-report-single__result-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-size: 0.8125rem;
}

.match-report-single__result-badge--win {
  color: #137333;
  background: #e9f8ee;
  border-color: #b8e8c7;
}

.match-report-single__result-badge--lose {
  color: #b3261e;
  background: #feeceb;
  border-color: #f4bfbc;
}

.match-report-single__result-badge--draw {
  color: #4a5b6a;
  background: #edf2f7;
  border-color: #d4dde7;
}

.match-report-single__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.match-report-single__summary {
  margin: 10px 0 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.125rem;
}

.match-report-single__score-sep {
  color: #666;
}

.match-report-single__summary-opponent {
  font-size: 0.875rem;
  color: #555;
}

.match-report-single__meta {
  margin: 8px 0 0;
  color: #666;
  font-size: 0.875rem;
}

.match-report-single__pdf-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  background: #f5f5f5;
}

.match-report-single__pdf {
  width: 100%;
  height: 100%;
  border: 0;
}

.match-report-single__pdf-link {
  margin: 10px 20px 0;
}

.match-report-single__pdf-link a {
  color: var(--orange);
}

.match-report-single__content {
  padding: 18px 20px 20px;
}

.match-report-single__back {
  margin: 16px 0 0;
}

.match-report-single__back a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 12px;
  color: #444;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
}

.match-report-single__back a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 980px) {
  .match-report-card__main {
    grid-template-columns: minmax(210px, 1fr) repeat(3, minmax(0, 1fr));
  }
  .match-report-card__date-block,
  .match-report-card__team,
  .match-report-card__result,
  .match-report-card__opponent-wrap {
    min-height: 152px;
  }
  .match-report-card__venue {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .match-report-archive,
  .match-report-single {
    width: min(100%, 100% - 24px);
  }
  .match-report-card__link {
    padding: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 8px));
  }
  .match-report-card__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .match-report-card__date-block {
    grid-column: 1/-1;
    min-height: 0;
    padding: 14px 14px 12px;
    gap: 6px;
    position: relative;
    margin-bottom: 50px;
  }
  .match-report-card__year {
    display: none;
  }
  .match-report-card__date-main {
    font-size: 2.25rem;
  }
  .match-report-card__weekday,
  .match-report-card__time {
    font-size: 1.4rem;
  }
  .match-report-card__venue {
    font-size: 1.25rem;
  }
  .match-report-card__team,
  .match-report-card__result,
  .match-report-card__opponent-wrap {
    min-height: 0;
    padding: 14px 14px 50px 14px;
  }
  .match-report-card__team {
    position: relative;
    overflow: hidden;
  }
  .match-report-card__team-logo {
    width: 92px;
    opacity: 0.14;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
    z-index: 1;
    pointer-events: none;
    display: none;
  }
  .match-report-card__team-name {
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
  }
  .match-report-card__score {
    display: none;
  }
  .match-report-card__score-mobile {
    display: block;
    position: relative;
    z-index: 2;
  }
  .match-report-card__badge {
    font-size: 3rem;
    padding-top: 6px;
    padding-bottom: 4px;
  }
  .match-report-card__badge--draw {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }
  .match-report-card__opponent {
    padding: 0;
    font-size: 1.05rem;
    text-align: center;
  }
  .match-report-card__title {
    font-size: 1.2rem;
  }
  .match-report-card__head .match-report-card__title {
    padding-right: 56px;
  }
  .match-report-card__head .hero-report__next {
    right: 8px;
    min-width: 46px;
    font-size: 1.9rem;
  }
  .match-report-card__score-mobile--for {
    font-size: 3rem;
  }
  .match-report-card__score-mobile--against {
    font-size: 2.35rem;
    font-size: 3rem;
  }
  .match-report-single__header {
    padding: 16px;
  }
  .match-report-single__pdf-wrap {
    aspect-ratio: 4/5;
  }
  .match-report-single__pdf-link,
  .match-report-single__content {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.photo-gallery-page {
  position: relative;
  z-index: 1;
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: var(--space-4) 0 var(--space-6);
}

.photo-gallery-page__head {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid #d6d6d6;
  background: none;
}

.photo-gallery-page__title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gray-dark);
}

.photo-gallery-page__title-accent {
  display: inline-block;
  margin-right: 0.02em;
  font-size: 1.24em;
  font-weight: 700;
  line-height: 0.86;
  color: var(--pink);
}

.photo-gallery-page__empty {
  margin: 0;
  padding: var(--space-3);
  border: 1px solid #dfdfdf;
  background: #f8f8f8;
  font-size: 0.875rem;
  color: var(--gray-mid);
}

.photo-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2.2vw, 36px);
  margin: 0 0 var(--space-3);
  padding: 0;
  border-bottom: 1px solid #dbdbdb;
}

.photo-gallery-tabs__link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: -1px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  color: #6a6a6a;
  font-size: 0.9375rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.photo-gallery-tabs__link:is(:hover, :focus-visible) {
  color: var(--gray-dark);
  border-bottom-color: #b5b5b5;
}

.photo-gallery-tabs__link.is-active {
  color: var(--gray-dark);
  border-bottom-color: var(--gray-dark);
}

.photo-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  padding: 2%;
}

.photo-archive .gallery-card--photo {
  border-left: 4px solid var(--pink);
}

.photo-gallery-page .gallery-card--photo .gallery-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.photo-archive .gallery-card--photo .gallery-card__media {
  aspect-ratio: 6/8;
}

.photo-single .gallery-card--photo {
  border-left: 0;
}

.photo-single .gallery-card--photo .gallery-card__media {
  aspect-ratio: 1/1;
}

.photo-gallery-page .gallery-card--photo .gallery-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.photo-gallery-page .gallery-card--photo .gallery-card__date {
  margin-top: auto;
}

.photo-gallery-page .gallery-card--photo:is(:hover, :focus-within) .gallery-card__title {
  color: var(--pink);
}

.video-gallery-page .gallery-card--video .gallery-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.video-gallery-page .gallery-card--video .gallery-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-gallery-page .gallery-card--video .gallery-card__date {
  margin-top: auto;
}

.video-gallery-page .gallery-card--video:is(:hover, :focus-within) .gallery-card__title {
  color: var(--green);
}

.video-gallery-page .gallery-card--video:is(:hover, :focus-within) .gallery-card__play-icon {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.34));
}

.news-gallery-page {
  --news-title-size: 1.2rem;
  --news-date-size: 1.6rem;
  --news-category-size: 0.9rem;
  --news-excerpt-size: 0.9rem;
  --news-arrow-size: 2rem;
}
.news-gallery-page .news-item {
  background: rgba(156, 156, 156, 0.2509803922);
}

.news-gallery-page .photo-gallery-page__title-accent,
.news-gallery-page__title-accent {
  color: var(--orange);
}

.news-archive-list {
  padding: 2%;
}

article.photo-single-post {
  background-image: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2%;
  clip-path: polygon(0 0, calc(100% - 65px) 0, 100% 65px, 100% 100%, 65px 100%, 0 calc(100% - 0px));
}

.photo-single-post__header {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--space-3);
  border-bottom: none;
  background: var(--gray-light);
  padding: 2%;
  border-right: 4px solid var(--pink);
}

.news-gallery-page .photo-single-post__header {
  border-right: 4px solid var(--orange);
}

body.single-photo > header,
body.post-type-archive-photo > header,
body.single-video > header,
body.post-type-archive-video > header,
body.single-fc_news > header,
body.post-type-archive-fc_news > header {
  z-index: 1200;
}

.photo-single-post__category {
  display: inline-flex;
  margin: 0 0 var(--space-2);
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--gray-dark);
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.photo-single-post__title {
  margin: 0 0 var(--space-1);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.3;
  color: var(--gray-dark);
}

.photo-single-post__date {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-mid);
}

.photo-single-post__content {
  padding: var(--space-3);
  border: 1px solid #e1e1e1;
  background: #f8f8f8;
}

.video-single-post {
  background-image: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2%;
  clip-path: polygon(0 0, calc(100% - 65px) 0, 100% 65px, 100% 100%, 65px 100%, 0 calc(100% - 0px));
}

.video-single-post__player {
  margin-top: var(--space-3);
}

.video-single-post__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #2f2f2f;
  overflow: hidden;
}

.video-single-post__embed iframe,
.video-single-post__embed video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-single-post__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 5px 6px;
}

.video-single-post__description {
  margin-top: var(--space-3);
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--gray-dark);
}

.video-single-post__description p {
  margin: 0 0 1em;
}

.video-single-post__description p:last-child {
  margin-bottom: 0;
}

.news-single-post {
  background-image: url(../img/top/dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2%;
  clip-path: polygon(0 0, calc(100% - 65px) 0, 100% 65px, 100% 100%, 65px 100%, 0 calc(100% - 0px));
}

.news-single-post__content {
  margin-top: var(--space-3);
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--gray-dark);
  background-color: var(--off-white);
  padding: 2%;
}

.news-single-post__content p {
  margin: 0 0 1em;
}

.news-single-post__content p:last-child {
  margin-bottom: 0;
}

.news-single-post__content h2,
.news-single-post__content h3,
.news-single-post__content h4 {
  margin: 1.35em 0 0.5em;
  line-height: 1.45;
}

.news-single-post__content ul,
.news-single-post__content ol {
  margin: 0 0 1em;
  padding-left: 1.3em;
}

.photo-gallery-pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

.photo-gallery-pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-gallery-pagination__list .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1;
  color: #666;
  background: var(--white);
}

.photo-gallery-pagination__list .page-numbers.current {
  border-color: var(--gray-dark);
  color: var(--white);
  background: var(--gray-dark);
}

.photo-gallery-pagination__list a.page-numbers:is(:hover, :focus-visible) {
  border-color: var(--gray-dark);
  color: var(--gray-dark);
}

.photo-single-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.photo-single-nav a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.photo-single-nav a:is(:hover, :focus-visible) {
  color: var(--gray-dark);
}

.photo-single-nav__prev {
  text-align: left;
}

.photo-single-nav__center {
  text-align: center;
}

.photo-single-nav__next {
  text-align: right;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 16px;
}

.photo-lightbox.is-open {
  display: grid;
  place-items: center;
}

.photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.photo-lightbox__inner {
  position: relative;
  width: fit-content;
  max-width: min(1200px, 94vw);
  z-index: 1;
}

.photo-lightbox__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 10px;
}

.photo-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.photo-lightbox__close:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .news-gallery-page {
    --news-title-size: 1.1rem;
    --news-date-size: 1.3rem;
    --news-category-size: 0.7rem;
    --news-excerpt-size: 0.9rem;
    --news-arrow-size: 1.8rem;
  }
  .photo-gallery-page {
    width: 96%;
    padding-top: var(--space-3);
  }
  .photo-gallery-tabs {
    gap: 18px;
    margin-bottom: var(--space-2);
  }
  .photo-gallery-tabs__link {
    min-height: 42px;
    font-size: 0.875rem;
  }
  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }
  .photo-archive .gallery-card--photo .gallery-card__media {
    aspect-ratio: 16/10;
  }
  .photo-gallery-page .gallery-card--photo .gallery-card__img {
    object-position: center center;
  }
  .news-archive-list {
    padding: 0;
  }
  .video-single-post__embed {
    aspect-ratio: 16/9;
  }
  .video-single-post__duration {
    font-size: 0.6875rem;
  }
  .photo-lightbox__inner {
    max-width: 96vw;
  }
  .photo-lightbox__image {
    max-height: 84dvh;
    object-fit: contain;
    object-position: center center;
  }
  .photo-lightbox__close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }
  .photo-single-post__title {
    font-size: clamp(1.5rem, 6.2vw, 2rem);
  }
  .photo-single-post__date {
    font-size: 0.8125rem;
  }
  .photo-single-nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .photo-single-nav__prev,
  .photo-single-nav__center,
  .photo-single-nav__next {
    text-align: center;
  }
}
.survey-gallery-page__title-accent {
  color: var(--orange);
}

.survey-archive {
  padding-top: var(--space-4);
}

.survey-archive-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.survey-archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid #dadada;
  background: #f7f7f7;
  border-left: 4px solid var(--orange);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.survey-archive-item__body {
  min-width: 0;
}

.survey-archive-item__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  padding: 4px 11px;
  border-radius: 5px;
  background: #626262;
  color: var(--white);
  font-size: 0.8125rem;
  line-height: 1;
}

.survey-archive-item.is-closed .survey-archive-item__status {
  background: #d7d7d7;
  color: #8b8b8b;
}

.survey-archive-item__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--gray-dark);
}

.survey-archive-item__title a {
  color: inherit;
  text-decoration: none;
}

.survey-archive-item__title a:is(:hover, :focus-visible) {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.survey-archive-item__meta {
  margin: 10px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #707070;
}

.survey-archive-item__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid #595959;
  background: #595959;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.survey-archive-item__action:is(:hover, :focus-visible) {
  background: #474747;
  border-color: #474747;
}

.survey-single {
  padding-top: var(--space-4);
}

.survey-single__article {
  margin: 0;
  padding: 0;
}

.survey-single__title {
  margin: 0 0 var(--space-3);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.28;
  color: var(--gray-dark);
}

.survey-main-image {
  width: min(740px, 100%);
  margin: 0 0 var(--space-2);
  border-radius: 12px;
  overflow: hidden;
  background: #e2e2e2;
}

.survey-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}

.survey-main-image--placeholder {
  aspect-ratio: 16/10;
  border: 1px solid #d9d9d9;
}

.survey-main-image__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e2e2 0%, #d6d6d6 100%);
}

.survey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 var(--space-3);
}

.survey-meta p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b6b6b;
}

.survey-intro {
  margin: 0 0 var(--space-3);
  padding: 18px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: #f8f8f8;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--gray-dark);
}

.survey-content {
  margin: 0 0 var(--space-3);
}

.survey-content > *:first-child {
  margin-top: 0;
}

.survey-content > *:last-child {
  margin-bottom: 0;
}

.survey-builder-preview {
  margin: 0;
}

.survey-section {
  margin: 0 0 var(--space-3);
  padding: 24px;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  background: var(--white);
}

.survey-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.35;
  color: var(--gray-dark);
}

.survey-section p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #5c5c5c;
}

.survey-question {
  margin: 0 0 var(--space-2);
  padding: 20px 22px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background: var(--white);
}

.survey-question h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-dark);
}

.survey-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  background: #5f5f5f;
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.survey-question__description {
  margin: 0 0 14px;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.75;
}

.survey-question__image {
  width: min(540px, 100%);
  margin: 0 0 14px;
  border-radius: 10px;
  overflow: hidden;
}

.survey-question__image img {
  width: 100%;
  display: block;
}

.survey-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 4px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  cursor: pointer;
}

.survey-option + .survey-option {
  margin-top: 4px;
}

.survey-option input {
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--gray-dark);
}

.survey-option span {
  flex: 1;
}

.survey-question textarea,
.survey-question input[type=text] {
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: var(--radius-input);
  padding: 11px 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
}

.survey-question textarea {
  min-height: 140px;
  resize: vertical;
}

.survey-question textarea:focus-visible,
.survey-question input[type=text]:focus-visible {
  outline: 2px solid #929292;
  outline-offset: 2px;
}

.survey-question__error {
  margin: 12px 0 0;
  padding: 8px 10px;
  border-left: 3px solid #c64040;
  background: #fff5f5;
  color: #b42828;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 700;
}

.survey-submit-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid #d8d8d8;
}

.survey-cancel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 30px;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
  background: var(--white);
  color: #666;
  font-size: 0.9375rem;
  text-decoration: none;
}

.survey-cancel-link:is(:hover, :focus-visible) {
  border-color: #b8b8b8;
  color: #3b3b3b;
}

.survey-submit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 180px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: #5c5c5c;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease;
}

.survey-submit-link:is(:hover, :focus-visible) {
  background: #464646;
}

.survey-submit-link[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.survey-builder-preview + .survey-form-block {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.survey-form-block .forminator-button-submit,
.survey-form-block button[type=submit],
.survey-form-block input[type=submit],
.survey-form-block .forminator-edit-module {
  display: none !important;
}

.survey-send-error {
  margin: 0 0 var(--space-3);
  padding: 12px;
  border: 1px solid #ffd4c0;
  border-radius: 8px;
  background: #fff7f2;
  color: #8a3d18;
  font-size: 0.875rem;
}

.survey-closed-notice {
  margin-top: var(--space-3);
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ffd4c0;
  background: #fff7f2;
  color: #8a3d18;
  font-size: 0.875rem;
  line-height: 1.7;
}

.survey-closed-notice p {
  margin: 0;
}

.survey-single-nav {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid #d6d6d6;
}

.survey-single-nav .photo-single-nav__center {
  width: 100%;
}

.survey-complete {
  padding-top: var(--space-4);
}

.survey-complete__card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid #e3e3e3;
  background: #f5f5f5;
}

.survey-complete__check {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  background: #f1f1f1;
  color: #2f2f2f;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}

.survey-complete__check::before {
  content: "✓";
}

.survey-complete__card > h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.3;
  color: var(--gray-dark);
  text-align: center;
}

.survey-complete__lead {
  margin: 0 0 var(--space-4);
  font-size: 1.125rem;
  line-height: 1.85;
  color: #4c4c4c;
  text-align: center;
}

.survey-complete__summary {
  width: min(760px, 100%);
  margin: 0 auto var(--space-4);
  padding: 20px 28px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: var(--white);
}

.survey-complete__summary > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 14px;
  padding: 11px 0;
  border-bottom: 1px solid #ececec;
}

.survey-complete__summary > div:last-child {
  border-bottom: 0;
}

.survey-complete__summary dt,
.survey-complete__summary dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.survey-complete__summary dt {
  color: #4f4f4f;
  font-weight: 700;
}

.survey-complete__summary dd {
  color: #333;
}

.survey-complete__notice {
  width: min(760px, 100%);
  margin: 0 auto var(--space-4);
  padding: 20px 24px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #f1f1f1;
}

.survey-complete__notice p {
  margin: 0;
  color: #585858;
  font-size: 0.9375rem;
  line-height: 1.9;
}

.survey-complete__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.survey-complete__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-decoration: none;
  border-radius: 4px;
  padding: 0 30px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.survey-complete__btn--primary {
  min-width: min(320px, 100%);
  background: #5b5b5b;
  color: var(--white);
}

.survey-complete__btn--primary:is(:hover, :focus-visible) {
  background: #444;
}

.survey-complete__btn--secondary {
  min-width: 170px;
  border: 1px solid #cfcfcf;
  background: var(--white);
  color: #6a6a6a;
  font-size: 0.875rem;
}

.survey-complete__btn--secondary:is(:hover, :focus-visible) {
  border-color: #b7b7b7;
  color: #444;
}

@media (max-width: 1024px) {
  .survey-main-image {
    width: min(100%, 680px);
  }
}
@media (max-width: 768px) {
  .survey-archive {
    width: 96%;
    padding-top: var(--space-3);
  }
  .survey-archive-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }
  .survey-archive-item__status {
    margin-bottom: 8px;
    font-size: 0.75rem;
  }
  .survey-archive-item__title {
    font-size: clamp(1.2rem, 6.2vw, 1.55rem);
  }
  .survey-archive-item__meta {
    margin-top: 8px;
    font-size: 0.8125rem;
  }
  .survey-archive-item__action {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-top: 4px;
    font-size: 0.9375rem;
  }
  .survey-single {
    width: 96%;
    padding-top: var(--space-3);
  }
  .survey-single__title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    margin-bottom: var(--space-2);
  }
  .survey-main-image {
    margin-bottom: 14px;
  }
  .survey-meta {
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--space-2);
  }
  .survey-intro {
    padding: 14px 16px;
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
  }
  .survey-section,
  .survey-question {
    padding: 16px;
  }
  .survey-section {
    margin-bottom: var(--space-2);
  }
  .survey-section h2 {
    font-size: 1.25rem;
  }
  .survey-question h3 {
    font-size: 1rem;
  }
  .survey-option {
    align-items: flex-start;
  }
  .survey-option input {
    margin-top: 5px;
  }
  .survey-submit-link-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .survey-cancel-link,
  .survey-submit-link {
    width: 100%;
  }
  .survey-cancel-link {
    order: 2;
  }
  .survey-submit-link {
    order: 1;
  }
  .survey-complete {
    width: 96%;
    padding-top: var(--space-3);
  }
  .survey-complete__card {
    padding: 20px 14px 24px;
  }
  .survey-complete__check {
    width: 84px;
    height: 84px;
    margin-bottom: var(--space-2);
    font-size: 3rem;
  }
  .survey-complete__card > h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .survey-complete__lead {
    font-size: 0.9375rem;
    margin-bottom: var(--space-3);
  }
  .survey-complete__summary {
    padding: 14px;
    margin-bottom: var(--space-3);
  }
  .survey-complete__summary > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 9px 0;
  }
  .survey-complete__summary dt,
  .survey-complete__summary dd {
    font-size: 0.875rem;
  }
  .survey-complete__notice {
    padding: 14px;
    margin-bottom: var(--space-3);
  }
  .survey-complete__notice p {
    font-size: 0.875rem;
  }
  .survey-complete__btn {
    width: 100%;
  }
  .survey-complete__btn--primary {
    min-width: 0;
  }
}

/*# sourceMappingURL=main.css.map */
