@charset "UTF-8";
:root {
  --color-base: #D4E5F2;
  --color-base-light: #F0F7FB;
  --color-yellow: #FFE100;
  --color-green: #00A44C;
  --color-blue: #0068B7;
  --color-red: #E60012;
  /* cubic-bezier */
  --ease-in-quart: cubic-bezier(.895, .03, .685, .22); /* easeInQuart */
  --ease-out-quart: cubic-bezier(.165, .84, .44, 1); /* easeOutQuart */
  --ease-in-out-quart: cubic-bezier(.77, 0, .175, 1); /* easeInOutQuart */
  --ease-in-quint: cubic-bezier(.755, .05, .855, .06); /* easeInQuint */
  --ease-out-quint: cubic-bezier(.23, 1, .32, 1); /* easeOutQuint */
  --ease-in-out-quint: cubic-bezier(.86, 0, .07, 1); /* easeInOutQuint */
}

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans CJK JP");
}
#contents-area,
.lyt-col-1 #contents-body {
  width: 100%;
  min-width: 990px;
}

#nav-top-area {
  z-index: 100;
}

/* modal */
:root {
  --mmScrlOffset:0px;
}

.mmWrap {
  --mmPad:3vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10010;
  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;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  background: rgba(17, 17, 17, 0.7333333333);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  outline: none;
}

.mmWrap.-ready {
  opacity: 1;
}

.mmInner {
  position: relative;
  width: 100%;
  max-height: 85vh;
  padding: var(--mmPad);
  overflow: auto;
}

.mmScreen {
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 17px);
  height: 100%;
}

.mmCnt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  outline: none;
}

.mmCnt > img:only-child {
  max-width: 100%;
  max-height: calc(100vh - 8vw);
}

.mmWrap[data-mm-type=iframe] iframe {
  width: 100vw;
  max-width: 100%;
  height: calc(100vh - var(--mmPad) * 2);
}

.mmWrap[data-mm-type=YouTube] .mmCnt {
  width: 100%;
  background: unset;
}

.mmWrap[data-mm-type=YouTube] iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.mmCaption {
  position: relative;
  color: #fff;
}

.mmCaption:not(:empty) {
  margin-top: 1rem;
  text-align: center;
}

.mmClose, .mmPrev, .mmNext {
  all: unset;
  position: fixed;
  overflow: hidden;
  border-radius: 50%;
  white-space: nowrap;
  text-indent: 100%;
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.mmClose {
  right: 0;
  top: 0;
  height: 80px;
  width: 80px;
}

.mmClose:before, .mmClose:after {
  content: "";
  display: block;
  width: 70%;
  height: 5%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  translate: -50% -50%;
}

.mmClose:before {
  rotate: 45deg;
}

.mmClose:after {
  rotate: -45deg;
}

.mmPrev, .mmNext {
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(136, 136, 136, 0.7333333333);
}

.mmPrev:before, .mmNext:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  aspect-ratio: 1/1;
  border: #fff solid;
  border-width: 3px 0 0 3px;
  translate: -50% -50%;
}

.mmPrev {
  left: 1.5vw;
}

.mmPrev:before {
  rotate: -45deg;
  margin-left: 2px;
}

.mmNext {
  right: calc(1.5vw + var(--mmScrlOffset));
}

.mmNext:before {
  rotate: 135deg;
  margin-left: -2px;
}

/* contents */
#google-pixel-softbank {
  color: #000;
  background: var(--color-base);
  min-width: 950px;
  font-family: "Helvetica Neue", Arial, Roboto, "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 14px;
  line-height: 1.8;
  overflow: hidden;
  letter-spacing: 0.05em;
}
#google-pixel-softbank * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#google-pixel-softbank p {
  margin: 0;
}
#google-pixel-softbank ul,
#google-pixel-softbank ol,
#google-pixel-softbank dl,
#google-pixel-softbank dd {
  margin: 0;
  padding: 0;
}
#google-pixel-softbank img,
#google-pixel-softbank svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: top;
}
#google-pixel-softbank sup {
  font-size: 0.6em;
  font-weight: 400;
}
#google-pixel-softbank a {
  outline: none;
}
#google-pixel-softbank a:not([class]) {
  text-decoration: underline;
  color: inherit;
}
@media (hover: hover) {
  #google-pixel-softbank a:not([class]):not([class]):hover {
    color: var(--color-blue);
    text-decoration: none;
  }
}
#google-pixel-softbank .pc {
  display: none;
}
#google-pixel-softbank .newwindowicon {
  display: none;
}
#google-pixel-softbank .c-inner {
  position: relative;
}
#google-pixel-softbank .c-sec-title span {
  display: block;
  height: clamp(111px, 10.27vw, 148px);
}
#google-pixel-softbank .c-sec-title__text01 {
  text-align: left;
  margin-bottom: clamp(-10px, -0.8vw, -8px);
}
#google-pixel-softbank .c-sec-title__text02 {
  text-align: right;
}
#google-pixel-softbank .c-sec-title img {
  width: auto;
  height: 100%;
  opacity: 0;
}
#google-pixel-softbank .c-sec-title.is-active span.c-sec-title__text01 img {
  -webkit-animation: slideLeft 0.6s forwards var(--ease-out-quint);
          animation: slideLeft 0.6s forwards var(--ease-out-quint);
}
#google-pixel-softbank .c-sec-title.is-active span.c-sec-title__text02 img {
  -webkit-animation: slideRight 0.6s forwards var(--ease-out-quint);
          animation: slideRight 0.6s forwards var(--ease-out-quint);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px) scale(0.9);
            transform: translateX(30px) scale(0.9);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px) scale(0.9);
            transform: translateX(30px) scale(0.9);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px) scale(0.9);
            transform: translateX(-30px) scale(0.9);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px) scale(0.9);
            transform: translateX(-30px) scale(0.9);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
