@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

p {
  font-size: 1.6rem;
  line-height: 160%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2%;
}

.section-title {
  text-align: center;
  padding-block: 50px;
}
.section-title .en {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  padding-block: 10px;
}
.section-title .ja {
  font-size: 32px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0;
}

p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.button {
  max-width: 1200px;
  background: rgb(32, 32, 32);
  border-radius: 50px;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .button {
    max-width: 90%;
    margin: 0 20px;
  }
}
.button a {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.button a .triangle {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  margin-left: 12px;
  position: relative;
}
.button a .triangle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgb(51, 51, 51);
}

.vertical {
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  z-index: 10;
  top: 120px;
}
.vertical span {
  writing-mode: vertical-rl;
  color: rgb(207, 207, 207);
  position: relative;
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 100%;
}
.vertical span::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.4);
}

header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 8vh;
  background-color: #14120F;
  position: fixed;
  top: 0;
  z-index: 100;
  opacity: 0.9;
  /*============
  nav
  =============*/
}
header nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
  z-index: 15;
}
header nav .inner {
  padding: 25px;
}
header nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav .inner ul li {
  position: relative;
  margin: 0;
}
header nav .inner ul li a {
  display: block;
  color: white;
  font-size: 20px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
  text-align: center;
}
header nav .inner ul li a:hover {
  background: #e4e4e4;
  color: #202020;
}
header .ham {
  display: block;
  position: fixed;
  top: 2%;
  right: 0;
  width: 60px;
  height: 30px;
  transform: translate(0, 0);
  transition: all 0.5s;
  cursor: pointer;
  z-index: 10;
}
header .ham span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: #FFFFFF;
  transition: all 0.5s;
}
header .ham span:nth-child(1) {
  top: 5px;
  width: 40px;
}
header .ham span:nth-child(2) {
  top: 15px;
  width: 40px;
}
header .ham span:nth-child(3) {
  top: 25px;
  width: 40px;
}
header .mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202020;
  opacity: 0.8;
  z-index: 10;
  cursor: pointer;
  transition: all 0.5s;
}

.mask {
  width: 100%;
  height: 100%;
  background-color: #202020;
  position: fixed;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
}

.open nav {
  left: 50%;
  transform: translateX(-50%);
}
.open .ham {
  right: 0;
}
.open .ham span {
  background-color: #FFFFFF;
  width: 30px;
}
.open .ham span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  animation: none;
}
.open .ham span:nth-child(2) {
  opacity: 0;
  animation: none;
}
.open .ham span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  animation: none;
}
.open .mask {
  opacity: 0.5;
  visibility: visible;
}

.wave {
  position: relative;
}

.mainvisial {
  padding-top: 80px;
  height: 90vh;
  position: relative;
  overflow: hidden;
  /* 背景スライダー */
}
.mainvisial .bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mainvisial .bg-track {
  display: flex;
  height: 100%;
  width: 600vw;
  animation: slide-bg 60s linear infinite;
}
.mainvisial .bg-track img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.mainvisial .wave {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.mainvisial .wrapper {
  position: relative;
  z-index: 2;
}
.mainvisial h1 {
  font-family: "Inria Serif";
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 100px;
  text-align: center;
}
.mainvisial p span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 3px;
  margin-block: 10px;
  padding: 4px 10px;
  padding-inline: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 100%;
}
.mainvisial p span:nth-of-type(3) {
  font-size: 2rem;
}
.mainvisial .inner {
  position: absolute;
  bottom: -200%;
  left: 0;
  width: 100%;
  text-align: center;
}
.mainvisial .inner p {
  position: relative;
  text-align: center;
  display: inline-block;
  font-family: "Noto Sans JP";
  text-shadow: 4px 4px 10px rgb(0, 0, 0);
  padding-bottom: 10px;
  -webkit-text-stroke: 2px #202020;
  paint-order: stroke fill;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
}
.mainvisial .inner p::before, .mainvisial .inner p::after {
  content: "";
  position: absolute;
  bottom: 50%;
  width: 17px;
  height: 2px;
  background-color: white;
}
.mainvisial .inner p::before {
  left: -20px;
  transform: translateY(50%) rotate(60deg);
}
.mainvisial .inner p::after {
  right: -20px;
  transform: translateY(50%) rotate(-60deg);
}

