@charset "utf-8";

html { scroll-behavior: smooth; }
#globalMain, #globalContents{ overflow: visible; }
#globalWrapper { box-sizing: border-box; }


/* Variables & Setup -------------------- */
:root {
  scroll-padding: 100px;
}

.pt-container {
  container-type: inline-size;
  container-name: pt-container;
  --color-orange:#de800a;
}

.pt-wrapper {
  container-type: inline-size;
  container-name: pt-wrapper;
  font-size:16px;
  line-height:1.7;
}

.pt-wrapper img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}

.pt-top h2 {
  font-weight:bold;
  text-align:center;
  font-size:30px;
  margin-top:.5em;
}
.pt-top p {
  padding: 1em 1em 0;
  /* background: wheat; */
}

.pt-wrapper * { box-sizing: border-box; }

.pt-wrapper section > h2{
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  font-family: arial;
  margin: 1.6em 0 0.8em;
  line-height: 1.4;
  display: grid;
  gap: 10px;
  border-top: 1px dotted #909090;
  padding-top: 1.2em;
  color: #242424;
}

.pt-wrapper h2 span {
  text-align:center;
  font-size: 18px;
}

.pt-products > ul {
    display: flex;
    --gap:20px;
    gap: var(--gap);
    justify-content: center;
    flex-wrap: wrap;
}

.pt-products > ul > li {
  display: flex;
  flex-direction: column;
  background: whitesmoke;
  padding: 20px;
  height: auto;
}

.pt-products > ul > li img {
  max-height: 250px;
  aspect-ratio: 2/1;
}

.bass-kind .pt-products > ul > li {
  width: 40%;
  flex: auto;
  max-width: 600px;
}

.pt-products > ul > li h3 {
  text-align:center;
  font-size: 18px;
  font-weight: bold;
  margin:.5em 0;
  color: #242424;
}

.pt-products > ul > li > div {
  margin-bottom:1.5em;
  aspect-ratio: 180/100;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pt-products > ul > li > p {
  margin-bottom: 1.5em;
  text-align: left;
}

.pt-products > ul > li > a {
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    display: block;
    max-width: 500px;
    margin: auto auto 20px;
    text-align: center;
    padding: 5px 15px;
    font-weight: bold;
    transition:.4s;
  &:hover {
    background: var(--color-orange);
    color:white;
    text-decoration:none;
  }
}

.pt-about {
  margin-top: 50px;
}

.pt-about > div:first-child {
  background: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 30px 30px 30px 50px;
  width: 100%;
}

.pt-about > div:first-child > div:first-child {
  flex:1;
  word-break: auto-phrase;
}

.pt-about > div:first-child > div:first-child h2 {
  font-weight:bold;
  font-size:24px;
  display:flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1em;
}

.pt-about > div:first-child > div:first-child h2 img {
  height:30px;
}

.pt-about > div:first-child > div:last-child {
  width: 280px;
}

.pt-about > div:first-child > div:first-child a {
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    display: block;
    max-width: 400px;
    margin: 35px auto 20px;
    text-align: center;
    padding: 5px 15px;
    font-weight: bold;
    transition:.4s;
  &:hover {
    background: var(--color-orange);
    color:white;
    text-decoration:none;
  }
}

/*========================= */


.pt-wrapper *:is(.pt-carousel) .swiper-sp:not(.pt-products) .swiper-slide a:link,
.pt-wrapper *:is(.pt-carousel) .swiper-sp:not(.pt-products) .swiper-slide a:visited {
  color: black;
}

li a.pt-movie {
  display: block;
  position: relative;
}

li a.pt-movie::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  top: 0;
  left: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="100%" version="1.1" viewBox="0 0 68 48" width="100%" fill="%23ffffff"><path d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z" fill="%23f00"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>') no-repeat center center;
  background-size: 25%;
}

.swiper-slide img {
    width: 100%;
}

.swiper-slide p {
  margin-top: .5em;
  text-align: center;
  word-break:auto-phrase;
}

/*========================= */

.bass-color > ul {
  display:grid;
    grid-template-columns: repeat(6, 1fr);
    gap:20px;
}

.bass-color > ul li {
  border-radius:20px;
  overflow: hidden;
  box-shadow: 0px 1px 7px #00000094;
}

.bass-color > ul > li > a {
  display:flex;
  aspect-ratio:1/1;
  background:red;
  justify-content:center;
  align-items:center;
  color:white;
  padding: 6%;
  box-sizing: border-box;
  word-break: auto-phrase;
}

.bass-color > ul li.bass-sunburst a {
  background: radial-gradient(
    circle at 50% 50%,
    #ffd04a 0%,
    #f5a800 18%,
    #e07800 38%,
    #c05800 48%,
    #7a2800 70%,
    #3a1200 100%
  );
}