#google-pixel-softbank .c-sub-title {
  width: 850px;
  margin: 85px auto 33px;
  text-align: center;
}
#google-pixel-softbank .c-sub-title img {
  width: 582px;
}
#google-pixel-softbank .c-note, #google-pixel-softbank .c-function__note, #google-pixel-softbank .c-note--asterisk, #google-pixel-softbank .c-note--disc {
  font-size: 11px;
  line-height: 1.5;
  color: #666;
}
#google-pixel-softbank .c-note--disc {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1em;
}
#google-pixel-softbank .c-note--asterisk {
  text-indent: -2em;
  margin-left: 2em;
}
#google-pixel-softbank .c-radio-select,
#google-pixel-softbank .p-simulator__tab {
  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;
  width: 100%;
  height: 85px;
  padding: 7px;
  background: var(--color-base-light);
  border-radius: 42.5px;
  overflow: hidden;
}
#google-pixel-softbank .c-radio-select__item,
#google-pixel-softbank .p-simulator__tab__item {
  width: 50%;
}
#google-pixel-softbank .c-radio-select__item input,
#google-pixel-softbank .p-simulator__tab__item input {
  visibility: hidden;
  z-index: -1;
  position: absolute;
}
#google-pixel-softbank .c-radio-select__item label,
#google-pixel-softbank .c-radio-select__item .c-radio-select__label,
#google-pixel-softbank .p-simulator__tab__item label,
#google-pixel-softbank .p-simulator__tab__item .c-radio-select__label {
  display: block;
  width: 100%;
  height: 71px;
  padding: 0;
  color: var(--color-blue);
  background: var(--color-base-light);
  border-color: transparent;
  border-radius: 35.5px;
  font-size: 27px;
  font-weight: 700;
  line-height: 71px;
  text-align: center;
  cursor: pointer;
}
@media (hover: hover) {
  #google-pixel-softbank .c-radio-select__item label,
  #google-pixel-softbank .c-radio-select__item .c-radio-select__label,
  #google-pixel-softbank .p-simulator__tab__item label,
  #google-pixel-softbank .p-simulator__tab__item .c-radio-select__label {
    -webkit-transition: 0.2s -webkit-filter var(--ease-out-quart);
    transition: 0.2s -webkit-filter var(--ease-out-quart);
    transition: 0.2s filter var(--ease-out-quart);
    transition: 0.2s filter var(--ease-out-quart), 0.2s -webkit-filter var(--ease-out-quart);
  }
  #google-pixel-softbank .c-radio-select__item label:hover,
  #google-pixel-softbank .c-radio-select__item .c-radio-select__label:hover,
  #google-pixel-softbank .p-simulator__tab__item label:hover,
  #google-pixel-softbank .p-simulator__tab__item .c-radio-select__label:hover {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
  }
}
#google-pixel-softbank .c-radio-select__item input:checked + label,
#google-pixel-softbank .c-radio-select__item .c-radio-select__label.is-active,
#google-pixel-softbank .p-simulator__tab__item input:checked + label,
#google-pixel-softbank .p-simulator__tab__item .c-radio-select__label.is-active {
  color: #fff;
  background: var(--color-blue);
  border: 1px solid #fff;
}
#google-pixel-softbank .c-movie, #google-pixel-softbank .c-movie--clipped {
  max-width: 720px;
}
#google-pixel-softbank .c-movie a, #google-pixel-softbank .c-movie--clipped a {
  display: block;
  position: relative;
}
#google-pixel-softbank .c-movie__thumb {
  position: relative;
}
#google-pixel-softbank .c-movie__thumb figcaption {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);
  padding: 2px 6px 2px 24px;
  color: var(--color-blue);
  font-size: 12px;
  line-height: 1;
  z-index: 1;
  letter-spacing: 0.05em;
}
#google-pixel-softbank .c-movie__thumb figcaption::before {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  bottom: 3px;
  width: 11px;
  height: 9px;
  background: var(--color-blue);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
#google-pixel-softbank .c-movie__play {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  position: absolute;
  right: 40px;
  bottom: -40px;
  width: 170px;
  z-index: 1;
}
#google-pixel-softbank .c-movie__play img {
  width: 90px;
}
#google-pixel-softbank .c-movie__play::after {
  content: "";
  display: block;
  position: relative;
  width: 68px;
  top: -10px;
  aspect-ratio: 1/1;
  background: url("/mobile/set/data/special/google-pixel-softbank/img/shared/icon_play.svg") no-repeat center/cover;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
}
#google-pixel-softbank .c-movie--clipped {
  margin-bottom: 40px;
}
#google-pixel-softbank .c-movie--clipped .c-movie__thumb img {
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
          clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}