@keyframes slide-bg {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-300vw);
  }
}
.contents {
  background-color: #202020;
  padding-bottom: 40px;
}
.contents .section-title h2 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.3);
}
.contents .section-title h2 .line {
  white-space: nowrap;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  background-color: #FFFFFF;
  color: #202020;
  text-align: center;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.contents .section-title h2 .line .small {
  font-size: 2.4rem;
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0;
}
.contents .container {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #FFFFFF;
}
.contents .container h3 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 10;
}
.contents .container h3 span {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 35px;
  font-family: "Noto Serif JP";
  background-color: rgba(255, 255, 255, 0.68);
  color: #202020;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 10px;
  text-align: left;
  letter-spacing: 3px;
}
.contents .container .images {
  display: flex;
  margin-top: -40px;
  width: 100%;
  position: relative;
}
.contents .container .images .left {
  margin-top: 100px;
  margin-right: -150px;
  flex-grow: 1;
  position: relative;
}
.contents .container .images .right {
  z-index: 5;
  flex-grow: 1;
  position: relative;
}
.contents .container .images img {
  width: 100%;
  height: auto;
}
.contents p {
  padding-block: 20px;
}
.contents .button {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(153, 153, 153) 100%);
}
.contents .button a {
  color: #202020;
}
.contents .button .triangle {
  background-color: #333333;
}
.contents .button .triangle::before {
  border-left: 9px solid #ffffff;
}

.about {
  position: relative;
}
.about .container {
  background-color: #202020;
}
.about .container h2 {
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 100%;
}
.about .container h2 span {
  font-size: 2.4rem;
}
.about .container h3 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 0 80px 5px;
}
.about .container h3 span {
  font-size: 1.8rem;
  background-color: #FFFFFF;
  color: #202020;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
}
.about .about-img {
  margin-top: -50px;
}
.about .about-img img {
  max-width: 80%;
}
.about p {
  color: #202020;
  font-weight: 600;
  padding: 20px 0 50px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 24px;
}

