@charset "UTF-8";


@font-face {
  font-family: "Intel One Jpn Bold";
  src: url("../fonts/IntelClear_WJpn_Bd.woff") format("woff");
}
@font-face {
  font-family: "Intel One Jpn Medium";
  src: url("../fonts/IntelClear_WJpn_Bd.woff") format("woff");
}
@font-face {
  font-family: "Intel One Jpn Regular";
  src: url("../fonts/IntelClear_WJpn_Rg.woff") format("woff");
}
@font-face {
  font-family: "Intel One Jpn Light";
  src: url("../fonts/IntelClear_WJpn_Lt.woff") format("woff");
}
@font-face {
  font-family: "Intel One Text Medium";
  src: url("../fonts/IntelClear_WJpn_Bd.woff") format("woff");
}
@font-face {
  font-family: "Intel One Text Regular";
  src: url("../fonts/IntelClear_WJpn_Rg.woff") format("woff");
}
p.lead,
li.lead {
  font-size: 1.2em;
}

@media screen and (max-width: 1200px) {
  p.lead,
li.lead {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 767px) {
  p.lead,
li.lead {
    font-size: 1em;
    font-size: 5.5vw;
  }
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  line-height: 1.3;
}

sup {
  font-size: 75%;
  top: -0.25em;
}

sup.prominent {
  top: -0.375em;
  font-size: 95%;
}

span.sup {
  font-size: 50%;
  vertical-align: text-top;
  display: inline !important;
}

p.legal {
  color: #b4b6b9;
}

p.legal a {
  color: #00aeef;
  text-decoration: underline;
}

.text-gradient {
  display: inline-block;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background: -webkit-linear-gradient(to right, #55e4fe, #4969f8);
  background-image: linear-gradient(to right, #55e4fe, #4969f8);
}

/*************************************************/
/* Global Site Styles and Classes */
/************************************************/
.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.invisible {
  opacity: 0 !important;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nowrap {
  white-space: nowrap;
}

.bg-with-gutter {
  background-size: calc(100% - 80px) 100%;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 1200px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-padding-top {
  padding-top: 80px;
}

@media screen and (max-width: 1200px) {
  .section-padding-top {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section-padding-top {
    padding-top: 60px;
  }
}
.section-padding-bottom {
  padding-bottom: 80px;
}

@media screen and (max-width: 1200px) {
  .section-padding-bottom {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .section-padding-bottom {
    padding-bottom: 60px;
  }
}
.section-gutter {
  padding-left: 100px;
  padding-right: 100px;
}

@media screen and (max-width: 1200px) {
  .section-gutter {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-gutter {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.section-gutter-left {
  padding-left: 100px;
}

@media screen and (max-width: 1200px) {
  .section-gutter-left {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-gutter-left {
    padding-left: 40px;
  }
}
.section-gutter-right {
  padding-right: 100px;
}

@media screen and (max-width: 1200px) {
  .section-gutter-right {
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-gutter-right {
    padding-right: 40px;
  }
}
.module-content {
  width: 100%;
  margin: 0 auto;
}

.module-content.no-max {
  max-width: none !important;
}

.max-width {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

div.img-overflow {
  position: relative;
}

div.img-overflow::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

div.img-overflow img,
div.img-overflow .img-overflow-inner {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  max-width: none;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

div.img-overflow .img-overflow-inner img {
  height: 100% !important;
  width: 100% !important;
}

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

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

.text-right {
  text-align: right;
}

.display-flex {
  display: flex;
}

.display-flex.direction-column {
  flex-direction: column;
}

.display-flex.justify-center {
  justify-content: center;
}

.display-flex.justify-between {
  justify-content: space-between;
}

.display-flex.justify-around {
  justify-content: space-around;
}

.display-flex.justify-start {
  justify-content: flex-start;
}

.display-flex.justify-end {
  justify-content: flex-end;
}

.display-flex.align-items-center {
  align-items: center;
}

.display-flex.align-items-start {
  align-items: flex-start;
}

.display-flex.align-items-end {
  align-items: flex-end;
}

.display-flex.flex-wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .display-flex.responsive-row {
    flex-direction: row;
  }

  .display-flex.responsive-column {
    flex-direction: column;
  }

  .display-flex.responsive-reverse {
    flex-direction: row-reverse;
  }

  .display-flex.direction-column.responsive-reverse,
.display-flex.responsive-column.responsive-reverse {
    flex-direction: column-reverse;
  }
}
.display-flex > .align-self-start {
  align-self: flex-start;
}

.display-flex > .align-self-center {
  -ms-grid-row-align: center;
      align-self: center;
}

.display-flex > .align-self-end {
  align-self: flex-end;
}

.display-flex > .flex-grow {
  flex: 1 1 !important;
}

@media screen and (min-width: 1200px) {
  .hide-on-desktop,
.desktop-hide {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hide-on-mobile,
.mobile-hide {
    display: none;
  }
}
.desktop-only {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}
.mobile-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }
}
span.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  span.desktop-break {
    display: block;
  }
}
.m-0 {
  margin: 0;
}

.mb-5 {
  margin-bottom: 1rem;
}

/* Global Elements */
@media screen and (max-width: 767px) {
  body {
    background-image: url("../images/continuous_bg_mobile.png");
  }
}
.multi-section-bg {
  background-image: url("../images/panels_2-4_bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}

@media screen and (max-width: 767px) {
  .multi-section-bg {
    background-image: none;
  }
}
@media screen and (min-width: 896px) {
  .multi-section-bg {
    background-position: center -6%;
  }
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

section.module {
  position: relative;
  overflow: hidden;
}

button,
a.button,
.button {
  display: inline-block;
  padding: 10px 10px;
  border-radius: 0.25em;
  background-color: #0071c5;
  font-family: "Intel One Text Regular", Helvetica, Arial, sans-serif;
  color: #ffffff;
  font-size: 0.7em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

a.back-to-top {
  position: absolute;
  bottom: 1.5em;
  right: 3em;
  color: #00aeef !important;
  font-size: 75%;
}

@media screen and (max-width: 767px) {
  a.back-to-top {
    display: none;
  }
}
a.next-section {
  display: block;
  margin: 0 auto;
  z-index: 1;
}

a.next-section:not(.relative) {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  a.next-section:not(.relative) {
    bottom: 1rem;
  }
}
a.next-section.relative img {
  display: block;
  margin: 0 auto;
}

div.btn-close {
  position: relative;
  height: 20px;
  width: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5em;
  cursor: pointer;
}

div.btn-close::before,
div.btn-close::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  /* cross thickness */
  background-color: #0079ff;
}

div.btn-close.white::before,
div.btn-close.white::after {
  background-color: white;
}

div.btn-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

div.btn-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.with-triangle:before {
  content: "";
  position: relative;
  top: 0.125em;
  font-size: 45%;
  display: inline-block;
  width: 0;
  height: 0;
  padding-right: 0.5em;
  border-style: solid;
  border-width: 1em 0 1em 1.7em;
  border-color: transparent transparent transparent #000000;
}

.fade {
  position: relative;
}

.fade::after,
.fade::before {
  content: "";
  position: absolute;
  z-index: 2;
}

.fade.top::before,
.fade.bottom::after {
  left: 0;
  right: 0;
  height: 30px;
}

.fade.top::before {
  top: 0;
}

.fade.top.dark::before {
  background-image: linear-gradient(to top, rgba(1, 1, 7, 0), #010107);
}

.fade.bottom::after {
  bottom: 0;
}

.fade.bottom.dark::after {
  background-image: linear-gradient(to bottom, rgba(1, 1, 7, 0), #010107);
}

.fade.left::before,
.fade.right::after {
  top: 0;
  bottom: 0;
  width: 30px;
}

.fade.left::before {
  left: 0;
}

.fade.left.dark::before {
  background-image: linear-gradient(to left, rgba(1, 1, 7, 0), #010107);
}

.fade.right::after {
  right: 0;
}

.fade.right.dark::after {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
}

.slick-slide,
.slick-track,
.slick-list,
.slick-slider {
  overflow: visible;
}

.btn-prev,
.btn-next {
  position: absolute;
  bottom: 0;
  background: #00aeef;
}

.btn-prev {
  left: 0;
  padding: 12px 14px 12px 10px;
}

.btn-next {
  right: 0;
  padding: 12px 10px 12px 14px;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  height: 50px;
  list-style-type: none;
}

ul.slick-dots li {
  margin: 7px;
}

ul.slick-dots button {
  color: transparent;
  background: transparent;
  border: 3px solid #00aeef;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}

ul.slick-dots button:focus {
  outline: none;
}

ul.slick-dots li.slick-active button {
  background: #00aeef;
}

.slick-slide:focus {
  outline: 0;
}

/********************************************************/
/* SLICK JS STYLES */
/*******************************************************/
/********************************************************/
/* PARTIALS STYLES */
/*******************************************************/
nav.tabs {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background-color: #5aa8e7;
}

nav.tabs div.nav-link {
  flex: 1 1;
  margin: 0 1px;
  background-image: linear-gradient(to bottom, #000766, #010341);
  transition: background 0.15s linear, color 0.15s linear;
}

nav.tabs div.nav-link:hover {
  background-image: linear-gradient(to top, #000766, #010341);
}

nav.tabs div.nav-link a {
  min-height: 3em;
  padding: 1em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  letter-spacing: normal;
  color: #ffffff;
  font-size: 0.95em;
  font-family: "Intel One Display Medium", Helvetica, Arial, sans-serif;
}

nav.tabs div.nav-link a > span {
  color: #75ddff;
}

@media screen and (min-width: 768px) {
  nav.tabs div.nav-link:first-child {
    margin-left: 0;
  }

  nav.tabs div.nav-link:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  nav.tabs div.nav-link a {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 767px) {
  nav.tabs div.nav-link {
    margin: 0 1.25rem 0.625rem 1.25rem;
  }

  nav.tabs div.nav-link:last-child {
    margin-bottom: 2rem;
  }

  nav.tabs div.nav-link a {
    padding: 0.625rem;
    font-size: 1.1rem;
    min-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  nav.tabs {
    background-color: transparent;
  }
}
video,
.video-wrapper {
  width: 100%;
  height: auto;
}

.video-js .vjs-dock-text {
  display: none;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  display: none;
}

.bc-player-default_default .vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-top: 0;
  opacity: 0.9;
  background-image: url("../images/video_play.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-size: 60%;
  border: none !important;
  box-shadow: none !important;
  transition: all 200ms ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bc-player-default_default .vjs-big-play-button::before {
  content: "";
  display: none;
}

.bc-player-default_default .vjs-big-play-button:hover {
  background-color: transparent;
  opacity: 1;
}

.bc-iframe,
.bc-iframe body,
.bc-player-default_default,
.bc-player-default_default .vjs-poster {
  background-size: cover;
}

.bc-player-default_default .vjs-play-progress,
.bc-player-default_default .vjs-volume-level,
.bc-player-default_default .vjs-big-play-button:active,
.bc-player-default_default .vjs-big-play-button:focus,
.bc-player-default_default:active .vjs-big-play-button,
.bc-player-default_default:hover .vjs-big-play-button {
  background-color: transparent;
}

.video-placeholder {
  border: 2px solid white;
  border-radius: 0;
}

/******************************************/
/*  MODAL VIDEOS  */
/****************************************/
.modal,
.modal-overlay,
.modal-wrapper {
  z-index: 10;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  visibility: hidden;
  z-index: 9;
}

.modal-wrapper {
  max-width: 100% !important;
  text-align: center;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
}

.modal-close {
  z-index: 10;
  position: absolute;
  top: 5px;
  right: 5px;
  font-family: "Intel One Display Medium", Helvetica, Arial, sans-serif;
  color: #ffffff;
  border-radius: 50%;
  display: block;
  line-height: 0.9;
  padding-left: 1px;
  font-size: 1.5em;
  text-align: center;
  opacity: 0.9;
  transition: all 200ms ease;
  cursor: pointer;
}

.modal-close:hover {
  opacity: 1;
}

.modal-show {
  visibility: visible;
}

.modal-transition {
  -webkit-transform: scale(0.5) translate(50%, -50%);
  transform: scale(0.5) translate(50%, -50%);
  opacity: 0;
  transition: all 0.2s ease-out;
}

.modal-show .modal-transition {
  position: fixed;
  -webkit-transform: scale(1) translate(50%, -50%);
  transform: scale(1) translate(50%, -50%);
  opacity: 1;
  transition: all 0.2s ease-in;
}

.modal-video .modal-play {
  position: relative;
}

.modal-video .modal-play .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: all 200ms ease;
}

.modal-video .modal-play:hover {
  cursor: pointer;
}

.modal-video .modal-play:hover .btn-play {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .modal-video .modal-play {
    max-width: 100%;
    text-align: center;
  }
}
.modal-video video,
.modal-video iframe {
  width: 100%;
}

.modal-video video:focus,
.modal-video iframe:focus {
  outline: none;
}

.modal-video .video-js {
  width: 60vw;
  max-width: 100% !important;
}

@media screen and (max-width: 1200px) {
  .modal-video .video-js {
    width: 80vw;
  }
}
@media screen and (max-width: 767px) {
  .modal-video .video-js {
    width: 100vw;
  }
}
.modal-video .video-js .vjs-dock-text {
  display: none;
}

.modal-video .bc-player-default_default .vjs-play-progress,
.modal-video .bc-player-default_default .vjs-volume-level {
  background-color: #00aeef;
}

.modal-video .video-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100% !important;
}

/********************************************************/
/* MODULE STYLES */
/*******************************************************/
/************************************/
/* Preloader Styles */
/************************************/
section.module-preloader {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

section.module-preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

section.module-preloader.fadeOut {
  -webkit-animation: fadeOut 500ms ease forwards;
  animation: fadeOut 500ms ease forwards;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/******************************************/
/* Module Styles - HEADER  */
/****************************************/
section.module.header {
  overflow: hidden;
}

section.module.header .module-content {
  min-height: 50vw;
}

section.module.header .headline {
  position: relative;
  z-index: 1;
}

section.module.header .headline span.block {
  margin-top: 0.5rem;
}

section.module.header .img-overflow::before {
  padding-top: 38%;
}

section.module.header .img-overflow img {
  top: -36%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  section.module.header {
    background-image: url("../images/header_bg_mobile.png");
  }

  section.module.header .section-padding {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  section.module.header .section-gutter {
    padding-left: 20px;
    padding-right: 20px;
  }

  section.module.header .module-content {
    background-image: none;
  }

  section.module.header .img-overflow::before {
    padding-top: 84%;
  }

  section.module.header .img-overflow img {
    top: -17%;
  }
}
section.module.bicol h3 {
  max-width: 12em;
  margin: 0 auto;
}

section.module.bicol .compare-cols {
  margin-top: 140px;
  gap: 40px;
}

section.module.bicol .compare-col {
  flex: 0 1 370px;
}

section.module.bicol .badge {
  position: relative;
  z-index: 1;
}

section.module.bicol .badge img {
  width: 50%;
  -webkit-filter: drop-shadow(0 0 30px #779cd2);
  filter: drop-shadow(0 0 30px #779cd2);
}

section.module.bicol .info {
  background-image: linear-gradient(to bottom, #fff, #8addff 75%, #0085f0);
  padding: 120px 50px 30px;
  margin-top: -90px;
  gap: 1.2rem;
}

section.module.bicol .info-item {
  flex: 0 1 25%;
}

section.module.bicol .icon-wrap {
  position: relative;
  height: 120px;
  width: 100%;
}

section.module.bicol .icon-wrap img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  max-width: none;
}

@media screen and (min-width: 1200px) {
  section.module.bicol .section-padding {
    padding-bottom: 120px;
  }

  section.module.bicol .info-item p {
    height: 3em;
  }

  section.module.bicol .info-item:last-child p {
    height: 5em;
  }
}
@media screen and (max-width: 1199px) {
  section.module.bicol .info-item p {
    height: 2em;
  }

  section.module.bicol .info-item:last-child p {
    height: 4em;
  }
}
@media screen and (max-width: 767px) {
  section.module.bicol p {
    font-size: 0.65rem;
  }

  section.module.bicol .section-gutter {
    padding-left: 20px;
    padding-right: 20px;
  }

  section.module.bicol .section-padding {
    padding-bottom: 100px;
  }

  section.module.bicol .compare-cols {
    margin-top: 50px;
    gap: 20px;
  }

  section.module.bicol .compare-col {
    flex: 0 0 145px;
  }

  section.module.bicol .info {
    margin-top: -35px;
    gap: 20px;
    padding: 50px 15px 30px;
  }

  section.module.bicol .icon-wrap {
    height: 40px;
  }

  section.module.bicol .icon-wrap img {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: translateX(-50%) scale(0.3);
            transform: translateX(-50%) scale(0.3);
  }

  section.module.bicol .compare-col:first-child .info-item:last-child p {
    padding-bottom: 0.65rem;
  }

  section.module.bicol .info-item p {
    height: 3em;
  }

  section.module.bicol .info-item:last-child p {
    height: 5em;
  }
}
section.module.tricol {
  position: relative;
  overflow: visible;
  z-index: 1;
}

section.module.tricol .module-content {
  position: relative;
  z-index: 2;
}

section.module.tricol > .img-overflow.pattern {
  position: absolute;
  inset: 0;
}

section.module.tricol > .img-overflow.pattern::before {
  padding-top: 100%;
}

section.module.tricol > .img-overflow.pattern::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: -8%;
  background-image: linear-gradient(to bottom, transparent, #070b1d 75%, transparent);
}

section.module.tricol > .img-overflow.pattern img {
  top: -10%;
  height: 110%;
}

section.module.tricol h3 {
  padding-bottom: 2rem;
}

section.module.tricol p {
  margin-top: 0;
}

section.module.tricol p.lead {
  color: #757df5;
  margin-bottom: 0.25em;
}

section.module.tricol .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 9%;
}

section.module.tricol .card {
  flex: 0 0 27%;
  max-width: 60vw;
  margin: 0 auto;
}

section.module.tricol .card .img-overflow {
  margin-bottom: 50px;
}

section.module.tricol .card .img-overflow::before {
  padding-top: 73%;
}

section.module.tricol .card:first-child {
  flex: 0 0 100%;
}

section.module.tricol .card:first-child .img-overflow {
  margin-bottom: 0;
}

section.module.tricol .card:first-child .img-overflow::before {
  padding-top: 56%;
}

section.module.tricol .card:first-child .img-overflow img {
  width: 124%;
  left: -24%;
}

section.module.tricol .card:first-child .text-block {
  position: relative;
  top: -6%;
  max-width: 36%;
}

section.module.tricol .card:nth-child(2) img {
  width: 128%;
  left: -15%;
}

section.module.tricol .card:nth-child(3) img {
  width: 134%;
  left: -17%;
  top: -24%;
}

section.module.tricol .card:nth-child(4) img {
  width: 125%;
  left: -16%;
  top: -4%;
}

@media screen and (min-width: 768px) {
  section.module.tricol .section-padding {
    padding-bottom: 200px;
  }

  section.module.tricol p:not(.lead) {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 767px) {
  section.module.tricol .cards {
    gap: 3rem;
  }

  section.module.tricol .cards .card {
    flex: 0 0 100%;
    max-width: 66vw;
  }

  section.module.tricol .cards .card .img-overflow {
    margin-bottom: 10px;
  }

  section.module.tricol .cards .card .text-block {
    top: 0;
    max-width: 100%;
  }

  section.module.tricol .cards .card .text-block p {
    font-size: 4.1vw;
  }

  section.module.tricol .card:nth-child(4) .img-overflow::before {
    padding-top: 85%;
  }
}
section.module.text-backdrop {
  background: transparent no-repeat top center/cover;
  display: flex;
}

section.module.text-backdrop .module-content {
  display: flex;
}

section.module.text-backdrop .text-block {
  position: relative;
  flex: 0 1 505px;
  z-index: 1;
}

section.module.text-backdrop .text-block ul {
  list-style: square;
  padding-left: 1rem;
}

@media screen and (max-width: 1000px) and (min-width: 767px) {
  section.module.text-backdrop .text-block ul {
    list-style: square;
    padding-left: 1rem;
    max-width: 10em;
  }
}
section.module.text-backdrop .text-block ul li::marker {
  color: #7af5f6;
}

@media screen and (min-width: 768px) {
  section.module.text-backdrop {
    min-height: 60vw;
  }
}
#panel2 {
  position: relative;
  overflow: visible;
  min-height: 75vw;
  z-index: 2;
}

#panel2 .text-block {
  flex: 1 1;
}

#panel2 .img-overflow.bg {
  position: absolute;
  inset: 0;
}

#panel2 .img-overflow.bg img {
  height: 110%;
  -o-object-position: top;
     object-position: top;
}

@media screen and (min-width: 768px) {
  #panel2 p {
    width: 13rem;
    max-width: 30%;
    margin-top: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  #panel2 {
    min-height: 205vw;
  }

  #panel2 .section-padding {
    padding-top: 10px;
    padding-bottom: 110vw;
  }

  #panel2 .text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2em;
  }
}
#panel4 {
  min-height: 65vw;
  background-image: url("../images/p4_bg.png");
  background-position-y: bottom;
}

#panel4 p,
#panel4 li {
  max-width: 18em;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  #panel4 .text-block {
    top: -15%;
  }
}
@media screen and (max-width: 767px) {
  #panel4 {
    background-image: none;
    overflow: visible;
    min-height: 220vw;
  }

  #panel4 p {
    max-width: 100%;
  }

  #panel4 .module-content {
    justify-content: center;
  }

  #panel4 .text-block {
    padding-bottom: 144vw;
  }

  #panel4 .img-overflow {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  #panel4 .img-overflow::before {
    padding-top: 205%;
  }

  #panel4 .img-overflow img {
    width: 100%;
    height: 120%;
    top: unset;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
#panel5 {
  background-image: url("../images/p5_bg.png");
}

#panel5 .text-block {
  flex: 0 1 85%;
}

#panel5 .text-block h3 {
  margin-right: 60px;
}

#panel5 .text-block p {
  max-width: 26rem;
}

@media screen and (max-width: 1200px) {
  #panel5 .text-block {
    flex: 1 1;
  }
}
@media screen and (max-width: 767px) {
  #panel5 {
    background-image: url("../images/p5_bg_mobile.png");
  }

  #panel5 .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  #panel5 .module-content {
    align-items: center;
  }

  #panel5 .text-block {
    margin-bottom: 50px;
    align-items: flex-start;
  }

  #panel5 h3 {
    margin-right: 0;
  }
}
#panel7 {
  background: #000646 url("../images/p7_bg.png") no-repeat bottom center/cover;
}

#panel7 section.text-backdrop {
  background: transparent url("../images/p7_fg_device.png") no-repeat top right/60% auto;
}

#panel7 section.text-backdrop p {
  margin-bottom: 50px;
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  #panel7 section.text-backdrop .text-block h3,
#panel7 section.text-backdrop .text-block p {
    width: 40vw;
  }
}
@media screen and (min-width: 767px) and (max-width: 1000px) {
  #panel7 section.text-backdrop p {
    margin-bottom: 50px;
    max-width: 15em;
  }
}
#panel7 section.text-backdrop .text-block {
  height: 80%;
}