#google-pixel-softbank .c-movie--clipped .c-movie__thumb figcaption {
  bottom: 100%;
  -webkit-transform: rotate(1.65deg);
          transform: rotate(1.65deg);
}
#google-pixel-softbank .c-movie--clipped .c-movie__play {
  -webkit-transform: rotate(-1.5deg);
          transform: rotate(-1.5deg);
}
#google-pixel-softbank .c-movie--clipped + .c-movie--clipped {
  margin-top: clamp(39px, 3.9vw, 60px);
}
@media (hover: hover) {
  #google-pixel-softbank .c-movie a,
  #google-pixel-softbank .c-movie--clipped a {
    -webkit-transition: 0.2s -webkit-filter var(--ease-out-quart);
    transition: 0.2s -webkit-filter var(--ease-out-quart);
    transition: 0.2s filter var(--ease-out-quart);
    transition: 0.2s filter var(--ease-out-quart), 0.2s -webkit-filter var(--ease-out-quart);
  }
  #google-pixel-softbank .c-movie a .c-movie__play::after,
  #google-pixel-softbank .c-movie--clipped a .c-movie__play::after {
    -webkit-transition: 0.5s -webkit-transform var(--ease-out-quart);
    transition: 0.5s -webkit-transform var(--ease-out-quart);
    transition: 0.5s transform var(--ease-out-quart);
    transition: 0.5s transform var(--ease-out-quart), 0.5s -webkit-transform var(--ease-out-quart);
  }
  #google-pixel-softbank .c-movie a:hover,
  #google-pixel-softbank .c-movie--clipped a:hover {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
  }
  #google-pixel-softbank .c-movie a:hover .c-movie__play::after,
  #google-pixel-softbank .c-movie--clipped a:hover .c-movie__play::after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
#google-pixel-softbank .c-functions {
  width: 990px;
  margin: 0 auto;
  padding: 0 35px;
}
#google-pixel-softbank .c-functions .splide__arrow {
  position: absolute;
  top: calc(50% - 40px);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
  z-index: 1;
}
#google-pixel-softbank .c-functions .splide__arrow--prev {
  left: -10px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
#google-pixel-softbank .c-functions .splide__arrow--next {
  right: -10px;
}
#google-pixel-softbank .c-functions .splide__arrow svg {
  width: 22px;
  height: 22px;
  fill: var(--color-blue);
}
@media (hover: hover) {
  #google-pixel-softbank .c-functions .splide__arrow {
    -webkit-transition: -webkit-filter 0.2s var(--ease-out-quart), -webkit-transform 0.5s var(--ease-out-quart);
    transition: -webkit-filter 0.2s var(--ease-out-quart), -webkit-transform 0.5s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), transform 0.5s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), transform 0.5s var(--ease-out-quart), -webkit-filter 0.2s var(--ease-out-quart), -webkit-transform 0.5s var(--ease-out-quart);
  }
  #google-pixel-softbank .c-functions .splide__arrow--prev:hover {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
    -webkit-transform: scale(-1.1, 1.1);
            transform: scale(-1.1, 1.1);
  }
  #google-pixel-softbank .c-functions .splide__arrow--next:hover {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
