@charset "UTF-8";
@import url("global.css");
.introduction {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 70px;
  position: relative;
  z-index: 3;
}
.introduction .text {
  width: 30%;
  min-width: 340px;
}
.introduction .text .commitcatch {
  margin-bottom: 30px;
}
.introduction .text p:not([class]) {
  line-height: 2;
}
.introduction .symbol {
  width: 70%;
  margin-top: max(-110px,-10vw);
  margin-right: -2.5%;
}

.section {
  padding-block: 45px;
  border-top: #727E82 1px solid;
  display: flex;
  justify-content: space-between;
  column-gap: min(100px,6vw);
}
.section .sec_title {
  width: 250px;
  flex-shrink: 0;
  font-size: 1.26em;
  font-weight: 500;
}
.section .sec_title::before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: #727E82;
  opacity: .3;
  display: inline-block;
  margin-right: 12px;
  vertical-align: 2px;
}
.section .sec_body {
  flex-grow: 1;
  padding-block: 3px;
}
.section .sec_body ul.link {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px 30px;
}
.section .sec_body ul.link li a {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: .9em;
}
.section .sec_body ul.link li a span {
  display: block;
}
.section .sec_body ul.link li a .logo {
  width: 28px;
  height: 28px;
}
.section .sec_body ul.link li a .name {
  font-weight: 500;
}
.section .sec_body ul.link li a::after {
  content: "\f35d";
  display: block;
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  margin-top: 1px;
}
.section .sec_body .warranty {
  display: flex;
  justify-content: space-between;
  gap: 4%;
  margin-block: 50px 30px;
}
.section .sec_body .warranty figure {
  flex: 1;
}
.section .sec_body .warranty figure figcaption {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 25px;
}
.section .sec_body .warranty figure img {
  mix-blend-mode: multiply;
}
.section .sec_body ul.item {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  border: rgba(139, 131, 90, 0.2) 1px solid;
  padding: 30px 20px;
}
.section .sec_body ul.item li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  text-align: center;
  justify-content: center;
  position: relative;
  padding-block: 10px 0;
}
.section .sec_body ul.item li:last-of-type::before {
  display: none;
}
.section .sec_body ul.item li::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #8B835A;
  opacity: .3;
}
.section .sec_body ul.item li .icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}
.section .sec_body ul.item li .title {
  font-weight: 500;
  font-size: .85em;
  letter-spacing: 0;
  color: #8B835A;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-inline: -10px;
  word-break: keep-all;
  align-content: center;
}
.section .sec_body ul.item li .text {
  width: fit-content;
  text-align: left;
  font-size: .8em;
  line-height: 1.6;
  letter-spacing: 0;
  margin-inline: auto;
}
.section .sec_body ul.notice {
  margin-top: 30px;
  font-size: .85em;
}
.section .sec_body ul.notice li {
  line-height: 1.5;
  margin-top: 5px;
  text-indent: -1.1em;
  padding-left: 1.1em;
}
.section .sec_body ul.notice li::before {
  content: "※";
  font-weight: 700;
  padding-right: 2px;
  display: inline-block;
  text-indent: 0;
  color: #8B835A;
}

