@charset "UTF-8";
/* 変数 */
/* 関数 */
/*
css
　 ├ style.css--------：WEB 1,400px以上
　 ├ pc.css-----------：WEB 1,399px以下、1,025以上
　 ├ tablet.css-------：WEB 1,024以下、767px以上
　 └ smart.css--------：WEB 768px以下
*/
/* css記載順序
01. 固定ページのh1,h2見出し

02. toppage

03. form
04. 下層ページ
end css記載順序
*/
/*************************** 01. 固定ページのh1,h2見出し *******************/
/*************************** 02. toppage ***********************/
.p-top-mv {
  min-height: 75rem;
}

.p-top-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* brand */
.p-top-brand__inner {
  max-width: 75rem;
}

.p-top-brand__title {
  color: #989898;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.p-top-brand__text {
  color: #101010;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8;
  margin-top: 3.2rem;
}

.p-top-brand__btn {
  text-align: center;
}

/* news */
.p-top-news__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.7rem;
  margin-top: 4.8rem;
}

.p-top-news__item-img img {
  aspect-ratio: 300/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-news__item-category {
  margin-top: 1.4rem;
}

.p-top-news__item-title {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  margin-top: 0.8rem;
}

.p-top-news__btn {
  text-align: center;
}

/* support team */
.p-top-support__swiper {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.p-top-support__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  position: relative;
}

.p-top-support__slide {
  width: 45rem;
  opacity: 0.6;
}

.p-top-support__slide.swiper-slide-active {
  opacity: 1;
}

.p-top-support__slider-prev {
  display: block;
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("../../images/left-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
}

.p-top-support__slider-next {
  display: block;
  position: absolute;
  top: 50%;
  right: 33%;
  transform: translateY(-50%);
  z-index: 10;
  background-image: url("../../images/right-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
}

.p-top-support__slide img {
  aspect-ratio: 520/346;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-support__btn {
  text-align: center;
}

/* order */
.p-top-order__swiper {
  margin-right: calc(50% - 50vw);
}

.p-top-order__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-top-order__slide {
  width: 38rem;
}

.p-top-order__btn {
  text-align: center;
}

/* item */
.p-top-item__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.p-top-item__btn {
  text-align: center;
}

/*************************** 03. form  ***********************/
.p-page-contact {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-page-contact {
    margin-bottom: 5rem;
  }
}

.p-page-contact__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-contact__text {
    text-align: left;
  }
}

.p-form__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form__list {
    gap: 2rem;
  }
}

.p-form__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-form__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 36%;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    width: 100%;
    padding: 0;
    gap: 1rem;
  }
}

.p-form__required {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 0.6rem;
  display: inline-block;
  border: 1px solid rgba(33, 33, 33, 0.5);
  background-color: #101010;
  color: #fff;
}

.p-form__required--bg {
  background-color: #fff;
  color: #101010;
}

.p-form__data-select {
  width: 100%;
}

.p-form__select,
.p-form__input,
.p-form__textarea {
  width: 100%;
  background-color: #f5f5f5;
  padding: 2rem;
  border: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-form__select,
  .p-form__input,
  .p-form__textarea {
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}

.p-form__data {
  width: 100%;
}

.p-form__input {
  width: 100%;
}

.p-form__group--start {
  align-items: flex-start;
}

.p-form__textarea {
  height: 30rem;
}

.p-form__label--ck {
  display: block;
  padding: 0;
  width: 100%;
  text-align: center;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-form__label--ck {
    margin-top: 4rem;
  }
}

.p-form__privacy {
  text-decoration: underline;
}

.p-form__btn {
  text-align: center;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-form__btn {
    margin-top: 4rem;
  }
}

.p-form__btn input {
  width: 100%;
  background-color: #101010;
  color: #fff;
  padding: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
}

.p-form__group--privacy {
  display: block;
}

.p-form__btn-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 2rem;
  display: block;
}

.p-form__btn-note {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 1rem;
  display: block;
}

.p-form__btn-note a {
  text-decoration: underline;
}

.wpcf7-spinner {
  position: absolute;
}

.grecaptcha-badge {
  visibility: hidden;
}

.page-id-2341 .l-content {
  padding-top: 0;
  margin-top: 0;
}

.p-form__data input[type=radio] {
  accent-color: #000;
}

/*************************** 04. 下層ページ  ***********************/
.p-project__swiper {
  margin-right: calc(50% - 50vw);
}