#google-pixel-softbank .c-functions .splide__pagination {
  margin-top: 10px;
  gap: 20px;
}
#google-pixel-softbank .c-functions .splide__pagination__page {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--color-base);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
#google-pixel-softbank .c-functions .splide__pagination__page.is-active {
  background: var(--color-blue);
}
#google-pixel-softbank .c-function {
  min-height: 350px;
  padding: 35px 50px;
}
#google-pixel-softbank .c-function__inner {
  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-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
  padding-left: 320px;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.8s opacity linear, 0.8s -webkit-transform var(--ease-out-quart);
  transition: 0.8s opacity linear, 0.8s -webkit-transform var(--ease-out-quart);
  transition: 0.8s opacity linear, 0.8s transform var(--ease-out-quart);
  transition: 0.8s opacity linear, 0.8s transform var(--ease-out-quart), 0.8s -webkit-transform var(--ease-out-quart);
}
#google-pixel-softbank .c-function.is-active .c-function__inner {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#google-pixel-softbank .c-function__number {
  position: absolute;
  left: -30px;
  top: calc(50% - 170px);
  width: 60px;
  z-index: 1;
}
#google-pixel-softbank .c-function__title {
  display: grid;
  place-content: end left;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#google-pixel-softbank .c-function__title br {
  display: none;
}
#google-pixel-softbank .c-function__image {
  position: absolute;
  display: grid;
  place-content: center;
  left: 0;
  top: 0;
  width: 280px;
  height: 100%;
  margin: 0 auto 28px;
}
#google-pixel-softbank .c-function__image img {
  -webkit-box-shadow: -3px -3px 0 0 var(--color-yellow), 3px 3px 0 0 var(--color-green);
          box-shadow: -3px -3px 0 0 var(--color-yellow), 3px 3px 0 0 var(--color-green);
}
#google-pixel-softbank .c-function__desc {
  font-size: 14px;
  line-height: 1.7;
}
#google-pixel-softbank .c-function__note {
  text-indent: -2em;
  margin-left: 2em;
  margin-top: 20px;
}
#google-pixel-softbank .c-function__note li + li {
  margin-top: 5px;
}
#google-pixel-softbank .c-fade-up,
#google-pixel-softbank .c-fade-in,
#google-pixel-softbank .c-slide-right {
  opacity: 0;
}
#google-pixel-softbank .c-fade-in.is-active {
  -webkit-animation: fadeIn 1s forwards linear;
          animation: fadeIn 1s forwards linear;
}
#google-pixel-softbank .c-fade-up.is-active {
  -webkit-animation: fadeUp 1.5s forwards var(--ease-out-quint);
          animation: fadeUp 1.5s forwards var(--ease-out-quint);
}
#google-pixel-softbank .c-slide-right.is-active {
  -webkit-animation: slideRight 0.5s forwards var(--ease-out-quint);
          animation: slideRight 0.5s forwards var(--ease-out-quint);
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#google-pixel-softbank .p-mv {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  #google-pixel-softbank .p-mv {
    aspect-ratio: 1200/545;
  }
}
@media screen and (min-width: 1201px) {
  #google-pixel-softbank .p-mv {
    height: 545px;
  }
}
@media screen and (min-width: 1674px) {
  #google-pixel-softbank .p-mv {
    height: auto;
    aspect-ratio: 1674/545;
  }
}
#google-pixel-softbank .p-mv__bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-inline: auto;
  overflow: hidden;
}
#google-pixel-softbank .p-mv__bg > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#google-pixel-softbank .p-mv__title {
  position: absolute;
  left: 0;
  right: 0;
  top: 6.6055045872%;
  text-align: center;
  z-index: 1;
  opacity: 0;
}
#google-pixel-softbank .p-mv__title img {
  width: 79.1666666667%;
  max-width: 950px;
  aspect-ratio: 950/114;
  vertical-align: top;
}
@media screen and (min-width: 1674px) {
  #google-pixel-softbank .p-mv__title img {
    width: 56.75%;
    max-width: none;
  }
}
#google-pixel-softbank .p-mv__banner {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 2.752293577%;
  text-align: center;
  opacity: 0;
}
#google-pixel-softbank .p-mv__banner img {
  width: 54%;
  max-width: 648px;
}
@media screen and (min-width: 1674px) {
  #google-pixel-softbank .p-mv__banner img {
    width: 38.7%;
    max-width: 775px;
  }
}
#google-pixel-softbank .p-mv.is-active .p-mv__title {
  -webkit-animation: scaleUp 0.8s forwards var(--ease-out-quint);
          animation: scaleUp 0.8s forwards var(--ease-out-quint);
}
#google-pixel-softbank .p-mv.is-active .p-mv__banner {
  -webkit-animation: fadeUp 1s forwards var(--ease-out-quint);
          animation: fadeUp 1s forwards var(--ease-out-quint);
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#google-pixel-softbank .p-anchor {
  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;
  width: 800px;
  height: 65px;
  margin: 30px auto;
  color: var(--color-red);
  background: #fff;
  border-radius: 32px;
  -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
}
#google-pixel-softbank .p-anchor__item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}
#google-pixel-softbank .p-anchor__item:nth-child(n+2):after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: #D4E5F2;
}
#google-pixel-softbank .p-anchor__item a {
  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-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-bottom: 2px;
  position: relative;
  color: inherit;
}
#google-pixel-softbank .p-anchor__item a::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 3px);
  bottom: 10px;
  width: 8px;
  height: 6px;
  background: var(--color-blue);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media (hover: hover) {
  #google-pixel-softbank .p-anchor__item a {
    -webkit-transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), -webkit-filter 0.2s var(--ease-out-quart);
  }
  #google-pixel-softbank .p-anchor__item a::after {
    -webkit-transition: -webkit-transform 0.5s var(--ease-out-quint);
    transition: -webkit-transform 0.5s var(--ease-out-quint);
    transition: transform 0.5s var(--ease-out-quint);
    transition: transform 0.5s var(--ease-out-quint), -webkit-transform 0.5s var(--ease-out-quint);
  }
  #google-pixel-softbank .p-anchor__item a:hover {
    -webkit-filter: brightness(1.5);
            filter: brightness(1.5);
  }
  #google-pixel-softbank .p-anchor__item a:hover::after {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
