@charset "UTF-8";
* {
  text-decoration: none;
  margin: 0;
  padding: 0;
  min-height: 0vw;
  min-height: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  scroll-behavior: smooth;
}

ul::before, ul::after {
  display: none;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
h1, h2, h3 {
  font-weight: 500;
}

p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  p {
    font-size: clamp(0.813rem, 0.616rem + 0.31vw, 1rem);
  }
}

.font-w600 {
  font-weight: 600 !important;
}

.font-w500 {
  font-weight: 500 !important;
}

.font-xxl {
  font-size: 30px;
}

.font-xl {
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .font-xl {
    font-size: clamp(1.5rem, 1.107rem + 0.61vw, 1.875rem);
  }
}

.font-bold {
  font-weight: bold;
}

.font-l {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.6rem);
}
@media screen and (min-width: 1024px) {
  .font-l {
    font-size: clamp(1.125rem, 0.6rem + 0.82vw, 1.625rem);
  }
}

.font-m {
  font-weight: normal;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .font-m {
    font-size: clamp(0.875rem, 0.482rem + 0.61vw, 1.25rem);
  }
}

.font-s {
  font-size: 9px;
}
@media screen and (min-width: 1024px) {
  .font-s {
    font-size: clamp(0.625rem, 0.428rem + 0.31vw, 0.813rem);
  }
}

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

.eng {
  font-family: Helvetica, Arial, sans-serif;
}

.section-ttl {
  margin: 20px auto 30px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1.5px;
  position: relative;
}
.section-ttl:before, .section-ttl:after {
  position: absolute;
  content: "";
  height: 2px;
  background-color: #75d6d5;
  width: 20px;
  top: 48%;
}
.section-ttl:before {
  margin-left: -35px;
}
.section-ttl:after {
  margin-left: 15px;
}

.ttl-underline,
.ttl-underline-bold {
  position: relative;
  margin-bottom: 35px;
}
.ttl-underline::after,
.ttl-underline-bold::after {
  display: block;
  content: "";
  position: absolute;
  height: 2px;
  width: 100px;
  bottom: -15px;
}

.ttl-underline::after {
  background: #75d6d5;
}

.ttl-underline-bold::after {
  background: #75d6d5;
}

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

.margin-30 {
  margin: 30px 0;
}

.margin-60 {
  margin: 60px 0;
}

.margin-5 {
  margin: 5px 0;
}

.margin-b-30 {
  margin-bottom: 30px;
}

img {
  width: 100%;
}

.section {
  margin: 60px auto;
  padding: 0 5%;
}

#pi {
  width: 100% !important;
}

.pi_description {
  padding: 0;
}

.btn-shadow {
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.2));
}

.btn-black {
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 60px auto 30px;
  padding: 10px 70px 10px 50px;
  line-height: 1;
  background-color: #0A1317;
  color: #efefef;
}
.btn-black p {
  color: #efefef;
  position: relative;
  font-weight: 600;
}
.btn-black p::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(/static/full/speedo/pi3/250415_fastskin-newcolor/images/arrow-small.svg);
  background-repeat: no-repeat;
  background-size: 20px 10px;
  width: 20px;
  height: 10px;
  right: 0;
  margin-right: -30px;
  transition: all 0.3s;
  top: calc(50% - 6px);
}
.btn-black:hover p::after {
  margin-right: -35px;
  transition: all 0.3s;
}

