@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*----------------------------------------------------------
フルサイズ設定
---------------------------------------------------------- */
#login_mypage,
#head-wrapper,
#global-navi,
#foot-wrapper,
#main:after {
  display: none;
}
#wrap,
#page-inner {
  padding: 0!important;
}
#body-wrapper {
  border: none!important;
  background: none!important;
}
body.paused *
{
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
/*----------------------------------------------------------
 リセット
---------------------------------------------------------- */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
body {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
  display: block;
}

/*----------------------------------------------------------
デフォルトCSSの強制解除
---------------------------------------------------------- */
#body {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}
#body-inner {
  width: 100%;
  padding: 0;
  margin: 0;
}
.one-col #centercol {
  width: 100%;
}
#main {
  width: 100%;
  padding: 0;
  margin: 0;
}
#Carea {
  width: 100%;
}
#pitbull {
  line-height: 1;
}

/*----------------------------------------------------------
   運用・管理用変数
---------------------------------------------------------- */
:root {
  --section-title-size: 4rem;
  --section-title-size-s: 3rem;
}

/*----------------------------------------------------------
  固定ヘッダー
---------------------------------------------------------- */
.pitbull-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pitbull-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  position: relative;
}

.pitbull-header__logo {
  flex-shrink: 0;
  margin-right: 70px;
}

.pitbull-header__logo img {
  width: 110px;
  height: auto;
}

.pitbull-nav {
  display: flex;
  align-items: center;
  gap: 56px;
}

.pitbull-nav__item {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff!important;
}

#pitbull .pitbull-nav__link {
  display: inline-flex;
  align-items: center;
  height: 92px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff!important;
  white-space: nowrap;
  text-decoration: none!important;
}

.pitbull-nav__item--has-submenu .pitbull-nav__link::after {
  content: "▼";
  font-size: 10px;
  margin-left: 8px;
  transform: translateY(-1px);
}

#pitbull .pitbull-submenu {
  position: fixed;
  top: 92px;
  left: 0;
  width: 100%;
  color: #fff!important;
  background: rgba(80, 80, 80, 0.82);
  padding: 20px 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pitbull-submenu__list {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 404px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

#pitbull .pitbull-submenu__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff!important;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  text-decoration: none!important;
}

.pitbull-submenu__link:hover {
  opacity: 0.7;
}

#pitbull .pitbull-nav__item--has-submenu:hover .pitbull-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/*----------------------------------------------------------
  HERO
---------------------------------------------------------- */
.pitbull-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 92px;
  overflow: hidden;
  background: #000;
}