#google-pixel-softbank .p-anchor__item img {
  width: auto;
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
}
#google-pixel-softbank .p-feature {
  padding-block: 40px 72px;
}
#google-pixel-softbank .p-feature__title {
  position: relative;
  width: clamp(481px, 45.833333333vw, 660px);
  margin-inline: auto;
  pointer-events: none;
  z-index: 1;
}
#google-pixel-softbank .p-feature__movies {
  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;
}
#google-pixel-softbank .p-lineup {
  position: relative;
  padding-block: 140px;
  background: var(--color-base-light);
}
#google-pixel-softbank .p-lineup::before, #google-pixel-softbank .p-lineup::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: max(67px, 5.3472222222vw);
  background: url("/mobile/set/data/special/google-pixel-softbank/img/shared/image_lineup_devider.svg") no-repeat center top/100%;
  pointer-events: none;
}
#google-pixel-softbank .p-lineup::before {
  top: min(-66px, -5.3vw);
}
#google-pixel-softbank .p-lineup::after {
  bottom: min(-66px, -5.3vw);
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
#google-pixel-softbank .p-lineup__title {
  width: clamp(504px, 46.180555555vw, 665px);
  margin: 0 auto 80px;
}
#google-pixel-softbank .p-lineup__products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  max-width: 1440px;
  margin-inline: auto;
}
#google-pixel-softbank .p-product {
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(15.625%, 225px);
}
#google-pixel-softbank .p-product:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
#google-pixel-softbank .p-product:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#google-pixel-softbank .p-product:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#google-pixel-softbank .p-product__image {
  width: 100%;
}
#google-pixel-softbank .p-product__text-wrap {
  width: 100%;
  margin-top: 13.5135135135%;
  text-align: center;
}
#google-pixel-softbank .p-product__copy {
  width: 100%;
  margin-bottom: 14px;
  padding-top: 0.1em;
  color: #fff;
  background: url("/mobile/set/data/special/google-pixel-softbank/img/shared/image_lineup_copy-bg.svg") no-repeat center/contain;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  text-align: center;
  line-height: 2.5em;
  aspect-ratio: 222/53;
  letter-spacing: 0;
}
#google-pixel-softbank .p-product__name {
  height: clamp(58px, 6vw, 82px);
}
#google-pixel-softbank .p-sales-info {
  padding-block: 160px;
  background: #128ECE;
}
#google-pixel-softbank .p-sales-info .c-inner {
  width: 850px;
  margin: 0 auto;
}
#google-pixel-softbank .p-sales-info__title {
  width: clamp(457px, 41.875vw, 603px);
  margin: 0 auto 60px;
}
#google-pixel-softbank .p-sales-info__tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 85px;
  margin-inline: 2px;
  background: var(--color-base-light);
  border: 4px solid #fff;
  border-radius: 42.5px;
  -webkit-box-shadow: 0 7px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 7px 0 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#google-pixel-softbank .p-sales-info__tab {
  position: relative;
  width: 25%;
}
#google-pixel-softbank .p-sales-info__tab + .p-sales-info__tab::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: rgba(0, 104, 183, 0.2);
  z-index: 1;
}
#google-pixel-softbank .p-sales-info__tab button {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  position: relative;
  border: 0;
}
@media (hover: hover) {
  #google-pixel-softbank .p-sales-info__tab button {
    -webkit-transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), -webkit-filter 0.2s var(--ease-out-quart);
  }
  #google-pixel-softbank .p-sales-info__tab button:hover {
    -webkit-filter: brightness(1.5);
            filter: brightness(1.5);
  }
}
#google-pixel-softbank .p-sales-info__tab button.is-active {
  background: var(--color-blue);
}
#google-pixel-softbank .p-sales-info__tab button.is-active img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
#google-pixel-softbank .p-sales-info__tab button img {
  height: 17px;
}
#google-pixel-softbank .p-sales-info .c-sub-title {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#google-pixel-softbank .p-simulator {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
#google-pixel-softbank .p-simulator__product {
  position: relative;
  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;
  padding: 30px 8px;
  aspect-ratio: 850/428;
  background: var(--color-base-light);
  text-align: center;
}
#google-pixel-softbank .p-simulator__product-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 320px;
}
#google-pixel-softbank .p-simulator__product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#google-pixel-softbank .p-simulator__product-text {
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#google-pixel-softbank .p-simulator__product-name {
  min-width: 400px;
  letter-spacing: 0;
}
#google-pixel-softbank .p-simulator__product-name img {
  height: 91px;
  vertical-align: middle;
}
#google-pixel-softbank .p-simulator__product-name span {
  display: block;
  position: relative;
  top: 3px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
#google-pixel-softbank .p-simulator__product-release {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  padding-inline: 1.35em;
  color: var(--color-blue);
  font-size: 18px;
  line-height: 38px;
  font-weight: 700;
  border: 2px solid var(--color-blue);
  border-radius: 20px;
}
#google-pixel-softbank .p-simulator__product-note {
  margin-top: 10px;
  letter-spacing: 0;
}
#google-pixel-softbank .p-simulator__main {
  padding: 40px 45px;
}
#google-pixel-softbank .p-simulator__select {
  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;
  gap: 40px;
}
#google-pixel-softbank .p-simulator__select + .p-simulator__select {
  margin-top: 10px;
}
#google-pixel-softbank .p-simulator__select__label {
  width: 120px;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}
#google-pixel-softbank .p-simulator__select__main {
  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;
  width: 550px;
}
#google-pixel-softbank .p-simulator__panel {
  display: none;
}
#google-pixel-softbank .p-simulator__panel.is-active {
  display: block;
}
#google-pixel-softbank .p-simulator__tokusapo {
  margin-top: 40px;
  padding: 26px;
  color: var(--color-blue);
  background: var(--color-base-light);
  font-size: 20px;
  text-align: center;
  border-radius: 20px;
}
#google-pixel-softbank .p-simulator__tokusapo__heading {
  display: block;
  margin-bottom: 0.2em;
  font-size: 25px;
  text-align: center;
}
#google-pixel-softbank .p-simulator__tokusapo__heading img {
  margin-right: 0.5em;
  vertical-align: top;
}
#google-pixel-softbank .p-simulator__tokusapo__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 33px;
}
#google-pixel-softbank .p-simulator__marker {
  display: inline-block;
  margin-inline: 0.2em;
  padding: 0 0.4em;
  color: #fff;
  background: #888;
  border-radius: 7px;
  font-weight: bold;
  line-height: 1.5;
}
#google-pixel-softbank .p-simulator__total-price-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 100px;
  padding: 30px 26px 26px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
}
#google-pixel-softbank .p-simulator__total-price-box__selling-price {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
#google-pixel-softbank .p-simulator__total-price-box__selling-price::after {
  content: "";
  display: block;
  position: absolute;
  right: -65px;
  bottom: 0.8em;
  width: 19.9px;
  height: 23px;
  background: #000;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