.bass-color > ul li.bass-blue a {
  background: linear-gradient(149deg, #5db8e8 0%, #2e88cc 28%, #1a6ab0 49%, #1560a8 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    inset 0 -2px 4px rgba(0,0,60,0.25),
    0 4px 12px rgba(0,60,120,0.4);
}

.bass-color > ul li.bass-red a {
  background: linear-gradient(149deg, #e85d5d 0%, #cc2e2e 28%, #b01a1a 49%, #a81515 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    inset 0 -2px 4px rgba(0,0,60,0.25),
    0 4px 12px rgba(0,60,120,0.4);
}


.bass-color > ul li.bass-white a {background: #fff; color:black;}
.bass-color > ul li.bass-black a {background: #000;}
.bass-color > ul li.bass-green a {background: #317045;}
.bass-color > ul li.bass-gray a {background: #707b81;}
.bass-color > ul li.bass-orange a {background: #fb6800;}
.bass-color > ul li.bass-pink a {background: #f55c9d;}
.bass-color > ul li.bass-purple a {background: #5d1f80;}
.bass-color > ul li.bass-yellow a {background: #f9d706;}


.bass-color > ul li.bass-gold a {
  background: linear-gradient(
    105deg,
    #c8a84b 0%,
    #f0d060 18%,
    #e8c840 30%,
    #b89030 42%,
    #d4b048 52%,
    #f5d855 62%,
    #e0c040 72%,
    #a87c20 82%,
    #c8a840 90%,
    #f0d060 100%
  );
}

.pt-inspection > div {
  background: whitesmoke url(../img/bg_inspection2.png) center right / auto 100% no-repeat;
  --padding-width:30px;
  padding: var(--padding-width) 40% var(--padding-width) var(--padding-width);
  box-sizing: border-box;
  margin: 1em 0;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
}

.pt-budget ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 1.8em auto 3.7em;
    max-width: 820px;
}

.pt-budget ul li a {
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    display: block;
    max-width: 500px;
    margin: auto auto 0px;
    text-align: center;
    padding: 10px 15px;
    font-weight: bold;
    transition:.4s;
  &:hover {
    background: var(--color-orange);
    color:white;
    text-decoration:none;
  }
}

.pt-banner {
  margin: 2em 0;
}


@media (min-width: 900px) {
  .swiper-sp .swiper-wrapper {
    display: flex;
    gap: 32px;
  }
  .swiper-sp .swiper-slide {
    width: calc((100% - 32px) / 2);
  }
  .swiper-sp.swiper-sp3 .swiper-slide {
    width: calc((100% - 64px) / 3);
  }
  .swiper-sp *:is(.swiper-button-prev, .swiper-button-next) {
  display:none;
  }
}

@media (max-width: 899px) {
  .swiper-sp .swiper-wrapper {
    flex-wrap: unset;
    justify-content: normal;
    gap: 0;
  }
}


@container pt-container (max-width: 1000px){
  .bass-color > ul {
  font-size:12px;
  }
}

@container pt-container (max-width: 800px){
  .pt-feature li {
    font-size:12px;
  }

  .pt-top p {
    padding: 1.5em 1.5em 0;
  }

  .pt-wrapper {
    font-size: 14px;
  }

  .bass-kind .pt-products > ul {
    flex-direction: column;
    margin: 15px;
  }

  .bass-kind .pt-products > ul > li {
    width: 100%;
    max-width: none;
  }

  .pt-wrapper section > h2 {
    font-size: 22px;
  }

  .pt-products > ul > li > a {
    width: 300px;
  }

  .swiper {
    padding: 0 1.5em;
  }

  .pt-about > div:first-child {
  flex-direction: column;
  padding: 3.5em 1.5em 1.5em;
  }

  .pt-about > div:first-child > div:first-child h2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
    font-weight: bold;
    margin-bottom: 1em;
  }

  .pt-about > div:first-child > div:first-child h2 img {
    height: 25px;
  }

  .bass-color > ul {
  grid-template-columns: repeat(4, 1fr);
  margin:15px;
  }

  .pt-inspection > div {
    padding: 47% 20px 0;
    background: linear-gradient(to top, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 55%), url(../img/bg_inspection2.png) center top / 100% no-repeat, #d5d5d5;
  }

  .pt-wrapper h2 span {
    font-size: 14px;
    word-break: auto-phrase;
    line-height: 1.7;
  }

  .pt-budget ul {
    grid-template-columns: repeat(2, 1fr);
    margin: 15px;
    font-size: 14px;
  }

}

@container pt-container (max-width: 500px){
  .bass-color > ul {
  grid-template-columns: repeat(3, 1fr);
  }
}


@container pt-container (max-width: 400px){
  .bass-color > ul {
  gap: 10px;
  }
}