@import url("global.css");
.introduction {
  position: relative;
  z-index: 1;
  clip-path: inset(0);
  margin-bottom: 60px;
}
.introduction .wrapper {
  container-type: inline-size;
}
.introduction .main {
  color: #FFF;
  padding-block: 100px;
  max-width: 50%;
}
@container (width <= 1320px) {
  .introduction .main {
    max-width: 54%;
  }
}
.introduction .main .catch {
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 700;
  font-size: clamp(24px, 3.3vw, 36px);
}
.introduction .main .text {
  text-align: justify;
  font-size: 1.0625em;
}
.introduction .main .text > p + p {
  margin-top: 1em;
}
.introduction .bg {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100svh;
}
.introduction .bg figure {
  width: 100%;
  height: 100%;
  position: relative;
}
.introduction .bg figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 38, 0.4);
}

#bodyarea {
  counter-reset: listnum 0;
}

.section {
  margin-block: 110px;
  counter-increment: listnum 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section .sec_img {
  width: 38.65vw;
  flex-shrink: 0;
}
.section .sec_img figure {
  width: 100%;
  height: 100%;
}
.section .sec_img figure img {
  -webkit-borde-top-right-radius: var(--radius-large);
  border-top-right-radius: var(--radius-large);
  -webkit-borde-bottom-right-radius: var(--radius-large);
  border-bottom-right-radius: var(--radius-large);
  overflow: hidden;
}
.section .sec_body {
  padding: 40px calc( ( 100vw - 1420px ) / 2 ) 40px 60px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.section .sec_body .titlebox {
  display: flex;
  font-weight: 600;
  margin-bottom: 20px;
}
.section .sec_body .titlebox::before {
  content: "0" counter(listnum);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 10px;
  color: #FFF;
  background-color: #262626;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  overflow: hidden;
  font-family: "Barlow Semi Condensed", "LINE Seed JP", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
}
.section .sec_body .titlebox .sec_title {
  padding: 5px 0 5px 1.2vw;
}
.section .sec_body .titlebox .sec_title span {
  display: block;
  line-height: 1.2;
}
.section .sec_body .titlebox .sec_title span.ja {
  font-size: clamp(21px, 2.5vw, 36px);
  font-weight: 700;
}
.section .sec_body .titlebox .sec_title span.en {
  text-indent: .3em;
  font-size: clamp(13px, 1.5vw, 18px);
  display: flex;
  align-items: center;
  color: #D5501E;
}
.section .sec_body .titlebox .sec_title span.en::before {
  content: "(";
  display: block;
}
.section .sec_body .titlebox .sec_title span.en::after {
  content: ")";
  display: block;
}
.section .sec_body .block_title {
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: clamp(19px, 2.3vw, 27px);
}
.section .sec_body .text {
  text-align: justify;
}
.section .sec_body .text > p + p {
  margin-top: 1em;
}

#sec_warranty.section .sec_body .pointbox {
  margin-top: 30px;
}
#sec_warranty.section .sec_body .pointbox ul {
  background-color: #F5F5F5;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  padding: 35px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#sec_warranty.section .sec_body .pointbox ul li {
  border-bottom: #A9A9A9 solid 1px;
  padding-block: 25px 0;
}
#sec_warranty.section .sec_body .pointbox ul li:nth-child(2n+2) {
  padding-inline: 35px 0;
}
#sec_warranty.section .sec_body .pointbox ul li:nth-child(1), #sec_warranty.section .sec_body .pointbox ul li:nth-child(2) {
  padding-block: 0 35px;
}
#sec_warranty.section .sec_body .pointbox ul li:nth-child(2n+1) {
  border-right: #A9A9A9 solid 1px;
  padding-inline: 0 40px;
}
#sec_warranty.section .sec_body .pointbox ul li:nth-last-child(1) {
  border-bottom: none;
}
#sec_warranty.section .sec_body .pointbox ul li .h {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px);
}
#sec_warranty.section .sec_body .pointbox ul li .h::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background-color: #D5501E;
}
#sec_warranty.section .sec_body .pointbox ul li .detail {
  text-align: justify;
}
#sec_warranty.section .sec_body .pointbox ul li .detail > p {
  font-size: .93em;
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1600px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1600px) {
  .section {
    align-items: stretch;
  }
  .section .sec_body {
    padding: 40px 50px 40px 35px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 1300px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  .introduction .main {
    padding-block: 80px;
    max-width: 100%;
  }

  .section {
    margin-block: 60px;
  }
  .section .sec_img {
    width: 45vw;
  }
  .section .sec_body {
    padding: 25px 5vw 25px 4vw;
  }
  .section .sec_body .titlebox::before {
    padding-inline: 8px;
  }
  .section .sec_body .block_title {
    margin-bottom: 10px;
  }
  .section .sec_body .text > p br {
    display: none;
  }

  #sec_warranty.section .sec_body .pointbox {
    margin-top: 25px;
  }
  #sec_warranty.section .sec_body .pointbox ul {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 2vw;
    display: block;
  }
  #sec_warranty.section .sec_body .pointbox ul li {
    padding: 20px 1vw 25px;
  }
  #sec_warranty.section .sec_body .pointbox ul li:nth-child(2n+1) {
    border-right: none;
  }
  #sec_warranty.section .sec_body .pointbox ul li:nth-child(1), #sec_warranty.section .sec_body .pointbox ul li:nth-child(2), #sec_warranty.section .sec_body .pointbox ul li:nth-child(2n+1), #sec_warranty.section .sec_body .pointbox ul li:nth-child(2n+2) {
    padding: 20px 1vw 25px;
  }
  #sec_warranty.section .sec_body .pointbox ul li:nth-last-child(2) {
    border-bottom: #A9A9A9 solid 1px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  .section {
    margin-top: 65px;
  }

  .introduction {
    margin-bottom: 45px;
  }
  .introduction .main {
    padding-block: 65px;
  }
  .introduction .main .catch {
    font-size: min(5vw,22px);
  }
  .introduction .bg figure::before {
    background-color: rgba(38, 38, 38, 0.7);
  }

  .section {
    margin-block: 65px;
    display: block;
  }
  .section .sec_img {
    width: 100%;
  }
  .section .sec_img figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5 / 1;
  }
  .section .sec_img figure img {
    -webkit-borde-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-borde-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .section .sec_body {
    padding: 30px 5vw 0;
    width: auto;
  }
  .section .sec_body .titlebox .sec_title {
    padding: 5px 0 5px 2vw;
  }

  #sec_warranty.section .sec_body .pointbox {
    margin-top: 20px;
  }
  #sec_warranty.section .sec_body .pointbox ul {
    -webkit-border-radius: 7px;
    border-radius: 7px;
    padding-inline: 5vw;
  }
  #sec_warranty.section .sec_body .pointbox ul li .h {
    column-gap: 5px;
  }
  #sec_warranty.section .sec_body .pointbox ul li .h::before {
    width: 6px;
    height: 6px;
  }
}