#google-pixel-softbank .p-simulator__total-price-box__selling-price dt {
  font-size: 23px;
  margin-bottom: 2px;
}
#google-pixel-softbank .p-simulator__total-price-box__selling-price dd {
  font-size: 23px;
  position: relative;
  margin: 0;
  text-align: right;
}
#google-pixel-softbank .p-simulator__total-price-box__selling-price dd::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 4px;
  background: var(--color-red);
}
#google-pixel-softbank .p-simulator__total-price-box__selling-price .p-price-num {
  margin-right: 0.1em;
  font-size: 46px;
  font-weight: 700;
}
#google-pixel-softbank .p-simulator__total-price-box__total-cost {
  font-size: 33px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-red);
  line-height: 1;
}
#google-pixel-softbank .p-simulator__total-price-box__total-cost dt {
  font-size: 23px;
}
#google-pixel-softbank .p-simulator__total-price-box__total-cost dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}
#google-pixel-softbank .p-simulator__total-price-box__total-cost dd .p-price-num {
  margin-inline: 0.1em;
  font-size: 80px;
}
#google-pixel-softbank .p-simulator__breakdown-box {
  background: #FFFCE6;
  border-radius: 20px;
  padding: 35px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  letter-spacing: 0;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution-left {
  display: grid;
  place-content: center;
  width: 50%;
  padding: 20px;
  color: #fff;
  background: var(--color-red);
  text-align: center;
  line-height: 1.35;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__label-left {
  font-size: 18px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__usage-fee {
  font-size: 14px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__total-price {
  font-size: 18px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__total-price .p-price-num {
  font-size: 39px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution-right {
  display: grid;
  place-content: center;
  width: 50%;
  padding: 20px;
  color: #888;
  background: #fff;
  border: 2px solid #888;
  border-left: 0;
  border-radius: 0 20px 20px 0;
  text-align: center;
  line-height: 1.35;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__label-right {
  font-size: 20px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__total-no-payment {
  position: relative;
  font-size: 18px;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__total-no-payment::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 4px;
  background: var(--color-red);
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__total-no-payment .p-price-num {
  margin-inline: 2px;
  font-size: 39px;
  font-weight: 700;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap .p-simulator__price-distribution__total-no-payment-breakdown {
  font-size: 14px;
  line-height: 1.2;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap[data-type="13ヵ月目"] .p-simulator__price-distribution-left {
  width: 42.1%;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap[data-type="13ヵ月目"] .p-simulator__price-distribution-right {
  width: 57.9%;
}
#google-pixel-softbank .p-simulator__price-distribution-wrap[data-type="13ヵ月目"] + .p-simulator__actual-cost-breakdown::before, #google-pixel-softbank .p-simulator__price-distribution-wrap[data-type="13ヵ月目"] + .p-simulator__actual-cost-breakdown::after {
  left: 120px;
}
#google-pixel-softbank .p-simulator__actual-cost-breakdown {
  position: relative;
  margin-top: 10px;
  padding: 15px 15px 0;
  color: var(--color-red);
  background: #fff;
  border: 2px solid var(--color-red);
  border-radius: 20px;
}
#google-pixel-softbank .p-simulator__actual-cost-breakdown::before {
  content: "";
  display: block;
  position: absolute;
  top: -27px;
  left: 150px;
  width: 50px;
  height: 26px;
  background: var(--color-red);
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
#google-pixel-softbank .p-simulator__actual-cost-breakdown::after {
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  left: 150px;
  width: 50px;
  height: 26px;
  background: #fff;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
#google-pixel-softbank .p-simulator__actual-cost-breakdown__tltle {
  padding-block: 2px;
  background: rgba(232, 66, 35, 0.2);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
#google-pixel-softbank .p-simulator__actual-cost-breakdown__main {
  font-size: 18px;
}
#google-pixel-softbank .p-simulator__breakdown-table {
  padding-inline: 7px;
}
#google-pixel-softbank .p-simulator__breakdown-table__device-cost, #google-pixel-softbank .p-simulator__breakdown-table__usage-fee {
  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;
  width: 100%;
  height: 77px;
}
#google-pixel-softbank .p-simulator__breakdown-table__price {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 21px;
  text-align: right;
}
#google-pixel-softbank .p-simulator__breakdown-table__price .p-price-num {
  font-size: 32px;
  font-weight: 700;
  margin-right: 2px;
}
#google-pixel-softbank .p-simulator__breakdown-table__device-cost + .p-simulator__breakdown-table__device-cost {
  border-top: 2px solid var(--color-red);
}
#google-pixel-softbank .p-simulator__breakdown-table__device-cost .p-simulator__breakdown-table__price .p-price-num {
  font-size: 39px;
}
#google-pixel-softbank .p-simulator__breakdown-table__usage-fee {
  border-top: 2px solid var(--color-red);
}
#google-pixel-softbank .p-simulator__note {
  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;
  gap: 10px;
  padding: 15px 5px 5px;
}
#google-pixel-softbank .p-watch {
  padding-block: 160px;
}
#google-pixel-softbank .p-watch__title-wrap {
  min-width: 950px;
  max-width: 1440px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -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;
}
#google-pixel-softbank .p-watch__title {
  position: relative;
  width: min(45%, 648px);
  margin-inline: min(2.5%, 36px);
  margin-bottom: min(6%, 60px);
  pointer-events: none;
  z-index: 1;
}
#google-pixel-softbank .p-watch__title span {
  height: clamp(105px, 10.5vw, 148px);
}
#google-pixel-softbank .p-watch__movie {
  width: 50%;
  margin-bottom: 40px;
}
#google-pixel-softbank .p-watch__price {
  width: 850px;
  margin: 65px auto 0;
}
#google-pixel-softbank .p-watch__price #selectedModelChangeWay_gpw4_1 {
  display: none;
}
#google-pixel-softbank .p-watch .p-simulator__product-name {
  min-width: unset;
}
#google-pixel-softbank .p-watch .p-simulator__product-name img {
  height: 138px;
}
#google-pixel-softbank .p-watch .p-simulator__product-release {
  margin-top: 0;
}
#google-pixel-softbank .p-campaign {
  width: 850px;
  margin-inline: auto;
}
#google-pixel-softbank .p-campaign a {
  border-radius: 20px;
  overflow: hidden;
}
@media (hover: hover) {
  #google-pixel-softbank .p-campaign a {
    display: block;
    -webkit-transition: -webkit-filter 0.2s var(--ease-out-quart), -webkit-transform 0.5s var(--ease-out-quart);
    transition: -webkit-filter 0.2s var(--ease-out-quart), -webkit-transform 0.5s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), transform 0.5s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), transform 0.5s var(--ease-out-quart), -webkit-filter 0.2s var(--ease-out-quart), -webkit-transform 0.5s var(--ease-out-quart);
  }
  #google-pixel-softbank .p-campaign a:hover {
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}
#google-pixel-softbank .p-campaign + .p-campaign {
  margin-top: 60px;
}
#google-pixel-softbank .p-giveaway {
  padding-block: 160px;
  background: #fff;
}
#google-pixel-softbank .p-giveaway .c-inner {
  width: 85%;
  max-width: 1200px;
  margin-inline: auto;
}
#google-pixel-softbank .p-giveaway__title {
  width: clamp(477px, 44.513888888vw, 641px);
  margin-inline: auto;
}
#google-pixel-softbank .p-giveaway__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -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;
}
#google-pixel-softbank .p-giveaway__card-wrap {
  position: relative;
  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;
  width: 53.34%;
  margin-top: 16px;
  aspect-ratio: 1/1;
}
#google-pixel-softbank .p-giveaway__card-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 1/1;
  background: url("/mobile/set/data/special/google-pixel-softbank/img/shared/image_burst.svg") no-repeat center/contain;
}
#google-pixel-softbank .p-giveaway__card {
  margin-left: 11%;
  width: 58%;
  aspect-ratio: 382/552;
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
#google-pixel-softbank .p-giveaway__card.is-active {
  -webkit-animation: cardFadeUp 1s forwards var(--ease-out-quint);
          animation: cardFadeUp 1s forwards var(--ease-out-quint);
}
@-webkit-keyframes cardFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px) rotate(-5deg);
            transform: translateY(60px) rotate(-5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(-5deg);
            transform: translateY(0) rotate(-5deg);
  }
}
@keyframes cardFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60px) rotate(-5deg);
            transform: translateY(60px) rotate(-5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(-5deg);
            transform: translateY(0) rotate(-5deg);
  }
}
#google-pixel-softbank .p-giveaway__card img {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
#google-pixel-softbank .p-giveaway__card__front {
  -webkit-transform: none;
          transform: none;
}
#google-pixel-softbank .p-giveaway__card.is-flipped .p-giveaway__card__front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
#google-pixel-softbank .p-giveaway__card__back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
#google-pixel-softbank .p-giveaway__card.is-flipped .p-giveaway__card__back {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
#google-pixel-softbank .p-giveaway__card-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  font-size: 10px;
  text-align: center;
}
#google-pixel-softbank .p-giveaway__card-desc {
  position: absolute;
  top: 0;
  right: 3%;
  width: 27.4834437086%;
  margin-top: 30%;
}
#google-pixel-softbank .p-giveaway__card-desc.is-active {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#google-pixel-softbank .p-giveaway__text-wrap {
  width: 43.333333%;
}
#google-pixel-softbank .p-giveaway__text {
  margin-top: 20px;
  font-size: clamp(21px, 1.94444444vw, 28px);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