.iso {
  background-color: #E9E9E5;
  padding-block: 60px;
  margin-top: 80px;
}
.iso .wrapper {
  display: flex;
  gap: min(60px,5vw);
  align-items: center;
}
.iso .image {
  width: 480px;
  flex-shrink: 0;
  max-width: 45%;
}
.iso .text {
  flex-grow: 1;
}
.iso .text .title {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.iso .text .title strong {
  display: inline-block;
  font-weight: 500;
  font-size: 1.2em;
  padding-right: 3px;
  vertical-align: -1px;
  text-decoration-color: rgba(62, 68, 67, 0.3);
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
.iso .text p:not([class]) {
  margin-top: 20px;
}

.commitnavi {
  margin-top: 0;
}

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

 Responsive-Breakpoint-1 ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  .section .sec_body ul.item {
    grid-template-columns: repeat(3, 1fr);
  }
  .section .sec_body ul.item li {
    padding-block: 10px 10px;
  }
  .section .sec_body ul.item li:nth-of-type(3n)::before {
    display: none;
  }
  .section .sec_body ul.item li:nth-last-of-type(-n+3)::after {
    display: none;
  }
  .section .sec_body ul.item li::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #8B835A;
    opacity: 0.3;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  .introduction {
    display: block;
    margin-bottom: 60px;
  }
  .introduction .text {
    width: auto;
  }
  .introduction .text .commitcatch {
    margin-bottom: 20px;
  }
  .introduction .symbol {
    width: auto;
    max-width: 640px;
    margin: -100px -3vw -10px auto;
  }

  .section {
    padding-block: 40px;
    display: block;
  }
  .section .sec_title {
    width: auto;
    margin-bottom: 20px;
  }
  .section .sec_body {
    padding-block: 0;
  }
  .section .sec_body ul.item {
    gap: 30px 40px;
  }
  .section .sec_body ul.item li::before {
    right: -20px;
  }
  .section .sec_body ul.item li .title {
    font-size: .95em;
  }

  .iso {
    padding-block: 50px;
    margin-top: 60px;
  }
  .iso .wrapper {
    align-items: stretch;
  }
  .iso .text {
    padding-block: 10px 20px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  .introduction {
    margin-bottom: 40px;
  }
  .introduction .text .commitcatch {
    margin-bottom: 20px;
  }
  .introduction .text p:not([class]) {
    line-height: inherit;
  }
  .introduction .symbol {
    max-width: none;
    margin: -70px -5vw 0;
  }

  .section {
    padding-block: 35px 40px;
  }
  .section .sec_title {
    margin-bottom: 15px;
  }
  .section .sec_title::before {
    width: 10px;
    height: 10px;
    margin-right: 10px;
    vertical-align: 1px;
  }
  .section .sec_body ul.link {
    margin-top: 20px;
    gap: 6px 20px;
  }
  .section .sec_body ul.link li a .logo {
    width: 20px;
    height: 20px;
  }
  .section .sec_body .warranty {
    display: block;
    margin-block: 0 30px;
  }
  .section .sec_body .warranty figure {
    margin-top: 40px;
  }
  .section .sec_body .warranty figure figcaption {
    margin-bottom: 15px;
  }
  .section .sec_body .warranty figure img {
    width: 80%;
    display: block;
    margin-inline: auto;
  }
  .section .sec_body .warranty figure:nth-of-type(2) figcaption {
    margin-bottom: 0;
  }
  .section .sec_body ul.item {
    gap: 30px 36px;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
    margin-top: 30px;
  }
  .section .sec_body ul.item li {
    padding-block: 10px 10px;
  }
  .section .sec_body ul.item li:nth-of-type(3n)::before {
    display: block;
  }
  .section .sec_body ul.item li:nth-of-type(2n)::before {
    display: none;
  }
  .section .sec_body ul.item li:nth-last-of-type(3)::after {
    display: block;
  }
  .section .sec_body ul.item li::before {
    right: -18px;
  }
  .section .sec_body ul.item li::after {
    bottom: -15px;
  }
  .section .sec_body ul.item li .icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 5px;
  }
  .section .sec_body ul.item li .title {
    margin-bottom: 0;
  }
  .section .sec_body ul.item li .text {
    font-size: .85em;
  }
  .section .sec_body ul.notice li {
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  .section .sec_body ul.notice li::before {
    padding-right: 2px;
  }

  .iso {
    padding-block: 40px;
    margin-top: 50px;
  }
  .iso .wrapper {
    display: block;
  }
  .iso .image {
    width: auto;
    max-width: none;
    margin-inline: 5vw;
    margin-bottom: 30px;
  }
  .iso .text {
    padding-block: 0;
  }
  .iso .text .title {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  .iso .text .title strong {
    vertical-align: -1px;
  }
  .iso .text p:not([class]) {
    margin-top: 1em;
  }
}

/*# sourceMappingURL=after.css.map */