.pitbull-hero__inner {
  position: relative;
  min-height: calc(100vh - 92px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pitbull-hero__img {
  width: 562px;
}

.pitbull-hero__logo {
  position: relative;
  z-index: 2;
  margin-top: 180px;
  width: min(520px, 40vw);
}

.pitbull-hero__copy {
  position: relative;
  z-index: 2;
  margin-top: 110px;
  text-align: center;
  font-size: 5rem;
  line-height: 1.18;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
}

/*----------------------------------------------------------
  ABOUT
---------------------------------------------------------- */
.pitbull-about {
  background: #fff;
  color: #000;
  padding: 160px 20px;
}

.pitbull-about__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pitbull-about__block + .pitbull-about__block {
  margin-top: 140px;
}

h2.pitbull-about__title {
  font-size: 3.6rem!important;
  font-weight: 500!important;
  line-height: 4.5rem!important;
  padding: 0!important;
  margin: 0 0 40px 0!important;
  color: #111!important;
  height: inherit!important;
  background: none!important;
}

.pitbull-about__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 20px;
}

.pitbull-about__text span {
  font-size: 80%;
}
.pitbull-about__text img {
  display: inline-block;
  width: 170px;
  margin: 0 2px;
}

.pitbull-about__note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.pitbull-about__image {
  margin-top: 60px;
}

.pitbull-about__image img {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

/*----------------------------------------------------------
  ALERT
---------------------------------------------------------- */
.pitbull-alert {
  position: relative;
  width: 100%;
  min-height: 740px;
  background: url("../img/pitbull_alert.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pitbull-alert__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 0;
}

h2.pitbull-alert__title {
  font-size: var(--section-title-size)!important;
  font-weight: 700!important;
  line-height: 1.5!important;
  color: #fff!important;
  margin: 0!important;
  padding: 0!important;
  height: inherit!important;
  background: none!important;
}

h2.pitbull-alert__title s {
  font-size: var(--section-title-size-s)!important;
  text-decoration: none!important;
}


/*----------------------------------------------------------
  DETECTION
---------------------------------------------------------- */
.pitbull-detection {
  background: #fff;
  padding: 140px 20px;
  text-align: center;
}

.pitbull-detection__inner {
  max-width: 1100px;
  margin: 0 auto;
}

h2.pitbull-detection__title {
  font-size: 2.2rem!important;
  font-weight: 700!important;
  line-height: 3.6rem!important;
  padding: 0!important;
  margin: 0 0 30px 0!important;
  color: #111!important;
  height: inherit!important;
  background: none!important;
}

.pitbull-detection__line {
  width: 850px;
  height: 2px;
  background: #2c3a63;
  margin: 0 auto 60px;
}

.pitbull-detection__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pitbull-card {
  width: 257px;
}

.pitbull-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.pitbull-card__video {
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
}

.pitbull-card__label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.pitbull-card__text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 16px 0 0 0!important;
}


/*----------------------------------------------------------
  LOCATION
---------------------------------------------------------- */
.pitbull-location {
  position: relative;
  width: 100%;
  min-height: 720px;
  background: url("../img/location-bg.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.pitbull-location::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.pitbull-location__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

h2.pitbull-location__title {
  color: #fff!important;
  font-size: var(--section-title-size)!important;
  font-weight: 700!important;
  line-height: 1.35!important;
  letter-spacing: 0.02em!important;
  height: inherit!important;
  padding: 0!important;
  margin: 0!important;
}
h2.pitbull-location__title s {
  font-size: var(--section-title-size-s)!important;
  text-decoration: none!important;
}

.pitbull-location__note {
  margin: 48px auto 0 auto!important;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
  max-width: 700px;
}


/*----------------------------------------------------------
  NETWORK
---------------------------------------------------------- */
.pitbull-network {
  background: #fff;
  padding: 140px 20px 160px;
  text-align: center;
}

.pitbull-network__inner {
  max-width: 1100px;
  margin: 0 auto;
}

#pitbull h2.pitbull-network__title {
  color: #000!important;
  font-size: 2.4rem!important;
  font-weight: 500!important;
  line-height: 1.8!important;
  margin: 0!important;
  padding: 0!important;
  background: none!important;
  height: inherit!important;
}

.pitbull-network__line {
  width: 850px;
  max-width: 100%;
  height: 2px;
  background: #2c3a63;
  margin: 34px auto 58px;
}

.pitbull-network__items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.pitbull-network__item {
  width: 180px;
}

.pitbull-network__icon {
  width: 95px;
  margin: 0 auto 18px;
}

.pitbull-network__icon img {
  height: 90px;
}

.pitbull-network__label {
  margin: 0;
  color: #000;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}


/*----------------------------------------------------------
  HISTORY
---------------------------------------------------------- */
.pitbull-history {
  position: relative;
  background: #f5f5f7;
}

.pitbull-history__visual {
  position: relative;
  height: 740px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.pitbull-history__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pitbull-history__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

h2.pitbull-history__title {
  position: relative;
  z-index: 2;
  color: #fff!important;
  font-size: var(--section-title-size)!important;
  line-height: 1.4!important;
  text-align: center!important;
  margin: 80px 0 0 0!important;
  padding: 0!important;
  height: inherit!important;
  background: none!important;
}
.pitbull-history__title s {
  font-size: var(--section-title-size-s)!important;
  text-decoration: none!important;
}

.pitbull-history__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px 120px;
  margin-top: -380px;
}


.pitbull-history__image {
  position: relative;
  z-index: 4;
  width: 460px;
  margin: 0 auto 40px;
}

.pitbull-history__lead {
  font-size: 2.3rem;
  line-height: 4rem;
  font-weight: 500;
  margin: 0!important;
}

.pitbull-history__line {
  width: 710px;
  height: 2px;
  background: #a32a2a;
  margin: 20px auto;
}

.pitbull-history__note {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 590px;
  margin: 0 auto 30px!important;
  text-align: left;
}

.pitbull-history__updates {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pitbull-history__update-box {
  width: 100%;
  max-width: 460px;
  min-height: 120px;
  border: 2px solid #b53022;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
}

.pitbull-history__update-text {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.pitbull-history__update-text::before {
  content: "";
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: url("../img/icon_check_red.svg") no-repeat center / contain;
}

.pitbull-history__notify {
  margin-top: 36px;
  text-align: center;
}

.pitbull-history__notify-icon {
  display: block;
  width: 120px;
  max-width: 100%;
  margin: 0 auto 18px;
}

.pitbull-history__notify-text {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
}



/* =========================================================
   PLAN
========================================================= */
.pitbull-plan {
  background: #fff;
  padding: 120px 20px 160px;
}

.pitbull-plan__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pitbull-plan__battery {
  margin-bottom: 140px;
}

h2.pitbull-plan__title {
  font-size: var(--section-title-size)!important;
  font-weight: 700!important;
  line-height: 1.35!important;
  margin: 0 0 42px!important;
  color: #000!important;
  padding: 0!important;
  height: inherit!important;
}

.pitbull-plan__battery-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pitbull-plan__battery-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #26348b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 14px;
  border-radius: 6px;
}

.pitbull-plan__battery-tags img {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
}

.pitbull-plan__battery-heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.pitbull-plan__battery-circle {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

.pitbull-plan__battery-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pitbull-plan__battery-ring-bg,
.pitbull-plan__battery-ring-fill {
  fill: none;
  stroke-width: 18;
}

.pitbull-plan__battery-ring-bg {
  stroke: rgba(0, 0, 0, 0.04);
}

.pitbull-plan__battery-ring-fill {
  stroke: url(#pitbullBatteryGradient);
  stroke-linecap: round;
  stroke-dasharray: 703.72;
  stroke-dashoffset: 703.72;
  transition: stroke-dashoffset 3.2s cubic-bezier(.22, 1, .36, 1);
}

.pitbull-plan__battery-circle.is-visible .pitbull-plan__battery-ring-fill {
  stroke-dashoffset: 0;
}

.pitbull-plan__battery-circle span {
  position: relative;
  z-index: 2;
}

.pitbull-plan__battery-circle-top,
.pitbull-plan__battery-circle-num,
.pitbull-plan__battery-circle-bottom {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
}

.pitbull-plan__battery-circle-top {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: -6px;
}

.pitbull-plan__battery-circle-num {
  font-size: 10rem;
  line-height: 0.9;
  font-weight: 900;
  color: #16d25f;
}

.pitbull-plan__battery-circle-bottom {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 10px;
}

.pitbull-plan__battery-note {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 34px 0!important;
}

.pitbull-plan__battery-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.pitbull-plan__check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin: 0;
}

.pitbull-plan__check::before {
  content: "";
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: url("../img/icon_check_green.svg") no-repeat center / contain;
}

.pitbull-plan__subnote {
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}

.pitbull-plan__family {
  margin-bottom: 40px;
}

.pitbull-plan__family-image {
  max-width: 478px;
  margin: 0 auto 30px;
}

.pitbull-plan__family-text {
  font-size: 2.4rem;
  line-height: 1.9;
  font-weight: 500;
  margin: 0;
}

.pitbull-plan__family-note {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 42px auto 0!important;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.pitbull-plan__family-note::before {
  content: "";
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: url("../img/icon_check_navy.svg") no-repeat center / contain;
}

.pitbull-plan__pricing-card {
  max-width: 840px;
  margin: 0 auto;
  background: #ececec;
  border-radius: 18px;
  box-shadow: 14px 14px 18px rgba(0, 0, 0, 0.22);
  padding: 36px 28px 34px;
}

h3.pitbull-plan__pricing-title {
  font-size: 3rem!important;
  line-height: 1!important;
  font-weight: 700!important;
  margin: 0 0 20px 0!important;
  padding: 0!important;
  background: none!important;
  color: #000!important;
  border: none!important;
}

.pitbull-plan__pricing-subtitle {
  font-size: 1.7rem;
  line-height: 1!important;
  font-weight: 500;
  margin: 0 0 10px;
}

.pitbull-plan__pricing-note {
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 8px 0 28px!important;
}

.pitbull-plan__pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.pitbull-plan__price-box {
  background: #f5f5f7;
  border-radius: 12px;
  padding: 22px 16px 20px;
}

.pitbull-plan__price-label {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 12px;
}

.pitbull-plan__price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26348b;
  margin: 0 0 8px;
}

.pitbull-plan__price-tax {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.pitbull-plan__price-free {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d51919;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.pitbull-plan__price-free::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url("../img/icon_check_red.svg") no-repeat center / contain;
  flex-shrink: 0;
}


/* =========================================================
   FLOW
========================================================= */
.pitbull-flow {
  background: #f5f5f7;
  padding: 120px 20px;
}

.pitbull-flow__inner {
  max-width: 850px;
  margin: 0 auto;
}

h2.pitbull-flow__title {
  font-size: var(--section-title-size)!important;
  font-weight: 700!important;
  line-height: 1.35!important;
  text-align: center!important;
  margin: 0 0 70px!important;
  color: #000!important;
  padding: 0!important;
  height: inherit!important;
  background: none!important;
}

.pitbull-flow__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.pitbull-flow__card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pitbull-flow__head {
  background: #26348b;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 22px 0;
}

.pitbull-flow__head s {
  font-size: 2rem;
  text-decoration: none;
}

.pitbull-flow__body {
  flex: 1;
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pitbull-flow__text {
  margin: 0!important;
  font-size: 0.8rem;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
}

.pitbull-flow__stores {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 140px;
}

.pitbull-flow__store {
  display: block;
  text-decoration: none;
}

.pitbull-flow__store img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   PRODUCT
========================================================= */
.pitbull-product {
  background: #fff;
  padding: 120px 20px 80px;
}

.pitbull-product__inner {
  max-width: 850px;
  margin: 0 auto;
}

.pitbull-product__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.pitbull-product__logo-wrap {
  flex: 1 1 auto;
}

.pitbull-product__logo {
  display: block;
  width: 430px;
  max-width: 100%;
}

.pitbull-product__image {
  flex: 0 0 385px;
}

.pitbull-product__image img {
  display: block;
  width: 100%;
  height: auto;
}

.pitbull-product__price {
  margin: 1rem 6.5rem 0 0!important;
  color: #000;
  text-align: right;
}

.pitbull-product__price-label {
  font-size: 1rem;
  font-weight: 500;
}

.pitbull-product__price-value {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.pitbull-product__buttons {
  margin-top: 34px;
}

.pitbull-product__buttons-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.pitbull-product__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 10px 75px 10px 10px;
  border-radius: 17px;
  text-decoration: none;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pitbull-product__btn:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.pitbull-product__btn-text {
  display: block;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.pitbull-product__btn-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pitbull-product__btn-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

/* 公式ボタン */
.pitbull-product__btn--official {
  width: 100%;
  background: #ff0000;
  color: #fff!important;
  box-shadow: 5px 5px 0 #d90e06;
  text-decoration: none!important;
}

.pitbull-product__btn--official:hover {
  box-shadow: none;
}

.pitbull-product__btn--official .pitbull-product__btn-text {
  font-size: 1.8rem;
}

/* Amazon */
.pitbull-product__btn--amazon {
  background: #ffcd00;
  color: #000!important;
  box-shadow: 5px 5px 0 #f3b400;
  text-decoration: none!important;
}

.pitbull-product__btn--amazon:hover {
  box-shadow: none;
}

/* 楽天 */
.pitbull-product__btn--rakuten {
  background: #c1272d;
  color: #fff!important;
  box-shadow: 5px 5px 0 #a81d25;
  text-decoration: none!important;
}

.pitbull-product__btn--rakuten:hover {
  box-shadow: none;
}

/* Yahoo */
.pitbull-product__btn--yahoo {
  background: #ff7300;
  color: #fff!important;
  box-shadow: 5px 5px 0 #f35d12;
  text-decoration: none!important;
}

.pitbull-product__btn--yahoo:hover {
  box-shadow: none;
}



.pitbull-product__movie {
  margin-top: 46px;
}

.pitbull-product__movie video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #000;
}


/* =========================================================
   INFO SLIDER
========================================================= */
.pitbull-info {
  background: #fff;
  padding: 120px 20px 45px;
}

.pitbull-info__inner {
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 18px 18px 24px rgba(0, 0, 0, 0.22);
  background: #f5f5f7;
  border-radius: 26px;
  overflow: hidden;
}

.pitbull-info__viewport {
  overflow: hidden;
  width: 100%;
}

.pitbull-info__track {
  display: flex;
  width: 200%;
  transition: transform 0.45s ease;
}

.pitbull-info__slide {
  flex: 0 0 50%;
  width: 50%;
}

.pitbull-info__card {
  padding: 56px 50px 46px;
  min-height: 760px;
}

h2.pitbull-info__title {
  margin: 0 0 60px!important;
  text-align: center!important;
  font-size: var(--section-title-size)!important;
  line-height: 1.35!important;
  font-weight: 700!important;
  color: #000!important;
  padding: 0!important;
  height: inherit!important;
  background: none!important;
}

.pitbull-info__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 0 0 40px 0;
}

.pitbull-info__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
  padding: 0;
  border: 0;
}

.pitbull-info__dot.is-active {
  background: #bdbdbd;
}

/* =========================================================
   SPEC
========================================================= */
.pitbull-spec__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 70px;
  max-width: 760px;
  margin: 0 auto;
}

.pitbull-spec__item {
  text-align: center;
}

h3.pitbull-spec__heading {
  margin: 0 0 18px!important;
  font-size: 1.5rem!important;
  line-height: 1.5!important;
  font-weight: 500!important;
  color: #000!important;
  padding: 0!important;
  border: none!important;
  background: none!important;
}

.pitbull-spec__icon {
  width: 75px;
  margin: 0 auto 18px;
}

.pitbull-spec__icon img {
  display: block;
  width: 100%;
  height: 75px;
}

.pitbull-spec__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
  color: #000;
}

/* =========================================================
   FAQ
========================================================= */
.pitbull-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.pitbull-faq__item + .pitbull-faq__item {
  margin-top: 18px;
}

.pitbull-faq__question {
  width: 100%;
  background: transparent;
  padding: 0 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #222;
}

.pitbull-faq__icon {
  position: relative;
  width: 34px;
  height: 25px;
  flex-shrink: 0;
}

.pitbull-faq__icon::before,
.pitbull-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #111;
  transform-origin: center;
}

.pitbull-faq__icon::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.pitbull-faq__icon::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.pitbull-faq__item.is-open .pitbull-faq__icon::before {
  transform: translateY(-50%) rotate(-45deg);
}

.pitbull-faq__item.is-open .pitbull-faq__icon::after {
  transform: translateY(-50%) rotate(45deg);
}

.pitbull-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.pitbull-faq__item.is-open .pitbull-faq__answer {
  grid-template-rows: 1fr;
}

.pitbull-faq__answer-inner {
  overflow: hidden;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  color: #000;
}

.pitbull-faq__answer-inner s {
  font-size: 1.3rem;
  text-decoration: none;
}

.pitbull-faq__item.is-open .pitbull-faq__answer-inner {
  padding: 1rem 0 2rem 0;
}

/* =========================================================
   Footer
========================================================= */
.pitbull-footer {
  background: #fff;
  padding: 70px 20px 80px;
}

.pitbull-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pitbull-footer__logo {
  display: block;
  width: 150px;
  max-width: 100%;
  margin: 0 auto 22px;
}

.pitbull-footer__copy {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}


/* =========================================================
   ANIMATION
========================================================= */

/* 1. FV ロゴ・コピー フェードイン */
.pitbull-hero__img,
.pitbull-hero__copy {
  opacity: 0;
}

.pitbull-hero__img {
  transform: translateY(24px) scale(1.03);
}

.pitbull-hero__copy {
  transform: translateY(24px);
}

body.is-loaded .pitbull-hero__img {
  animation: pitbullHeroImageIn 1.2s ease forwards;
}

body.is-loaded .pitbull-hero__copy {
  animation: pitbullHeroCopyIn 1s ease 0.35s forwards;
}

@keyframes pitbullHeroImageIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(1.08);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1.03);
  }
}

@keyframes pitbullHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. ヒーロー画像 じわっとズーム */
body.is-loaded .pitbull-hero__img {
  animation:
    pitbullHeroImageIn 1.2s ease forwards,
    pitbullHeroImageZoom 8s ease-out 1.2s forwards;
}

@keyframes pitbullHeroImageZoom {
  from {
    transform: translateY(0) scale(1.03);
  }
  to {
    transform: translateY(0) scale(1.08);
  }
}

/* 3. セクションタイトル フェードアップ */
.pitbull-fadeup {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.pitbull-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .pitbull-hero__img,
  .pitbull-hero__copy,
  .pitbull-fadeup {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* =========================
   CENTER SPREAD ANIMATION
========================= */
.pitbull-detection__cards,
.pitbull-network__items {
  overflow: visible;
}

.pitbull-detection__cards .pitbull-card,
.pitbull-network__items .pitbull-network__item {
  opacity: 0;
  filter: blur(4px);
}

.pitbull-detection__cards .pitbull-card:nth-child(1),
.pitbull-network__items .pitbull-network__item:nth-child(1) {
  transform: translate(70px, 18px) scale(0.92);
}

.pitbull-detection__cards .pitbull-card:nth-child(2),
.pitbull-network__items .pitbull-network__item:nth-child(2) {
  transform: translateY(18px) scale(0.92);
}

.pitbull-detection__cards .pitbull-card:nth-child(3),
.pitbull-network__items .pitbull-network__item:nth-child(3) {
  transform: translate(-70px, 18px) scale(0.92);
}

.pitbull-detection__cards.is-visible .pitbull-card,
.pitbull-network__items.is-visible .pitbull-network__item {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(.22, 1, .36, 1),
    filter 0.8s ease;
}

.pitbull-detection__cards.is-visible .pitbull-card:nth-child(1),
.pitbull-network__items.is-visible .pitbull-network__item:nth-child(1) {
  transition-delay: 0s;
}

.pitbull-detection__cards.is-visible .pitbull-card:nth-child(2),
.pitbull-network__items.is-visible .pitbull-network__item:nth-child(2) {
  transition-delay: 0.08s;
}

.pitbull-detection__cards.is-visible .pitbull-card:nth-child(3),
.pitbull-network__items.is-visible .pitbull-network__item:nth-child(3) {
  transition-delay: 0.16s;
}


/* =========================
   FLOW STEP SPREAD
========================= */
.pitbull-flow__cards .pitbull-flow__card {
  opacity: 0;
  filter: blur(4px);
  transform: translateX(-120px) scale(0.94);
  will-change: opacity, transform, filter;
}

.pitbull-flow__cards.is-visible .pitbull-flow__card {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) scale(1);
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(.22, 1, .36, 1),
    filter 0.7s ease;
}

/* STEP1→2→3→4 の順に遅延 */
.pitbull-flow__cards.is-visible .pitbull-flow__card:nth-child(1) {
  transition-delay: 0s;
}

.pitbull-flow__cards.is-visible .pitbull-flow__card:nth-child(2) {
  transition-delay: 0.14s;
}

.pitbull-flow__cards.is-visible .pitbull-flow__card:nth-child(3) {
  transition-delay: 0.28s;
}

.pitbull-flow__cards.is-visible .pitbull-flow__card:nth-child(4) {
  transition-delay: 0.42s;
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .pitbull-flow__cards .pitbull-flow__card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}