#google-pixel-softbank .p-giveaway__text span {
  position: relative;
  display: inline-block;
  font-weight: 900;
  color: var(--color-red);
}
#google-pixel-softbank .p-giveaway__text span::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-radial-gradient(circle farthest-side, var(--color-red), var(--color-red) 40%, transparent 40%, transparent);
  background: radial-gradient(circle farthest-side, var(--color-red), var(--color-red) 40%, transparent 40%, transparent);
  background-size: 9px;
  content: "";
  display: inline-block;
  height: 9px;
  width: 100%;
}
#google-pixel-softbank .p-giveaway__note {
  margin-top: 20px;
  text-align: center;
}
#google-pixel-softbank .p-special-movie {
  padding-block: 160px 180px;
}
#google-pixel-softbank .p-special-movie__title {
  width: clamp(414px, 38.3333333333vw, 552px);
  margin: 0 auto 60px;
}
#google-pixel-softbank .p-special-movie__movie .c-movie, #google-pixel-softbank .p-special-movie__movie .c-movie--clipped {
  width: 720px;
  margin-inline: auto;
  -webkit-box-shadow: -10px -10px 0 0 #fff, 10px 10px 0 0 #fff;
          box-shadow: -10px -10px 0 0 #fff, 10px 10px 0 0 #fff;
}
#google-pixel-softbank .p-special-movie__movie .c-movie__play {
  bottom: -65px;
}
#google-pixel-softbank .p-sticky-block {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: max(154px, 10.69vw);
  padding: 70px 15px 15px;
  background: url("/mobile/set/data/special/google-pixel-softbank/img/p/image_sticky_bg.svg") no-repeat center bottom/max(1440px, 100%);
  z-index: 100;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  pointer-events: none;
}
@media screen and (min-width: 1440px) {
  #google-pixel-softbank .p-sticky-block {
    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;
    padding: 4.861111111vw 1.736111111vw 1.041666666vw;
  }
}
#google-pixel-softbank .p-sticky-block .p-cv-links {
  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;
  gap: 15px;
  pointer-events: all;
}
#google-pixel-softbank .p-sticky-block .p-cv-link {
  position: relative;
}
#google-pixel-softbank .p-sticky-block .p-button-online,
#google-pixel-softbank .p-sticky-block .p-button-store {
  display: grid;
  place-content: center;
  position: relative;
  width: 340px;
  height: 70px;
  padding: 25px 30px;
  border: 2px solid #fff;
  border-radius: 35px;
  text-align: center;
  cursor: pointer;
}
@media (hover: hover) {
  #google-pixel-softbank .p-sticky-block .p-button-online,
  #google-pixel-softbank .p-sticky-block .p-button-store {
    -webkit-transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), -webkit-filter 0.2s var(--ease-out-quart);
  }
  #google-pixel-softbank .p-sticky-block .p-button-online:hover,
  #google-pixel-softbank .p-sticky-block .p-button-store:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