.p-project__wrapper {
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.p-project__slide {
  width: 37.8rem;
}

.p-project__slide-title {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.p-project__slide-text {
  color: var(--black, #101010);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.8rem;
}

.p-project__slider-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18rem;
  margin-top: 5rem;
  margin-left: 0;
}

.p-project__slider-prev,
.p-project__slider-next {
  width: 5rem;
  height: 5rem;
}

.p-project__slide-img img {
  aspect-ratio: 378/252;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* archive support team */
.p-page-title__subheading {
  text-align: center;
}

.p-page-title__subheading span {
  color: #FFF;
  background: #101010;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.4rem 1rem;
}

.p-page-title__heading {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1rem;
}

.p-archive-support-team__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.6rem 3rem;
}

.p-archive-support-team__img img {
  aspect-ratio: 400/266;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive-support-team__name {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.p-archive-support-team__league {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-archive-support-player__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem 2.7rem;
}

.p-archive-support-player__img img {
  aspect-ratio: 300/375;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive-support-player__name {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.p-archive-support-player__league {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-home__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.p-postList.-type-card, .p-postList.-type-thumb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.-type-card .p-postList__item {
  width: 100%;
}

.c-item-title {
  color: #FFF;
  background-color: #101010;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.6rem;
}

.p-item-rank__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}

.p-item-rank__card-title {
  background-color: #B28400;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  position: relative;
}

.p-item-rank__card-title-no {
  width: 6rem;
  height: 6rem;
  background-color: #B28400;
  border-radius: 50%;
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  font-style: italic;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-item-rank__card-img {
  margin-top: 1.8rem;
}

.p-item-rank__card-title-no--1,
.p-item-rank__card-title--1 {
  background-color: #B28400;
}

.p-item-rank__card-title-no--2,
.p-item-rank__card-title--2 {
  background-color: #828282;
}

.p-item-rank__card-title-no--3,
.p-item-rank__card-title--3 {
  background-color: #623D26;
}

.p-item-rank__card-title-no--4,
.p-item-rank__card-title--4 {
  background-color: #101010;
}

.p-item-new__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.p-item-new__card-img img {
  aspect-ratio: 400/400;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-item-new__card-text {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2.4rem;
}

.p-item-new__card-price {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2.4rem;
}

.p-item-all {
  margin-bottom: 10rem;
}

.p-item-all__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem 3.2rem;
  margin-top: 4rem;
}

.p-item-all__card-img img {
  aspect-ratio: 230/230;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-item-all__card-text {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-item-all__card-price {
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.p-archive-works {
  margin-bottom: 10rem;
}

.p-archive-works__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem 2rem;
  margin-top: 4rem;
}

/*チームオーダーTOP*/
.page-id-2393 .l-content {
  padding-top: 0;
  margin-bottom: 0;
}
.order-fv-inner .wp-block-image img{
  width:100%;
}
.order-fv-inner .swell-block-columns__inner {
  align-items: center;
}

.order-fv-inner .fv-copy02 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.teamorder-point .swell-block-columns__inner {
  justify-content: center;
}

.teamorder-point-item-inner {
  background: #fff;
  padding: 2rem;
}

.order-works-achievement-box {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.order-works-achievement .wp-block-image img {
  max-width: 384px;
}

.post_content h2.h2-style01 {
  font-size: 32px;
  margin-top: 6px !important;
  letter-spacing: 3px;
}

.h2-style01-en {
  background: #000;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

.h2-style01-en.white {
  color: #1A1A1A!important;
  background: #fff;
}

.h2-style01-en.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.order-check-list li {
  font-size: 18px;
  font-weight: bold;
}

ul.order-check-list {
  list-style: none; /* デフォルトの点を消す */
  padding-left: 0; /* 左の余白をリセット */
}

ul.order-check-list li {
  position: relative;
  padding-left: 30px; /* チェックアイコン分の余白 */
  line-height: 1.6;
}

ul.order-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px; /* 垂直位置を微調整 */
  width: 20px; /* 画像サイズ */
  height: 20px;
  background: url("http://ftcn.positive-sky.com/wp-content/uploads/2025/10/check.png") no-repeat center center;
  background-size: contain; /* 画像をちょうど良く収める */
}

.order-flow-item {
  background: url("http://ftcn.positive-sky.com/wp-content/uploads/2025/10/order-flow-bg.png") no-repeat center center;
  width: 100%;
  max-width: 860px;
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
}

.order-flow-item.gray {
  background: #f3f3f3;
  padding-bottom: 0;
}

.order-flow-item .swell-block-columns__inner {
  align-items: center;
  width: 100%;
}

.order-flow-item .step {
  background: #000;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

.order-flow-item-icon .wp-block-image img {
  max-width: 100px;
}

.order-flow-item-icon.swell-block-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-flow-item-title {
  border-top: 1px solid #ddd;
}

.faq_q {
  background-color: #1a1a1a;
  color: #fff;
}

.faq_a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0s;
  padding: 0 !important;
}

.faq_a.open {
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 1em 1em 1em 3em !important;
  border: solid 1px #1a1a1a;
}

.swell-block-faq .faq_q {
  padding-left: 4em;
}

.swell-block-faq .faq_q:before {
  box-shadow: none;
  left: 0px;
  font-size: 32px;
  top: -10px;
  background: #1a1a1a;
  font-weight: bold;
  border-radius: 50%;
}

.swell-block-faq .faq_a:before {
  display: none;
}

.swell-block-faq .swell-block-faq__item + .swell-block-faq__item {
  position: relative;
}

.swell-block-faq__item .faq_q:after {
  content: "\e910";
  font-family: icomoon !important;
  color: #fff;
  font-weight: bold;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4em;
}

.swell-block-faq__item.open .faq_q:after {
  content: "\e912";
}

.swell-block-faq__item .faq_q:after {
  content: "\e91c";
}

.swell-block-faq__item.open .faq_q:after {
  content: "\e919";
}

.order-footer-cta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.order-footer-cta-text-top {
  display: inline-block;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 1.5em; /* 疑似要素の分だけ余白を確保 */
}

/* 左スラッシュ画像 */
.order-footer-cta-text-top::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -50px;
  width: 4em;
  height: 4em;
  background: url("http://ftcn.positive-sky.com/wp-content/uploads/2025/10/back-slash.png") no-repeat center/contain;
}

/* 右バックスラッシュ画像 */
.order-footer-cta-text-top::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: -50px;
  width: 4em;
  height: 4em;
  background: url("http://ftcn.positive-sky.com/wp-content/uploads/2025/10/slash.png") no-repeat center/contain;
}

.order-footer-cta-text-btn img {
  max-width: 296px;
}
@media screen and (max-width: 1800px) {
  .order-fv-copy span{
    font-size: 50px!important; 
  }
}
@media screen and (max-width: 1500px) {
  .order-fv-copy span{
    font-size: 40px!important; 
  }
}
.c-postTitle__date{
  display: none!important;
}
.space-between .swell-block-columns__inner{
  justify-content: space-between!important;
}
.wp-block-image img{
  width:100%;
}