@media screen and (max-width: 767px) {
  #panel7 section.text-backdrop {
    background-size: 100% auto;
  }

  #panel7 section.text-backdrop .module-content {
    justify-content: center;
  }

  #panel7 section.text-backdrop .section-padding {
    padding-top: 110vw;
  }

  #panel7 section.text-backdrop .text-block {
    height: auto;
  }
}
section.module.side-by-side {
  min-height: 35rem;
}

section.module.side-by-side .media-block {
  flex: 1 1;
}

section.module.side-by-side .media-block img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

section.module.side-by-side .media-block:first-child img {
  right: unset;
  -o-object-position: right;
     object-position: right;
}

section.module.side-by-side .media-block:last-child img {
  left: unset;
  -o-object-position: left;
     object-position: left;
}

section.module.side-by-side .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  max-width: 100%;
  padding: 3rem;
  flex: 0 0 24rem;
  z-index: 1;
}

section.module.side-by-side .text-block ul {
  list-style: square;
}

section.module.side-by-side .text-block ul li {
  font-size: 1rem;
  line-height: 1.2;
}

section.module.side-by-side .text-block ul li::marker {
  color: #7af5f6;
}

@media screen and (max-width: 767px) {
  section.module.side-by-side {
    height: auto;
    min-height: 0;
  }

  section.module.side-by-side ul {
    padding-left: 1rem;
  }

  section.module.side-by-side .text-block {
    flex: 0 0 auto;
    padding: 0 40px 2.5rem;
  }
}
section.module.video-panel {
  background: transparent url("../images/p6_bg.png") no-repeat bottom center/cover;
}