#google-pixel-softbank .p-sticky-block .p-button-online img,
#google-pixel-softbank .p-sticky-block .p-button-store img {
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
#google-pixel-softbank .p-sticky-block .p-button-online {
  background: var(--color-yellow);
}
#google-pixel-softbank .p-sticky-block .p-button-online::before, #google-pixel-softbank .p-sticky-block .p-button-online::after {
  content: "";
  display: block;
  position: absolute;
  right: 23px;
  top: calc(50% - 1.5px);
  width: 15px;
  height: 3px;
  background: var(--color-blue);
}
#google-pixel-softbank .p-sticky-block .p-button-online::after {
  -webkit-transform: rotate(-90deg) translateX(0);
          transform: rotate(-90deg) translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
#google-pixel-softbank .p-sticky-block .p-cv-link__nest {
  position: absolute;
  left: calc(50% - 129px);
  bottom: calc(100% + 8px);
  width: 258px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid var(--color-blue);
  border-radius: 15px;
  -webkit-box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  pointer-events: none;
}
#google-pixel-softbank .p-sticky-block .p-cv-link__nest li {
  position: relative;
}
#google-pixel-softbank .p-sticky-block .p-cv-link__nest li + li ::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--color-blue);
}
#google-pixel-softbank .p-sticky-block .p-cv-link__nest li a {
  display: grid;
  place-items: center;
  height: 70px;
  padding-inline: 18px;
}
@media (hover: hover) {
  #google-pixel-softbank .p-sticky-block .p-cv-link__nest li a img {
    -webkit-transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: -webkit-filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart);
    transition: filter 0.2s var(--ease-out-quart), -webkit-filter 0.2s var(--ease-out-quart);
  }
  #google-pixel-softbank .p-sticky-block .p-cv-link__nest li a:hover img {
    -webkit-filter: brightness(1.5);
            filter: brightness(1.5);
  }
}
#google-pixel-softbank .p-sticky-block .p-button-online.is-open::after {
  -webkit-transform: rotate(-90deg) translateX(10px);
          transform: rotate(-90deg) translateX(10px);
  opacity: 0;
}
#google-pixel-softbank .p-sticky-block .p-button-online.is-open + .p-cv-link__nest {
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
#google-pixel-softbank .p-sticky-block .p-button-store {
  background: var(--color-green);
}
#google-pixel-softbank .p-sticky-block .p-button-store::after {
  content: "";
  display: block;
  position: absolute;
  right: 27px;
  top: calc(50% - 7px);
  width: 11.3px;
  height: 14px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
#google-pixel-softbank.is-load .p-sticky-block,
#google-pixel-softbank .p-sticky-block.is-show {
  -webkit-animation: fadeUp 0.8s var(--ease-out-quint) forwards;
          animation: fadeUp 0.8s var(--ease-out-quint) forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
#google-pixel-softbank .p-sticky-block.is-hide {
  -webkit-animation: hide 0.8s var(--ease-out-quint) forwards;
          animation: hide 0.8s var(--ease-out-quint) forwards;
}

/* 禁止処理 */
@media print {
  * {
    display: none;
    opacity: 0;
    background: #fff;
  }
  img {
    display: none;
    opacity: 0;
    background: #fff;
  }
}
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}