.before-after {
  background-color: #202020;
  padding-bottom: 40px;
}
.before-after .section-title {
  padding: 40px;
}
.before-after .section-title .ja {
  position: relative;
}
.before-after .section-title .ja::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 28px;
  background-color: white;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.before-after .casetext {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 24px;
  padding: 20px 0;
  letter-spacing: 0;
}
.before-after .image-gallery {
  position: relative;
}
.before-after .image-gallery .scroll-text {
  position: absolute;
  right: 5%;
  top: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 100%;
  font-family: "Noto Serif JP";
  display: none;
}
@media (max-width: 768px) {
  .before-after .image-gallery .scroll-text {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.before-after .image-gallery .scroll-text span {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .before-after .image-gallery {
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
}
.before-after .image-gallery ul {
  display: flex;
  gap: 50px;
  overflow-x: auto;
}
.before-after .image-gallery ul li {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .before-after .image-gallery ul li {
    scroll-snap-align: start;
  }
}
.before-after .image-gallery ul li img {
  width: 100%;
  height: 400px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .before-after .image-gallery ul li img {
    width: 80vw;
  }
}
.before-after h3 {
  margin-block: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.before-after h3 span {
  background-color: #FFFFFF;
  color: #202020;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
}
.before-after .before-after-img {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid white;
}
.before-after .before-after-img .left {
  width: 50%;
  position: relative;
}
.before-after .before-after-img .left img {
  width: 100%;
  height: auto;
  z-index: 10;
}
.before-after .before-after-img .left .left-text {
  position: absolute;
  top: 5%;
  left: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 1;
}
.before-after .before-after-img .left .left-text::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #FFFFFF;
  margin-right: 8px;
}
.before-after .before-after-img .left .left-text span {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
}
.before-after .before-after-img .right {
  width: 50%;
  margin-top: 98px;
  margin-bottom: 50px;
  position: relative;
}
.before-after .before-after-img .right img {
  width: 100%;
  height: auto;
  z-index: 10;
}
.before-after .before-after-img .right .right-text {
  position: absolute;
  bottom: 10%;
  right: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.before-after .before-after-img .right .right-text span {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
}
.before-after .before-after-img .right .right-text::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #FFFFFF;
  margin-left: 8px;
}
.before-after .container {
  display: flex;
}
.before-after .container .inner {
  margin-top: 10px;
  width: 50%;
}
.before-after .container .inner .title {
  display: block;
  color: #202020;
}
.before-after .container .inner .title span {
  background-color: #FFFFFF;
  padding: 2px 10px;
}

.voice {
  background-color: rgba(32, 32, 32, 0.83);
  position: relative;
}
.voice .ja {
  color: #FFFFFF;
}
.voice h3 {
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.voice h3 span {
  background-color: #FFFFFF;
  color: #202020;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 3px;
  padding-inline: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 24px;
}
.voice h3 span:nth-of-type(1) {
  padding: 4px 10px;
}
.voice h3 span:nth-of-type(2) {
  padding: 4px 15px 4px 4px;
}
.voice h3 span:nth-of-type(3) {
  padding: 4px 10px;
}
.voice .voice-card {
  color: #202020;
  position: relative;
}
.voice .text-wrapper {
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}
.voice .slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 0 10px;
}
@media (max-width: 768px) {
  .voice .slider-container {
    overflow: hidden;
  }
}
.voice .text-slider {
  display: flex;
  list-style: none;
  transition: transform 0.5s ease;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .voice .text-slider {
    gap: 0;
  }
}
.voice .text-slider li {
  background-color: #ffffff;
  padding: 30px;
  min-width: calc(33.333% - 14px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .voice .text-slider li {
    min-width: 100%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
}
.voice .text-slider li h4 {
  margin-block: 20px;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 24px;
}
.voice .text-slider li p {
  color: #202020;
  flex-grow: 1;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 24px;
}
.voice .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 10;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .voice .slider-btn {
    display: flex;
  }
}
@media (max-width: 768px) {
  .voice .slider-btn {
    width: 30px;
    height: 30px;
  }
  .voice .slider-btn img {
    width: 20px;
    height: auto;
  }
}
.voice .slider-btn.prev {
  left: 0;
}
.voice .slider-btn.next {
  right: 0;
}
.voice .slider-btn:disabled {
  cursor: not-allowed;
}

.price {
  background-color: rgba(32, 32, 32, 0.83);
  padding-bottom: 40px;
  position: relative;
}
.price p {
  font-size: 1.8rem;
  padding: 20px 0;
  font-weight: 700;
}
.price .button {
  background-color: #FFFFFF;
}
.price .button a {
  color: #202020;
}
.price .button .triangle {
  background-color: black;
}
.price .button .triangle::before {
  border-left: 9px solid #ffffff;
}

.flow {
  background-color: #202020;
  padding-bottom: 40px;
}
.flow .section-title .ja {
  position: relative;
}
.flow .section-title .ja::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 28px;
  background-color: white;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.flow .process {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.flow .process::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 90%;
  background-color: white;
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: -1;
}
.flow .process .step {
  display: flex;
  width: 100%;
  margin-block: 20px;
}
.flow .process .step .num {
  width: 70px;
  background: #c8c8c8;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP";
}
.flow .process .step p {
  flex: 1;
  margin: 0;
  padding: 15px 20px;
  background: #ffffff;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
}

.guarantee {
  padding-bottom: 40px;
}
.guarantee .section-title {
  padding-block: 80px;
  background-color: #202020;
}
.guarantee .section-title .ja span {
  background-color: #FFFFFF;
  color: #202020;
  padding: 5px 20px;
  font-size: 3.6rem;
}
.guarantee .guarantee-img {
  margin: -40px 0 0 0;
  width: 80%;
  height: 50%;
}
.guarantee .guarantee-img img {
  width: 100%;
}
.guarantee p {
  color: #202020;
  font-weight: 600;
  padding-block: 16px;
}
.guarantee p span {
  font-size: 2.4rem;
  font-weight: 700;
  font-size: 16px;
}

.qa {
  background: linear-gradient(180deg, rgb(32, 32, 32) 0%, rgb(134, 134, 134) 100%);
  padding-bottom: 50px;
}
.qa .section-title {
  padding: 50px;
}
.qa .section-title .ja {
  position: relative;
}
.qa .section-title .ja::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 28px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.qa .accordion-area li {
  padding-block: 20px;
  margin-bottom: 10px;
  background-color: #FFFFFF;
  color: #202020;
}
.qa .accordion-area li .title {
  display: flex;
  align-items: center;
  padding: 1% 10% 1% 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.qa .accordion-area li .title span {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  text-align: center;
  color: rgb(149, 149, 149);
}
.qa .accordion-area li .title p {
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 24px;
  color: #202020;
}
.qa .accordion-area li .title::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid rgb(0, 0, 0);
  transition: transform 0.3s ease;
}
.qa .accordion-area li .title.close {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.qa .accordion-area li .title.close::before {
  transform: translateY(-50%) rotate(180deg);
}
.qa .accordion-area li .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  z-index: 1;
}
.qa .accordion-area li .title.close::after {
  transform: translateY(-50%) rotate(-180deg);
}
.qa .accordion-area li .faq-box {
  display: none;
  padding: 1% 10% 1% 20px;
}
.qa .accordion-area li .faq-box .text-wrapper {
  display: flex;
  color: #202020;
}
.qa .accordion-area li .faq-box .text-wrapper span {
  color: rgb(149, 149, 149);
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.qa .accordion-area li .faq-box .text-wrapper p {
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 100%;
  padding-top: 5px;
  color: #202020;
}
.qa .accordion-area li .faq-box .text-wrapper ol {
  margin: 0;
  padding-left: 20px;
}
.qa .accordion-area li .faq-box .text-wrapper ol li {
  list-style-type: decimal;
  padding-top: 5px;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 100%;
  padding-top: 5px;
}
.qa .accordion-area li .faq-box .text-wrapper ol li:last-child {
  margin-bottom: 0;
}
.qa .button {
  margin-top: 50px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(153, 153, 153) 100%);
}
.qa .button a {
  color: #202020;
}
.qa .button .triangle {
  background-color: #202020;
}
.qa .button .triangle::before {
  border-left: 9px solid #FFFFFF;
}

.warranty-info {
  background-color: rgb(51, 51, 51);
  padding-bottom: 40px;
}
.warranty-info .section-title .ja {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
}
.warranty-info .container {
  background-color: #FFFFFF;
  padding: 15px;
}
.warranty-info .container .text {
  padding-bottom: 10px;
}
.warranty-info .container .text p {
  color: #202020;
  font-weight: 700;
  font-size: 1.6rem;
}
.warranty-info .container .text p span {
  background-color: #202020;
  color: #FFFFFF;
  font-size: 1.6rem;
}
.warranty-info .container .inner .title {
  font-weight: 700;
}
.warranty-info .container .inner .title span {
  padding: 4px 20px;
  font-size: 1.6rem;
  background-color: #202020;
  color: #FFFFFF;
}
.warranty-info .container .inner ul {
  padding: 10px 0 20px;
}
.warranty-info .container .inner ul li {
  color: #202020;
  list-style: disc inside;
  padding-left: 15px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 24px;
}
.warranty-info .container .button a {
  font-weight: 700;
  font-size: 2rem;
}

.company {
  background-color: #202020;
  padding-bottom: 40px;
}
.company .container {
  margin-block: 20px;
}
.company .container dl {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding-left: 15px;
}
.company .container dl dt {
  color: #959595;
  padding-top: 20px;
  padding-bottom: 5px;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0.18em;
}
.company .container dl dd {
  border-bottom: 1px solid #202020;
  color: #202020;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0.18em;
}
.company .button {
  background-color: #FFFFFF;
}
.company .button a {
  color: #202020;
}
.company .button .triangle {
  background-color: #202020;
}
.company .button .triangle::before {
  border-left: 9px solid #FFFFFF;
}/*# sourceMappingURL=style.css.map */