[data-fancybox] {
  display: block;
  overflow: hidden;
  cursor: pointer;
}
[data-fancybox] img, [data-fancybox] video {
  width: 100%;
  transition: all 0.5s ease;
}
[data-fancybox]:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.video-container:hover video {
  opacity: 0.6;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.show {
  opacity: 1;
}
.modal .modal-content {
  max-width: 1200px;
  line-height: 1.4;
  margin: 40px auto;
  background-color: #fefefe;
  padding: 20px 20px 40px;
  border: 1px solid #b3b3b3;
  width: 90%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.modal .modal-content .close {
  color: #aaa;
  font-size: 28px;
  font-weight: normal;
  position: absolute;
  right: 5%;
  z-index: 1000;
}
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-content__text-wrap {
  padding: 20px 0;
}
.modal .modal-content__text-wrap p {
  margin-bottom: 10px;
}
.modal .modal-content__text-wrap h4 {
  font-size: 20px;
}
.modal .modal-content__functions, .modal .modal-content__materials {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal .modal-content__functions::-webkit-scrollbar, .modal .modal-content__materials::-webkit-scrollbar {
  display: none;
}
.modal .modal-content__functions.box::-webkit-scrollbar, .modal .modal-content__materials.box::-webkit-scrollbar {
  display: none;
}
.modal .modal-content__functions .function_item {
  min-width: 250px;
}
.modal .modal-content__functions .function_item .list-number {
  margin-bottom: -5px;
  font-weight: 600;
  position: relative;
}
.modal .modal-content__functions .function_item .list-number::before {
  display: block;
  position: absolute;
  content: "";
  width: 30px;
  left: 0%;
  height: 1px;
  background-color: #0A1317;
  transform: rotate(-45deg);
  bottom: 0;
}
.modal .modal-content__functions .function_item p {
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .modal .modal-content__functions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
  }
}
.modal .modal-content__materials .material_item {
  flex: 1;
}
.modal .modal-content__materials .material_item .item_wrapper {
  min-width: 260px;
}
.modal .modal-content__materials .material_item .item_wrapper img {
  margin: 0;
}
.modal .modal-content__materials .material_item .item_wrapper p {
  text-align: left;
  margin-top: 10px;
  line-height: 1.5;
}
.modal .modal-content__materials .material_item .wrapper-single {
  width: max(200px, 33%);
}

.pi3 .intro h1.cool-text {
  overflow: hidden;
}
.pi3 .intro h1.cool-text span {
  margin: 0.8px;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  color: #ffff01;
  animation: textReveal 1.5s forwards;
}
.pi3 .intro h1.cool-text span:nth-child(1) {
  animation-delay: 1.15s;
}
.pi3 .intro h1.cool-text span:nth-child(2) {
  animation-delay: 1.3s;
}
.pi3 .intro h1.cool-text span:nth-child(3) {
  animation-delay: 1.45s;
}
.pi3 .intro h1.cool-text span:nth-child(4) {
  animation-delay: 1.6s;
}
.pi3 .intro h1.cool-text span:nth-child(5) {
  animation-delay: 1.75s;
}
.pi3 .intro h1.cool-text span:nth-child(6) {
  animation-delay: 1.9s;
}
.pi3 .intro h1.cool-text span:nth-child(7) {
  animation-delay: 2.05s;
}
.pi3 .intro h1.cool-text span:nth-child(8) {
  animation-delay: 2.2s;
}
.pi3 .intro h1.cool-text span:nth-child(9) {
  animation-delay: 2.35s;
}
.pi3 .intro h1.cool-text span:nth-child(10) {
  animation-delay: 2.5s;
}
.pi3 .intro h1.cool-text span:nth-child(11) {
  animation-delay: 2.65s;
}
.pi3 .intro h1.cool-text span:nth-child(12) {
  animation-delay: 2.8s;
}
.pi3 .intro h1.cool-text span:nth-child(13) {
  animation-delay: 2.95s;
}
.pi3 .intro h1.cool-text span:nth-child(14) {
  animation-delay: 3.1s;
}
.pi3 .intro h1.cool-text span:nth-child(15) {
  animation-delay: 3.25s;
}
.pi3 .intro h1.cool-text span:nth-child(16) {
  animation-delay: 3.4s;
}
.pi3 .intro h1.cool-text span:nth-child(17) {
  animation-delay: 3.55s;
}
.pi3 .intro h1.cool-text span:nth-child(18) {
  animation-delay: 3.7s;
}
.pi3 .intro h1.cool-text span:nth-child(19) {
  animation-delay: 3.85s;
}
.pi3 .intro h1.cool-text span:nth-child(20) {
  animation-delay: 4s;
}
.pi3 .intro h1.cool-text span:nth-child(21) {
  animation-delay: 4.15s;
}
.pi3 .intro h1.cool-text span:nth-child(22) {
  animation-delay: 4.3s;
}
.pi3 .intro h1.cool-text span:nth-child(23) {
  animation-delay: 4.45s;
}
.pi3 .intro h1.cool-text span:nth-child(24) {
  animation-delay: 4.6s;
}
.pi3 .intro h1.cool-text span:nth-child(25) {
  animation-delay: 4.75s;
}
.pi3 .intro h1.cool-text span:nth-child(26) {
  animation-delay: 4.9s;
}
.pi3 .intro h1.cool-text span:nth-child(27) {
  animation-delay: 5.05s;
}
.pi3 .intro h1.cool-text span:nth-child(28) {
  animation-delay: 5.2s;
}
.pi3 .intro h1.cool-text span:nth-child(29) {
  animation-delay: 5.35s;
}
.pi3 .intro h1.cool-text span:nth-child(30) {
  animation-delay: 5.5s;
}
@keyframes textReveal {
  to {
    opacity: 1;
    color: #0A1317;
    transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .pi3 .intro .item-btn {
    display: flex;
  }
  .pi3 .intro .item-btn__l, .pi3 .intro .item-btn__r {
    margin: 0 auto;
    width: 50%;
  }
}
.pi3 .intro .video-container {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 60px;
  cursor: pointer;
  overflow: hidden;
}
.pi3 .intro .video-container video {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.pi3 .item-btn {
  display: flex;
  margin: 30px auto;
  gap: 5%;
}
@media screen and (min-width: 768px) {
  .pi3 .item-btn {
    gap: 2%;
  }
}
.pi3 .item-btn__l, .pi3 .item-btn__r {
  color: #0A1317;
  display: block;
  cursor: pointer;
  background-color: #efefef;
  padding: 5% 3%;
  margin: 30px auto;
  position: relative;
}
.pi3 .item-btn__l::after, .pi3 .item-btn__r::after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 40px;
  background: url(/static/full/speedo/pi3/250415_fastskin-newcolor/images/arrow-down.svg) no-repeat;
  left: 50%;
  transform: translateX(-50%) scale(0.7, 0.7);
  bottom: -25px;
  transition: bottom 0.3s ease;
}
.pi3 .item-btn__l:hover, .pi3 .item-btn__r:hover {
  background-color: #eeeeee;
  transition: background-color 0.3s ease;
}
.pi3 .item-btn__l:hover .ttl-underline::after, .pi3 .item-btn__r:hover .ttl-underline::after {
  width: 150px;
  transition: width 0.5s ease;
}
.pi3 .item-btn__l:hover::after, .pi3 .item-btn__r:hover::after {
  bottom: -30px;
  transition: bottom 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pi3 .item {
    margin: 0 auto;
  }
}
.pi3 .item__ttl {
  background-color: #ebf9f9;
  color: #0A1317;
  padding: 60px 20px;
  margin: 90px auto 60px;
  position: relative;
}
.pi3 .item__ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ebf9f9;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.pi3 .item__ttl__inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .pi3 .item__ttl__inner {
    gap: 40px;
  }
  .pi3 .item__ttl__inner h2 {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .pi3 .item__models {
    display: flex;
    gap: 3%;
  }
}
.pi3 .item__models__listitem {
  margin: 0 auto 90px;
}
@media screen and (min-width: 768px) {
  .pi3 .item__models__listitem {
    margin-bottom: 0;
  }
}
.pi3 .item__models__listitem .model-img {
  display: flex;
  gap: 6%;
}
.pi3 .item__models__listitem .model-img a {
  border: 1px solid #efefef;
  width: 47%;
  overflow: hidden;
  position: relative;
  display: block;
}
.pi3 .item__models__listitem .model-img img {
  width: 100%;
  display: block;
  transform-origin: center center;
}
.pi3 .item__main {
  margin: 0 auto;
}
.pi3 .item__main h3 {
  font-weight: normal;
  position: relative;
  margin-bottom: 50px;
}
.pi3 .item__main h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #75d6d5;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.pi3 .item__main .graph-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 60px;
  padding: 10px 5%;
}
@media screen and (min-width: 768px) {
  .pi3 .item__main .graph-container {
    flex-direction: row;
    gap: 5%;
    max-width: 80%;
  }
}
.pi3 .item__main .graph-container a {
  margin: auto;
  border: 1px solid #eeeeee;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.pi3 .item .modal-btn-cont {
  margin: 30px auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .pi3 .item .modal-btn-cont {
    flex-direction: column;
  }
}
.pi3 .item .modal-btn-cont .btn-common2:visited, .pi3 .item .modal-btn-cont .btn-common3:visited {
  color: #FFF;
}
.pi3 .item .modal-btn-cont .btn-common2, .pi3 .item .modal-btn-cont .btn-common3 {
  border: none;
  background: white;
  width: 230px;
  color: #0A1317;
  padding: 10px 25px;
  font-style: normal;
  line-height: 24px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  display: block;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.pi3 .item .modal-btn-cont .btn-common2 svg, .pi3 .item .modal-btn-cont .btn-common3 svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0; /* アイコンの縮小を防止 */
}
.pi3 .item .modal-btn-cont .btn-common2:hover, .pi3 .item .modal-btn-cont .btn-common3:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
.pi3 .banner-section {
  margin: 90px auto;
}
.pi3 .banner-section h2 {
  margin-bottom: 60px;
}
.pi3 .banner-section a {
  display: block;
  width: 80%;
  max-width: 800px;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .font-xl {
    font-size: clamp(1.5rem, 1.107rem + 0.61vw, 1.875rem);
  }
  .font-l {
    font-size: clamp(1.125rem, 0.6rem + 0.82vw, 1.625rem);
  }
  .font-m {
    font-size: clamp(0.875rem, 0.482rem + 0.61vw, 1.25rem);
  }
  p {
    font-size: clamp(0.813rem, 0.616rem + 0.31vw, 1rem);
  }
  .font-s {
    font-size: clamp(0.625rem, 0.428rem + 0.31vw, 0.813rem);
  }
}/*# sourceMappingURL=style.css.map */