@charset "UTF-8";
:root {
  --main: #00A9E0;
  --white: #fff;
  --text-color: #333;
  --accent-color: #0044F2;
  --search-btn: #0077FF;
  --secondary: #001871;
  --section-border: #E8E8E8;
  --infinity: calc(infinity * 1px);
  --leading-trim: calc((1em - 1lh)/2);
  --sans: "Albert Sans", sans-serif;
}

.-radius {
  border-radius: var(--infinity) !important;
}

.leading-trim:before, .leading-trim:after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim:before {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim:after {
  -webkit-margin-before: var(--leading-trim);
          margin-block-start: var(--leading-trim);
}

.c-button {
  display: inline-block;
  border-radius: 8px;
  border: 2px solid #555;
  background: #fff;
  padding: 20px 40px;
  font-weight: bold;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button:hover {
    background: #657DE0;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-button--more {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-button--more:after {
  content: "";
  -webkit-mask: url(../../asset/images/chevron_under.svg) no-repeat;
          mask: url(../../asset/images/chevron_under.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #000;
  width: 12px;
  height: 7.4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button--more:hover:after {
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-button--link {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
}
.c-button--link:after {
  content: "";
  -webkit-mask: url(../../asset/images/chevron.svg) no-repeat;
          mask: url(../../asset/images/chevron.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #000;
  width: 7.4px;
  height: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button--link:hover:after {
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-button--cta {
  padding: 20px 30px;
}

.c-button img {
  margin-inline: auto;
  height: auto;
}

.c-button--creator {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  width: 100%;
  background: #F6F6F6;
  border: none;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .c-button--creator {
    font-size: 14px;
  }
}
.c-button--creator span {
  font-weight: normal;
  font-size: 14px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-button--creator span {
    font-size: 12px;
  }
}

.c-button--check {
  background: url(../../asset/images/price_button_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 20px;
  border: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.7;
  font-weight: bold;
  border-radius: 12px;
}
@media (any-hover: hover) {
  .c-button--check:hover {
    opacity: 0.7;
  }
}

.c-heading {
  color: var(--accent-color);
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.c-text {
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-weight: 400;
  line-height: 1.7;
}

.c-text--secondary {
  font-size: 14px;
}

.c-caution {
  position: relative;
  margin-top: 50px;
}
.c-caution:before {
  content: "";
  background: url(../../asset/images/icon_exclamation.svg) no-repeat;
  background-size: contain;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-caution a {
  color: var(--accent-color);
  text-decoration: underline;
}

.c-card__name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 4px;
}

.c-card__link {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}

.c-card__link img {
  aspect-ratio: 240/160;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .c-card__link:hover img {
    scale: 1.05;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.l-container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}
.l-container.-s {
  width: min(100% - 40px, 800px);
}

.l-section {
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .l-section {
    margin-top: 60px;
  }
}

.l-grid-col5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .l-grid-col5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-main {
  padding-bottom: 120px;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #000;
  font-family: var(--sans);
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: break-all;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
}
body a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body a.text-link {
  position: relative;
}
body a.text-link:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4d4d4d;
  bottom: -4px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
body a.text-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
body a,
body button,
body label {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media only screen and (max-width: 768px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  [data-sp-only] {
    display: none !important;
  }
}

a[href^="tel:"] {
  color: inherit;
}
@media only screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

figure {
  margin-bottom: 0;
  margin-top: 0;
}

dt {
  font-weight: normal;
}

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

body.is-modal-open {
  overflow: hidden;
}

.is-hidden {
  display: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  opacity: 1;
  padding-bottom: 20px;
}

.l-header.is-fadeout {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header.is-scrolled {
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  padding-top: 20px;
  gap: clamp(80px, 8.6111111111vw, 124px);
}
@media (1024px <= width <= 1200px) {
  .p-header__inner {
    zoom: 0.9;
  }
}

.p-header__logo-link img {
  width: clamp(120px, 10.5555555556vw, 152px);
}
@media only screen and (max-width: 768px) {
  .p-header__logo-link img {
    width: 20.2666666667vw;
  }
}

.p-header__fixed-nav {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .p-header__fixed-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

.p-header__fixed-nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
  gap: 2px;
}

.p-header__fixed-nav-item {
  text-align: center;
}

.p-header__fixed-nav-link {
  font-size: 10px;
  font-weight: bold;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.p-page-top .p-header__fixed-nav-link.-top, .p-game-archive .p-header__fixed-nav-link.-game, .p-support-archive .p-header__fixed-nav-link.-support, .p-page-creator .p-header__fixed-nav-link.-creator {
  background: var(--accent-color);
  color: #fff;
}

:root {
  /**
   * Local variable
  **/
  --height-mobile: 70px;
  --height-desktop: 120px;
  --button-bar-width: 18px;
  --button-bar-height: 2px;
  --button-bar-interval: 6px;
  --button-bar-width-open: 20px;
}

.p-header__button {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 11;
  border-radius: 0;
  background: #000;
  -webkit-transition: border-radius 0.3s ease, background 0.3s ease;
  transition: border-radius 0.3s ease, background 0.3s ease;
}

.p-header__button-bar {
  width: var(--button-bar-width);
  height: var(--button-bar-height);
  position: absolute;
  top: calc((100% - var(--button-bar-height)) / 2);
  left: calc((100% - var(--button-bar-width)) / 2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}
.p-header__button-bar:nth-child(1) {
  margin-top: calc(var(--button-bar-interval) * -1);
}
.p-header__button-bar:nth-child(3) {
  margin-top: var(--button-bar-interval);
}
[data-is-nav-visible=true] .p-header__button-bar {
  width: var(--button-bar-width-open);
  left: calc((100% - var(--button-bar-width-open)) / 2);
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(1) {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(2) {
  opacity: 0;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(3) {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

[data-is-nav-visible=true] .p-header__fixed-nav-item:not(:last-child) {
  display: none;
}

[data-is-nav-visible=true] .p-header__button {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1001;
  border-radius: 8px;
  -webkit-transition: border-radius 0.3s ease, background 0.3s ease;
  transition: border-radius 0.3s ease, background 0.3s ease;
  background: #fff;
  border: 1px solid #767676;
  display: grid;
  place-items: center;
}

/* 開いたときは「X」を濃い色に（今は白バーなので反転） */
[data-is-nav-visible=true] .p-header__button-bar {
  background: #333;
}

/* すでに書いているX化アニメはそのままでOK（回転やopacity） */
@media (any-hover: hover) {
  .p-global-nav__link:hover {
    color: var(--accent-color);
  }
}
.p-page-top .p-global-nav__link.-top, .p-game-archive .p-global-nav__link.-game, .p-circle-archive .p-global-nav__link.-circle, .p-support-archive .p-global-nav__link.-support, .p-page-creator .p-global-nav__link.-creator, .p-page-contact .p-global-nav__link.-contact {
  color: var(--accent-color);
  font-weight: bold;
}

.p-global-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-global-nav__list {
    display: none;
  }
}

.p-global-nav__item a {
  font-size: clamp(10px, 2.6666666667vw, 14px);
}

.p-global-nav__item + .p-global-nav__item {
  margin-left: clamp(40px, 3.8888888889vw, 56px);
}

.p-global-nav__item-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-global-nav__item-sp {
    display: block;
  }
}

.p-mobile-nav {
  visibility: hidden;
  padding: 60px 30px 70px;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
}
[data-is-nav-visible=true] .p-mobile-nav {
  visibility: visible;
  opacity: 1;
}

.p-mobile-nav__link {
  font-size: 14px;
  padding-bottom: 20px;
  display: block;
  border-bottom: 1px solid #f3f3f3;
}

.p-mobile-nav__item + * .p-mobile-nav__link {
  padding-top: 20px;
}

.p-mobile-nav__list.--secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
}
.p-mobile-nav__list.--secondary .p-mobile-nav__link {
  border: none;
  font-size: 10px;
}
.p-mobile-nav__list.--secondary .p-mobile-nav__item + * .p-mobile-nav__link {
  padding-top: unset;
}
.p-mobile-nav__list.--secondary .p-mobile-nav__item {
  padding-top: 20px;
}

.l-footer {
  position: relative;
  padding-block: 80px 70px;
}
.l-footer:before {
  content: "";
  background: url(../../asset/images/footer-bg.jpg) no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .l-footer:before {
    background-image: url(../../asset/images/footer-bg_sp.jpg);
  }
}

.l-footer__container {
  width: min(100% - 40px, 1061px);
  margin-inline: auto;
}

.l-footer__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.l-footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  margin-top: 60px;
  gap: 56px;
}
@media screen and (max-width: 1200px) {
  .l-footer__list {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 1024px) {
  .l-footer__list {
    white-space: unset;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer__list {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .l-footer__list {
    margin-inline: unset;
  }
}

@media (any-hover: hover) {
  .l-footer__item a:hover,
  .l-footer__bottom-link:hover {
    text-decoration: underline;
  }
}

.l-footer__bottom-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 56px;
}

.l-footer__bottom-link {
  font-size: 12px;
}

.splide__arrow {
  background: #fff;
  border: 1px solid #000;
  opacity: 1;
  width: 24px;
  height: 24px;
}

.splide__arrow svg {
  width: 12px;
  height: 12px;
}

.splide__arrow--prev {
  left: -12px;
}

.splide__arrow--next {
  right: -12px;
}

.splide__pagination {
  display: none;
}

/**
 * Local variable
**/
/**
 * Breadcrumb
**/
.p-breadcrumb-wrapper {
  background: #fff;
}

.p-breadcrumb {
  margin-top: 10px;
  width: calc(100% - 40px);
  margin-inline: auto;
  font-size: 14px;
}
.p-breadcrumb > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-breadcrumb > span:not(.breadcrumb_last) {
  white-space: nowrap;
}
.p-breadcrumb .breadcrumb_last {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-breadcrumb a {
  position: relative;
  color: var(--accent-color);
}
.p-breadcrumb a:hover {
  text-decoration: none;
}
.p-breadcrumb a::after {
  content: "";
  background: url(../../asset/images/chevron.svg) no-repeat;
  background-size: contain;
  width: 7.4px;
  height: 12px;
  display: inline-block;
  margin-inline: 10px;
  position: relative;
  top: 1px;
}
@media (any-hover: hover) {
  .p-breadcrumb a:hover {
    text-decoration: underline;
  }
}

.l-root {
  overflow-x: clip;
}

.p-fv {
  position: relative;
}

.p-fv__bg img {
  width: 100%;
  min-height: 500px;
}
@media only screen and (max-width: 1024px) {
  .p-fv__bg img {
    height: 500px;
  }
}

.p-fv__copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
}

.p-fv__copy-main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 20px;
}

.p-fv__copy-main img {
  width: clamp(262px, 39.4444444444vw, 568px);
}

.p-fv__copy-sub {
  font-weight: bold;
  text-align: center;
}

.p-about__container {
  width: min(100% - 40px, 735px);
  margin-inline: auto;
  text-align: center;
}

.p-about_text {
  margin-top: 20px;
}

.p-cta {
  position: relative;
  padding: 60px 25px;
  width: min(100%, 735px);
  margin-inline: auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-cta {
    padding: 40px 25px;
  }
}
.p-cta:before {
  content: "";
  background: url(../../asset/images/cta-bg.jpg) no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .p-cta:before {
    background-image: url(../../asset/images/cta-bg_sp.jpg);
  }
}

.p-cta__title {
  font-size: clamp(16px, 1.9444444444vw, 28px);
  font-weight: 700;
  line-height: 1.7;
}

.p-cta__text {
  margin-top: 40px;
}

.p-cta__button {
  margin-top: 40px;
}

.p-search__container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  text-align: center;
}

.p-search__caution {
  margin-top: 50px;
}

.p-search__caution a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ========== Base / Reset (必要最小限) ========== */
.p-search__form {
  max-width: 1240px;
  margin-inline: auto;
  padding: 60px 9.4444444444vw;
  padding: 60px clamp(136px, 9.4444444444vw, 136px);
  background: #fbfbfb;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-search__form {
    padding: 40px 20px;
  }
}

.c-label {
  text-align: left;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

/* 入力系共通 */
.c-input,
.c-select select {
  text-align: left;
  width: 100%;
  padding: 10px;
  border: 1px solid #555;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  background: #fff;
  outline: none;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.c-input::-webkit-input-placeholder {
  color: #9aa0a6;
}

.c-input::-moz-placeholder {
  color: #9aa0a6;
}

.c-input:-ms-input-placeholder {
  color: #9aa0a6;
}

.c-input::-ms-input-placeholder {
  color: #9aa0a6;
}

.c-input::placeholder {
  color: #9aa0a6;
}

/* フォーカス */
.c-input:focus,
.c-select select:focus {
  border-color: #1e66ff;
  -webkit-box-shadow: 0 0 0 3px rgba(30, 102, 255, 0.15);
          box-shadow: 0 0 0 3px rgba(30, 102, 255, 0.15);
}

/* select の矢印 */
.c-select {
  position: relative;
}

.c-select select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url(../../asset/images/chevron_blue.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.c-form-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}

/* 面の割り当て */
.p-search__field--keyword {
  width: 400px;
}
@media only screen and (max-width: 768px) {
  .p-search__field--keyword {
    width: 200px;
  }
}

.p-search__field--players {
  width: 100px;
}

.p-search__field--time {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .p-search__field--time {
    width: 100px;
  }
}

.p-search__field--age {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .p-search__field--age {
    width: 109px;
  }
}

.p-search__field--theme {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .p-search__field--theme {
    width: 166px;
  }
}

.p-search__field--mechanics {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .p-search__field--mechanics {
    width: 200px;
  }
}

/* ボタン行 */
.c-form-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

.c-button--search {
  display: inline-block;
  border-radius: 8px;
  border: 2px solid #555;
  background: #fff;
  padding: 20px 40px;
  font-weight: bold;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}

.c-button--primary {
  background: #0077FF;
  color: #fff;
  font-size: 14px;
  min-width: 200px;
  border: none;
}

.c-button--primary:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.c-button--ghost {
  background: #fff;
  font-size: 14px;
  border: 1px solid #555;
  font-weight: bold;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .c-button--ghost {
    padding-inline: 10px;
  }
}

.p-game__container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-game__container {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.p-game__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 10px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-game__list {
    gap: 10px 1px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-game__item {
  position: relative;
}

.p-game__link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.p-game__link img {
  -webkit-transition: scale 0.3s ease, -webkit-transform 0.3s ease;
  transition: scale 0.3s ease, -webkit-transform 0.3s ease;
  transition: scale 0.3s ease, transform 0.3s ease;
  transition: scale 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-game__link:hover img {
    scale: 1.05;
    -webkit-transition: scale 0.3s ease;
    transition: scale 0.3s ease;
  }
}

.p-game__link img {
  border-radius: 4px;
  aspect-ratio: 240/340;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-game__details {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.p-game__players {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 12px;
  gap: 4px;
  line-height: 1.7;
}
.p-game__players:before {
  content: "";
  background: url(../../asset/images/icon_players.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-block: calc((1lh - 16px) / 2);
}

.p-game__time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 12px;
  gap: 4px;
  line-height: 1.7;
}
.p-game__time:before {
  content: "";
  background: url(../../asset/images/icon_time.svg) no-repeat;
  display: inline-block;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-block: calc((1lh - 16px) / 2);
}

.p-game__name {
  font-weight: bold;
  margin-top: 4px;
  font-size: 14px;
  text-align: left;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .p-game__name {
    font-size: 12px;
  }
}

.p-game__button {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .p-game__button {
    margin-top: 40px;
  }
}

.p-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.p-modal[aria-hidden=false] {
  display: block;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.p-modal__wrap {
  position: fixed;
  inset: 0;
  margin: auto;
  width: calc(100% - 40px);
  max-width: 680px;
  z-index: 1;
  height: 600px;
}

.p-modal__content {
  background: #fff;
  padding: 50px 40px;
  overflow-y: auto;
  height: inherit;
}

.p-modal__close {
  position: absolute;
  top: -12px;
  right: -16px;
  border-radius: 12px;
  border: 1px solid #fff;
  background: #000;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
}

.p-modal__close::before {
  content: "";
  background: url(../../asset/images/icon_modal_close.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 16px;
  background-position: center;
}

.p-modal__body {
  margin-top: 20px;
}

.p-modal .splide__slide img {
  width: 100%;
  aspect-ratio: 600/340;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.p-modal__body-title {
  color: #0044F2;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .p-modal__body-title {
    font-size: 16px;
  }
}

.p-modal__info {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .p-modal__info {
    font-size: 10px;
  }
}

.p-modal__info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.p-modal__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.p-modal__icons:before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-block: calc((1lh - 16px) / 2);
}

.p-modal__players.p-modal__icons:before {
  background-image: url(../../asset/images/icon_players.svg);
}

.p-modal__time.p-modal__icons:before {
  background-image: url(../../asset/images/icon_time.svg);
}

.p-modal__age.p-modal__icons:before {
  background-image: url(../../asset/images/icon_age.svg);
}

.p-modal__description {
  color: #000;
  line-height: 1.7;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-modal__description {
    font-size: 12px;
  }
}

.p-modal__creator-button {
  margin-top: 20px;
}

.p-modal__price-link {
  margin-top: 20px;
}

.p-creator__title {
  text-align: center;
}

.p-creator__text {
  text-align: center;
  margin-top: 20px;
}

.p-creator__caution {
  margin-top: 50px;
  text-align: center;
}

.p-creator__list {
  margin-top: 20px;
}

.p-creator__button {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .p-creator__button {
    margin-top: 40px;
  }
}

.p-support__text {
  text-align: center;
  margin-top: 20px;
}

.p-support__button {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .p-support__button {
    margin-top: 40px;
  }
}

.p-news__container {
  width: min(100% - 40px, 965px);
  margin-inline: auto;
}

.p-news__list {
  margin-top: 20px;
}

.p-news__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  background: #F9F9F9;
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .p-news__row {
    padding: 20px;
    gap: 40px;
  }
}

.p-news__row:nth-of-type(even) {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .p-news__row dt,
  .p-news__row dd {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .p-news__link:hover {
    text-decoration: underline;
  }
}

.p-news__button {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .p-news__button {
    margin-top: 40px;
  }
}

.p-sub-fv {
  position: relative;
}

.p-sub-fv__bg img {
  height: 400px;
}
@media only screen and (max-width: 768px) {
  .p-sub-fv__bg img {
    height: 300px;
    min-height: 300px;
  }
}

.p-sub-fv__title {
  padding-inline: 20px;
  line-height: 1.7;
  font-size: 32px;
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 768px) {
  .p-sub-fv__title {
    font-size: 24px;
  }
}

.p-sub-intro__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-sub-intro__caution {
  text-align: center;
}

.p-sub-card {
  margin-top: 20px;
}
.p-sub-card + * {
  margin-top: 40px;
}

.p-sub-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
}
@media only screen and (max-width: 768px) {
  .p-sub-card__title {
    font-size: 16px;
  }
}

.p-sub-card__list {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-sub-card__list {
    margin-top: 10px;
  }
}

.p-sub-intro__caution {
  margin-top: 50px;
}

.p-sub-intro__comming {
  margin-top: 20px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-sub-cta {
  margin-top: 60px;
}

.p-filter {
  margin-bottom: 2em;
}
.p-filter__label {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.p-filter__btn {
  display: inline-block;
  margin: 0 0.4em 0.6em 0;
  padding: 0.4em 1.2em;
  border: 1px solid #ccc;
  border-radius: 9999px;
  font-size: 0.9rem;
  color: #333;
  background-color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-filter__btn:hover {
  background-color: #f0f0f0;
  border-color: #999;
}
.p-filter__btn.is-active {
  background-color: #e63946;
  color: #fff;
  border-color: #e63946;
}
.p-filter--player, .p-filter--theme, .p-filter--mechanics, .p-filter--age, .p-filter--time {
  margin-bottom: 1.5em;
}

.p-game__filter {
  margin-bottom: 3em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .p-game__filter {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1em;
  }
  .p-game__filter .p-filter {
    display: inline-block;
    margin-right: 1em;
    vertical-align: top;
  }
  .p-game__filter .p-filter__btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-game__filter .p-filter__btn:hover {
    background-color: #f0f0f0;
  }
  .p-game__filter .p-filter__btn.is-active {
    background-color: #e63946;
    color: #fff;
    border-color: #e63946;
  }
}

.p-initial-group {
  margin-top: 20px;
}
.p-initial-group + * {
  margin-top: 60px;
}

.p-initial-group__heading {
  font-weight: bold;
  text-align: left;
  font-size: 20px;
}

.p-sub-creator {
  margin-top: 20px;
}
.p-sub-creator + * {
  margin-top: 40px;
}

.p-article h2 {
  color: var(--accent-color);
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.p-article p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}
.p-article .wp-block-media-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .p-article .wp-block-media-text {
    grid-template-columns: 1fr;
    grid-template-areas: "figure" "content";
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .p-article .wp-block-media-text__content {
    grid-area: content;
  }
  .p-article .wp-block-media-text__media {
    grid-area: figure;
  }
}
.p-article .p-article__time {
  text-align: center;
  margin-block: 40px;
}
@media only screen and (max-width: 768px) {
  .p-article .p-article__time {
    margin-block: 20px;
  }
}

.p-article__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .p-article__back {
    margin-top: 60px;
  }
}

form {
  margin-top: 40px;
}

.p-form-container {
  margin-top: 80px;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #f08c68;
  padding: 80px 106px;
  width: calc(100% - 40px);
  max-width: 996px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-form-container {
    padding: 40px 20px;
  }
}

.p-contact-form__heading {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .p-contact-form__heading {
    font-size: 20px;
  }
}

.p-contact-form__text {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form__text {
    font-size: 12px;
    margin-top: 20px;
  }
}

.p-contact-form {
  margin-top: 60px;
}

.p-contact-form__container {
  width: min(100% - 40px, 740px);
  margin-inline: auto;
}

.c-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}

.c-form-row {
  display: grid;
  grid-template-columns: 241px 1fr;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media only screen and (max-width: 768px) {
  .c-form-row {
    row-gap: 14px;
    grid-template-columns: 1fr;
  }
}

.c-label {
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 24px;
  padding: 0;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-label {
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.c-label[data-label=required]:after {
  content: "";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: var(--c-accent);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  margin-right: 10px;
  position: relative;
  top: 1px;
  border-radius: 4px;
}
[data-lang=en] .c-label[data-label=required]:after {
  content: "Required";
}
[data-lang=cn] .c-label[data-label=required]:after {
  content: "必填";
}

.c-checkbox-wrap .wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.c-checkbox-wrap .wpcf7-list-item > label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  display: block;
  width: 100%;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 8px;
  line-height: 1;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #9193A3;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #9193A3;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #9193A3;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #9193A3;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #9193A3;
}

textarea {
  padding-top: 16px;
}

input[type=checkbox] + span {
  font-size: 14px;
}

button[type=submit] {
  border: none;
}

textarea {
  height: 160px;
}

.wpcf7-list-item {
  margin-left: 0;
}

.c-check-list {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .c-check-list {
    margin-top: 0;
  }
}

.c-check-list .wpcf7-form-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .c-check-list .wpcf7-form-control {
    padding: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

[data-entry].c-check-list .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 30px;
}
@media only screen and (max-width: 768px) {
  [data-entry].c-check-list .wpcf7-form-control {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
[data-entry] .wpcf7-list-item .wpcf7-list-item-label:before,
[data-entry] .wpcf7-list-item .wpcf7-list-item-label:after {
  border-radius: 4px;
}

.wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 500;
}

.wpcf7-list-item {
  margin: 0 !important;
  cursor: pointer;
}
.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7-list-item input[type=checkbox] {
  border: 1px solid #333;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  position: relative;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-not-valid .wpcf7-list-item input[type=checkbox] {
    width: 19px;
    height: 19px;
  }
}
.wpcf7-list-item input[type=checkbox]:checked {
  border: 2px solid var(--c-primary);
  background: var(--c-primary);
}
.wpcf7-list-item input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  inset: -3px 0 0 0;
  margin: auto;
  border-radius: 1px;
  width: 14px;
  height: 9px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wpcf7-list-item label {
  cursor: pointer;
}
.wpcf7-list-item input[type=radio] {
  border: 1px solid #999;
  width: 16px;
  height: 16px;
  border-radius: var(--bdr-max);
  position: relative;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .wpcf7-form-control.wpcf7-not-valid .wpcf7-list-item input[type=radio] {
    width: 19px;
    height: 19px;
  }
}
.wpcf7-list-item input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}
.wpcf7-list-item input[type=radio]:checked + span:after,
.wpcf7-list-item input[type=checkbox]:checked + span:after {
  opacity: 1;
}

.c-form-text {
  margin-top: 40px;
  font-weight: 500;
  font-size: 14px;
  display: grid;
  grid-template-columns: 241px 1fr;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media only screen and (max-width: 768px) {
  .c-form-text {
    margin-top: 16px;
    display: revert;
  }
}
.c-form-text:before {
  content: "";
}
@media only screen and (max-width: 768px) {
  .c-form-text:before {
    display: none;
  }
}

.p-thanks__message {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-thanks__message {
    font-size: 24px;
  }
}
.p-thanks__text {
  margin-top: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-thanks__text {
    text-align: left;
  }
}
.p-thanks__buttonWrap {
  margin-top: 40px;
  text-align: center;
}

.c-submit-button {
  margin-top: 20px;
  margin-inline: auto;
  position: relative;
  text-align: center;
  width: 300px;
  margin-top: 40px;
}

.c-submit-button input {
  font-size: 14px;
  font-weight: bold;
  border: none;
  padding: 18px 30px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  border: 1px solid #000;
  width: 300px;
  margin-inline: auto;
}

@media (any-hover: hover) {
  .c-submit-button input:hover {
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
}
.c-form-privacy-wrap {
  margin-top: 40px;
}

.c-form-privacy {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form-privacy a {
  color: var(--c-accent);
  text-decoration: underline;
  display: inline-block;
  margin-left: 8px;
}

.c-form-privacy .wpcf7-not-valid-tip {
  position: absolute;
  width: 100%;
  white-space: nowrap;
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  color: #dc3232;
  font-weight: bold;
  margin-top: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 14px;
}

.wpcf7-radio {
  display: grid;
  row-gap: 10px;
}

.wpcf7-list-item label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.p-contact-form__policy {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-contact-form__policy {
    margin-top: 40px;
    font-size: 12px;
  }
}

.p-contact-form__policy a {
  color: var(--accent-color);
}

@media (any-hover: hover) {
  .p-contact-form__policy a:hover {
    text-decoration: none;
  }
}