section.module.video-panel .img {
  display: block;
  margin: 0 auto;
}

section.module.video-panel .main {
  margin-top: 40px;
}

section.module.video-panel .media-block {
  flex: 0 1 320px;
}

section.module.video-panel .text-block {
  flex: 0 1 525px;
}

@media screen and (min-width: 768px) {
  section.module.video-panel {
    min-height: 60vw;
  }

  section.module.video-panel .media-block {
    margin-right: 10%;
  }
}
@media screen and (max-width: 767px) {
  section.module.video-panel {
    text-align: center;
    background-size: 300%;
  }

  section.module.video-panel .section-padding {
    padding-bottom: 100px;
  }

  section.module.video-panel .img {
    margin-top: 40px;
  }

  section.module.video-panel .media-block {
    flex: 1 1;
    margin-top: 40px;
  }

  section.module.video-panel .text-block {
    flex: 1 1;
  }
}
/******************************************/
/* Module Styles - Choose your PC  */
/****************************************/
section.module.retail {
  position: relative;
  overflow-x: hidden;
  background: white;
  color: #414042;
}

section.module.retail .module-content {
  position: relative;
  z-index: 1;
}

section.module.retail h3 {
  font-size: 2.1rem;
  margin: 0 auto 1.5em auto;
  text-align: center;
}

section.module.retail h4 {
  font-size: 26px;
  font-weight: normal;
  line-height: 28px;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  section.module.retail h4 {
    font-size: 27px;
    line-height: 29px;
  }
}
section.module.retail h5 {
  font-size: 18px;
  line-height: 23px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  section.module.retail h5 {
    font-size: 19px;
    line-height: 24px;
  }
}
section.module.retail h6 {
  font-size: 0.9em;
  text-align: center;
  margin: 0 auto 1.5em auto;
}

section.module.retail div.use-case {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  padding: 0 1em;
  margin-left: 0px !important;
  margin-bottom: 25px;
}

section.module.retail div.use-case div.image-wrap {
  width: 100%;
  overflow: visible;
  position: relative;
  text-align: center;
}

section.module.retail div.use-case img.primary {
  position: relative;
  width: 100%;
  max-width: 270px;
  margin: 0 auto 15px auto;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

section.module.retail div.use-case a.button {
  margin: auto auto 0 auto;
  padding: 0.5em;
  width: 100%;
  max-width: 275px;
  background-image: linear-gradient(to right, #0072ca, #00aef2);
  font-size: 1.123em;
  line-height: 1.15;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #394c6e;
  color: #ffffff;
  font-family: "Intel One Display Medium", Helvetica, Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: background-color 0.2s;
}

section.module.retail div.use-case a.button:focus {
  outline: none;
}

section.module.retail div.use-case a.button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

section.module.retail div.use-case a.button span {
  position: relative;
  top: 0.0625em;
}

section.module.retail div.use-case div.processor {
  align-items: center;
  max-width: 255px;
  margin: 0 auto 1.5em auto;
}

section.module.retail div.use-case div.processor img {
  max-width: 85px;
}

section.module.retail div.use-case div.processor div.text-block {
  margin-left: 20px;
}

section.module.retail div.use-case div.processor div.text-block p,
section.module.retail div.use-case div.processor div.text-block ul {
  margin: 0;
  padding: 0;
}

section.module.retail div.use-case div.processor div.text-block p {
  margin-bottom: 0.5em;
  font-size: 0.8em;
  line-height: 1;
}

section.module.retail div.use-case div.processor div.text-block ul {
  list-style-type: square;
  padding-left: 1em;
}

section.module.retail div.use-case div.processor div.text-block li {
  line-height: 1.25em;
  font-size: 0.7em;
  font-family: "Intel One Text Regular", Helvetica, Arial, sans-serif;
}

section.module.retail a.back-to-top {
  bottom: 20px;
}

@media screen and (max-width: 1200px) {
  section.module.retail {
    font-size: 80%;
  }

  section.module.retail div.main {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (max-width: 896px) {
  section.module.retail div.use-case {
    padding: 0 1em 0 1em;
  }

  section.module.retail div.use-case div.image-wrap::after {
    display: none;
  }

  section.module.retail div.use-case div.processor img {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  section.module.retail {
    font-size: 100%;
  }

  section.module.retail .section-padding {
    padding-bottom: 0;
  }

  section.module.retail h3 {
    font-size: 1.2rem;
    margin: 0 auto 1.5em auto;
    padding: 0 1em;
    max-width: 480px;
  }

  section.module.retail div.module-content {
    max-width: none;
  }

  section.module.retail div.main {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  section.module.retail div.use-case {
    height: auto !important;
    padding-bottom: 0.5rem;
  }

  section.module.retail div.use-case div.image-wrap::after {
    display: block;
  }

  section.module.retail div.use-case div.processor {
    margin-left: auto;
    margin-right: auto;
  }

  section.module.retail div.use-case div.processor img {
    width: 50%;
  }

  section.module.retail img.primary {
    max-width: 375px;
    margin: 0 auto;
  }

  section.module.retail img.btn-next {
    padding: 12px 10px 12px 14px;
  }

  section.module.retail img.btn-prev {
    padding: 12px 14px 12px 10px;
  }
}
/******************************************/
/* Module Styles - LEGAL  */
/****************************************/
section.module.legal {
  background-color: #d8d8d8;
  color: #231f20;
  overflow: hidden;
}

section.module.legal div.legal-content {
  opacity: 1;
  transition: opacity 0.2s, height 0.2s;
}

section.module.legal.hide-legal-content div.legal-content {
  opacity: 0;
}

section.module.legal.hide-legal-content button.legal-toggle.primary::before {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

section.module.legal.hide-legal-content button.btn-close {
  display: none;
}

section.module.legal div.module-content a {
  text-decoration: none;
}

section.module.legal p {
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 1em;
}

section.module.legal p:last-child {
  padding-bottom: 4rem;
}

section.module.legal button.btn-close {
  width: 30px;
}

section.module.legal button.legal-toggle {
  position: relative;
  margin: 1rem 0;
  padding: 0;
  font-size: 16px;
  text-decoration: underline;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #231f20;
}

section.module.legal button.legal-toggle:focus {
  outline: none;
}

section.module.legal button.legal-toggle.primary::before {
  content: "";
  position: absolute;
  top: 25%;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-top-color: 10px;
  border-top-color: #231f20;
  border-bottom-width: 0;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

section.module.legal button.legal-toggle span {
  padding-left: 25px;
}

section.module.legal button.btn-close {
  width: 1em;
}

section.module.legal a.back-to-top {
  font-size: 16px !important;
  bottom: 1em;
}

/* transition */
/* end transition */
/* color */
/* end color */
/* font */
/* end font */
body {
  margin: 0;
}

.intelLp {
  max-width: 1200px;
  margin-inline: auto;
}
.intelLp img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
.intelLp summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.intelLp summary:focus {
  outline: none;
}

@media (width <= 767px) {
  .breadcrumbs {
    width: 100%;
  }
}

sup.small {
  font-size: 50%;
  vertical-align: super;
}

.snsNavInner {
  vertical-align: top;
}

#contents .contentsCol .mainCol .mainColInner {
  padding-left: 0;
}

#legal-module .max-width {
  box-sizing: border-box;
}

#legal-module .btn-close {
  width: 16px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#legal-module .btn-close:before, #legal-module .btn-close:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #0d0d0d;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#legal-module .btn-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
#legal-module .btn-close img {
  display: none;
}

.l-wrap {
  width: 100%;
  margin-inline: auto;
}
@media (768px < width) {
  .l-wrap {
    max-width: 1100px;
    padding-inline: 20px;
  }
}
@media (width <= 767px) {
  .l-wrap {
    width: 95%;
  }
}

.p-indexHero {
  background-color: #021fb3;
}
.p-indexSec * {
  color: #fff;
}
.p-indexText--regular {
  font-family: "Intel One Jpn Regular" !important;
}
.p-indexText--bold {
  font-family: "Intel One Jpn Bold" !important;
}
.p-indexHero {
  padding: 0 !important;
  min-height: 100% !important;
  color: #fff;
}
.p-indexHero_cont {
  padding: 0 !important;
  min-height: 100%;
  position: relative;
}
.p-indexHero_heading {
  font-family: "Intel One Jpn Bold";
  position: absolute;
  inset: 19% auto auto 50%;
  translate: -50% -50%;
  z-index: 2;
  font-size: 72px;
  width: 100%;
}
@media (width <= 1360px) {
  .p-indexHero_heading {
    inset: 18% auto auto 50%;
    line-height: 1;
  }
}
@media (width <= 767px) {
  .p-indexHero_heading {
    font-size: 10vw;
  }
}
.p-indexHero_headingInner {
  display: block;
  font-size: 1.8rem;
}
@media (width <= 767px) {
  .p-indexHero_headingInner {
    padding-top: 2vw;
    font-size: 4.65vw;
  }
}
.p-indexHero_img {
  position: relative;
  z-index: 1;
  margin-block: 0;
}
.p-indexSec {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.p-indexSec::before, .p-indexSec::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  inset: 0 auto auto 0;
}
.p-indexSec::before {
  height: 100%;
  background-color: #cdf9fe;
  z-index: -2;
}
.p-indexSec::after {
  height: 26%;
  background: linear-gradient(to bottom, #f7f7f7 0%, rgba(125, 185, 232, 0) 100%);
  z-index: -1;
}
.p-indexIntro {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 28px 0;
  font-family: "Intel One Jpn Regular";
  padding-top: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width <= 767px) {
  .p-indexIntro {
    gap: 2.1333333333vw;
    padding-top: 10.6666666667vw;
  }
}
.p-indexIntro_heading {
  margin-block: 0 !important;
  font-size: 52px;
  line-height: 1.462;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px 16px;
}
@media (width <= 767px) {
  .p-indexIntro_heading {
    font-size: 6.4vw;
    gap: 16px;
  }
}
.p-indexIntro_headingSub {
  font-family: "Intel One Jpn Bold";
  font-size: 40px;
  letter-spacing: -0.02em;
  color: #09114a !important;
}
@media (width <= 767px) {
  .p-indexIntro_headingSub {
    font-size: 6vw;
  }
}
.p-indexIntro_headingLabel {
  display: inline-block;
  padding-inline: 10px;
  background-color: #000477;
  color: #31ccfd;
  font-size: 74px;
}
@media (width <= 767px) {
  .p-indexIntro_headingLabel {
    font-size: 7vw;
  }
}
.p-indexIntro_headingText {
  font-family: "Intel One Jpn Regular";
  font-weight: normal;
  color: #09114a !important;
  font-size: 74px;
}
@media (width <= 767px) {
  .p-indexIntro_headingText {
    font-size: 6vw;
  }
}
.p-indexIntro_text {
  margin-block: 0 !important;
  font-size: 31px;
  line-height: 1.75;
  color: #09114a;
}
@media (width <= 767px) {
  .p-indexIntro_text {
    font-size: 4vw;
  }
}
.p-indexFeature {
  padding-block: 88px 0 !important;
}
@media (width <= 767px) {
  .p-indexFeature {
    padding-block: 12vw 0 !important;
  }
}
.p-indexFeature_heading {
  margin-block: 0 !important;
  font-family: "Intel One Jpn Bold";
  text-align: center;
  font-size: 40px;
  color: #09114a !important;
}
@media (width <= 767px) {
  .p-indexFeature_heading {
    font-size: 5.6vw;
    line-height: 1.6;
  }
}
.p-indexFeature_cont {
  margin-block: 36px 0;
  display: flex;
  justify-content: space-between;
}
@media (width <= 767px) {
  .p-indexFeature_cont {
    width: 90%;
    margin-inline: auto;
    justify-content: flex-start;
    flex-flow: column;
    margin-block: 5vw 0;
    gap: 32px 0;
  }
}
.p-indexFeature_contBox {
  width: 31.5%;
}
@media (width <= 767px) {
  .p-indexFeature_contBox {
    width: 100%;
  }
}
.p-indexFeature_note {
  margin-block: 32px 0;
}
.p-indexFeature_noteTitle {
  margin-block: 0 !important;
  font-size: 14px;
  color: #1f191a !important;
}
.p-indexFeature_noteText {
  margin-block: 6px 0 !important;
  font-size: 12px;
  line-height: 1.33;
  color: #1f191a !important;
}
.p-indexProduct {
  padding-top: 96px;
  position: relative;
  z-index: 2;
}
@media (width <= 767px) {
  .p-indexProduct {
    padding-top: 12vw;
  }
}
.p-indexProduct_cont {
  display: -ms-grid;
  display: grid;
  gap: 0 28px;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 767px) {
  .p-indexProduct_cont {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 4.2666666667vw;
  }
}
.p-indexProduct_contBox {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 5;
  grid-row: span 5;
  row-gap: 0;
}
@media (width <= 767px) {
  .p-indexProduct_contBox {
    border-radius: 4px;
  }
}
@media (width <= 767px) {
  .p-indexProduct_contBox:nth-child(n+3) {
    margin-top: 6.4vw;
  }
}
@media (768px < width) {
  .p-indexProduct_contBox:nth-child(n+4) {
    margin-top: 32px;
  }
}
.p-indexProduct_contBoxLabel {
  font-family: "Intel One Jpn Bold";
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #820ca6;
}
.p-indexProduct_contBoxLabel--nocontent {
  background: none;
}
.p-indexProduct_contBoxLabelText {
  margin-block: 0 !important;
  font-size: 20px;
  line-height: 1.2;
  padding-block: 5px;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxLabelText {
    font-size: 2.6666666667vw;
  }
}
.p-indexProduct_contBoxLabelText--large {
  font-size: 27px;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxLabelText--large {
    font-size: 4.2666666667vw;
  }
}
.p-indexProduct_contBoxName, .p-indexProduct_contBoxBtn {
  color: #09114a;
}
.p-indexProduct_contBoxName {
  margin-block: 0 !important;
  font-family: "Intel One Jpn Regular";
  padding-top: 12px;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding-inline: 14px;
  box-sizing: border-box;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxName {
    padding-top: 3.2vw;
    padding-inline: 3.2vw;
  }
}
.p-indexProduct_contBoxNameTop, .p-indexProduct_contBoxNameMid, .p-indexProduct_contBoxNameBtm {
  display: block;
  color: #09114a;
}
.p-indexProduct_contBoxNameTop {
  font-size: 20px;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxNameTop {
    font-size: 3.4666666667vw;
  }
}
.p-indexProduct_contBoxNameMid {
  font-size: 24px;
  line-height: 1.3125;
  word-break: break-word;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxNameMid {
    font-size: 4.2666666667vw;
  }
}
.p-indexProduct_contBoxNameBtm {
  padding-top: 2px;
  font-size: 18px;
  line-height: 1.4;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxNameBtm {
    font-size: 2.6666666667vw;
  }
}
.p-indexProduct_contBoxInfo {
  padding-top: 16px;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxInfo {
    padding-top: 4.2666666667vw;
  }
}
.p-indexProduct_contBoxBtn {
  padding: 20px 14px 16px;
  box-sizing: border-box;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxBtn {
    padding-top: 4.2666666667vw;
    padding-inline: 2.1333333333vw;
    padding-bottom: 3.2vw;
  }
}
.p-indexProduct_contBoxBtnItem {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  font-family: "Intel One Jpn Bold";
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
  color: #09114a !important;
  background-color: #31ccfd;
  text-decoration: none !important;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxBtnItem {
    padding-block: 3.2vw;
    padding-inline: 3.2vw;
    font-size: 3.7333333333vw;
  }
}
@media (hover: hover) {
  .p-indexProduct_contBoxBtnItem:-webkit-any-link {
    position: relative;
  }
  .p-indexProduct_contBoxBtnItem:-moz-any-link {
    position: relative;
  }
  .p-indexProduct_contBoxBtnItem:any-link {
    position: relative;
  }
  .p-indexProduct_contBoxBtnItem:-webkit-any-link:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
  .p-indexProduct_contBoxBtnItem:-moz-any-link:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
  .p-indexProduct_contBoxBtnItem:any-link:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  .p-indexProduct_contBoxBtnItem:-webkit-any-link:hover:after {
    opacity: 0.3;
  }
  .p-indexProduct_contBoxBtnItem:-moz-any-link:hover:after {
    opacity: 0.3;
  }
  .p-indexProduct_contBoxBtnItem:any-link:hover:after {
    opacity: 0.3;
  }
}
.p-indexProduct_contBoxImg {
  position: relative;
  aspect-ratio: 760/624;
}
.p-indexProduct_contBoxImgBadge {
  width: 110px;
  background: linear-gradient(to right, #000477 0%, #000477 74%, rgba(0, 4, 119, 0) 100%);
  color: #fff;
  display: flex;
  align-items: baseline;
  position: absolute;
  inset: 0 auto auto 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  gap: 0 4px;
  padding: 9px;
}
@media (width <= 767px) {
  .p-indexProduct_contBoxImgBadge {
    width: 3.6rem;
    height: auto;
    inset: 0 auto auto 0;
    font-size: 2.2vw;
    gap: 0 4px;
    padding: 4px 5px;
  }
}
.p-indexProduct_contBoxImgBadgeNum {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-family: "Intel One Jpn Bold";
}
@media (width <= 767px) {
  .p-indexProduct_contBoxImgBadgeNum {
    font-size: 2.8vw;
  }
}
.p-indexProduct_contBoxImgBadge--s2 {
  background: linear-gradient(to right, #820ca6 0%, #820ca6 74%, rgba(130, 12, 166, 0) 100%);
}
.p-indexProduct_detail {
  width: 100%;
  padding-inline: 14px;
  box-sizing: border-box;
}
@media (width <= 767px) {
  .p-indexProduct_detail {
    padding-inline: 2.1333333333vw;
  }
}
.p-indexProduct_detailList + .p-indexProduct_detailList {
  padding-top: 7px;
}
.p-indexProduct_detailListInfo {
  flex: 1 1;
  font-size: 18px;
  line-height: 1.33;
  text-indent: -1em;
  padding-left: 1em;
  margin-block: 0 !important;
}
@media (width <= 767px) {
  .p-indexProduct_detailListInfo {
    font-size: 3.2vw;
  }
}
.p-indexProduct_detailListInfoHead {
  font-family: "Intel One Jpn Bold";
  color: #09114a;
}
.p-indexProduct_detailListInfoBody {
  font-family: "Intel One Jpn Regular";
  color: #424242;
  word-break: break-word;
}
.p-indexMovie {
  padding-top: 100px;
}
@media (width <= 767px) {
  .p-indexMovie {
    padding-top: 16vw;
  }
}
.p-indexMovie_cont + .p-indexMovie_cont {
  padding-top: 80px;
}
@media (width <= 767px) {
  .p-indexMovie_cont + .p-indexMovie_cont {
    padding-top: 16vw;
  }
}
.p-indexMovie_contHeading {
  margin-block: 0 !important;
  font-family: "Intel One Jpn Bold";
  font-size: 40px;
  line-height: 1.5;
  color: #09114a;
  text-align: center;
}
@media (width <= 767px) {
  .p-indexMovie_contHeading {
    font-size: 5.3333333333vw;
  }
}
.p-indexMovie_contHeadingColor {
  color: #31ccfd;
  background-color: #09114a;
  padding-inline: 10px;
  display: inline-block;
}
.p-indexMovie_contBox {
  max-width: 710px;
  width: 100%;
  margin-inline: auto;
  padding-top: 32px;
}
@media (width <= 767px) {
  .p-indexMovie_contBox {
    width: 100%;
    padding-top: 4vw;
  }
}
.p-indexScene {
  padding-block: 100px;
  position: relative;
}
@media (width <= 767px) {
  .p-indexScene {
    padding-block: 21.3333333333vw;
  }
}
.p-indexScene_heading {
  margin-block: 0 !important;
  padding-block: 16px;
  box-sizing: border-box;
  font-family: "Intel One Jpn Bold";
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  background-color: #000477;
  color: #31ccfd;
}
@media (width <= 767px) {
  .p-indexScene_heading {
    padding-block: 3.2vw;
    font-size: 4vw;
  }
}
.p-indexScene_cont {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
}
@media (width <= 767px) {
  .p-indexScene_cont {
    padding-top: 8vw;
    padding-inline: 6vw;
    flex-flow: column;
    justify-content: flex-start;
    gap: 8vw 0;
  }
}
.p-indexScene_contBox {
  max-width: 346px;
  width: 28.9%;
}
@media (width <= 767px) {
  .p-indexScene_contBox {
    width: 100%;
    max-width: 100%;
  }
}
.p-indexScene_contBoxIntro {
  width: 100%;
  display: flex;
  align-items: center;
  margin-block: 32px 0;
}
@media (width <= 767px) {
  .p-indexScene_contBoxIntro {
    width: 100%;
    gap: 0 2vw;
    margin-block: 6vw 0;
  }
}
.p-indexScene_contBoxIntroIco {
  width: 40px;
  display: flex;
}
@media (width <= 767px) {
  .p-indexScene_contBoxIntroIco {
    width: 6vw;
  }
}
.p-indexScene_contBoxIntroHeading {
  margin-block: 0 !important;
  font-family: "Intel One Jpn Bold";
  font-size: 28px;
  line-height: 1.714;
  color: #09114a;
}
@media (width <= 767px) {
  .p-indexScene_contBoxIntroHeading {
    font-size: 4.6vw;
  }
}
.p-indexScene_contBoxImg {
  padding-top: 16px;
  position: relative;
  z-index: 1;
}
@media (width <= 767px) {
  .p-indexScene_contBoxImg {
    padding-top: 3vw;
  }
}
.p-indexScene_contBoxImgItem {
  position: relative;
  z-index: 1;
}
.p-indexScene_contBoxImgPop {
  position: absolute;
  inset: 85% auto auto 80%;
  z-index: 2;
  translate: -50% -50%;
  max-width: 177px;
  width: 52%;
}
@media (width <= 767px) {
  .p-indexScene_contBoxImgPop {
    width: 45%;
    inset: 87% auto auto 82%;
  }
}
.p-indexScene_contBoxText {
  margin: 0 !important;
  padding-top: 20px;
  font-family: "Intel One Jpn Regular";
  font-size: 20px;
  line-height: 1.74;
  color: #09114a;
}
@media (width <= 767px) {
  .p-indexScene_contBoxText {
    padding-top: 2vw;
    font-size: 4.2vw;
  }
}
.p-indexScene_contBoxTextSub {
  font-size: 18px;
  color: #09114a;
}
@media (width <= 767px) {
  .p-indexScene_contBoxTextSub {
    font-size: 3.2vw;
  }
}
.p-indexScene::before {
  content: "";
  width: 100vw;
  height: 120%;
  position: absolute;
  z-index: -1;
  inset: auto auto 0 50%;
  translate: -50% 0;
  background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 0.8) 25%, #f7f7f7 100%);
}
.p-indexOther {
  padding-block: 18px 32px;
  background-color: #d8d8d8;
  color: #1f191a !important;
}
@media (width <= 767px) {
  .p-indexOther {
    padding-top: 6.4vw;
    padding-bottom: 8.5333333333vw;
  }
}
.p-indexOther_heading {
  margin-block: 0 !important;
  font-family: "Intel One Jpn Regular";
  font-size: 16px;
}
@media (width <= 767px) {
  .p-indexOther_heading {
    font-size: 4.2666666667vw;
  }
}
.p-indexOther_cont {
  padding-top: 16px;
}
@media (width <= 767px) {
  .p-indexOther_cont {
    padding-top: 3.2vw;
  }
}
.p-indexOther_noteList {
  font-family: "Intel One Jpn Regular";
  font-size: 12px;
  line-height: 1.33;
  text-indent: -1em;
  padding-left: 1em;
}
@media (width <= 767px) {
  .p-indexOther_noteList {
    font-size: 3.2vw;
  }
}
@media (width <= 767px) {
  .p-indexOther_noteList + .p-indexOther_noteList {
    padding-top: 1.0666666667vw;
  }
}
.p-indexOther_link {
  font-family: "Intel One Jpn Regular";
  color: #1f191a !important;
  text-decoration: none;
}
.p-indexOther_copy {
  margin-block: 0 !important;
  font-family: "Intel One Jpn Regular";
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.33;
}
@media (width <= 767px) {
  .p-indexOther_copy {
    font-size: 3.2vw;
  }
}
/*# sourceMappingURL=../../../map/yodobashi/core_ultra_2411/css/styles.css.map */