/* 内部リンク */
html {
	scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 750px) {
  html {
    scroll-padding-top: 44px;
  }
}
.internal-link {
	width: 100%;
	background-color: #fff;
	padding: 18px 0;
	font-size: 1.6rem;
	font-weight: 500;
}
.internal-link ul {
	display:flex;
	justify-content: center;
}
.internal-link ul li {
	padding-right: 80px;
}
.internal-link ul li:last-of-child {
	padding-right: 0;
}
.internal-link ul li a i {
	margin-right: 8px;
}
@media (max-width: 750px) {
	.internal-link {

		font-size: 1.4rem;
	}
	.internal-link ul li {
		padding-right: 40px;
	}

	.internal-link ul li img{
		width: 15px;
	}
}

/* このページのcssには.crf-プレフィックスをつける */

/* common */
.crf {
  background: url(../img/bg_paper.jpg);
}
.crf-sp-only {
  display: none;
}
@media (max-width: 750px) {
  .crf-sp-only {
    display: block;
  }
  br.crf-sp-only {
    display: inline;
  }
}
.crf-pc-only {
  display: block;
}
br.crf-pc-only {
  display: inline;
}
@media (max-width: 750px) {
  .crf-pc-only,
  br.crf-pc-only {
    display: none;
  }
}
.crf-section {
  padding: 72px 0;
}
@media (max-width: 750px) {
  .crf-section {
    padding: 40px 0;
  }
}
.crf-section--bg {
  background: url(../img/bg_paper02.jpg);
}
.crf-section--white {
  background-color: #ffffff;
}
.crf-section .container {
  max-width: 1020px;
}
.crf-section .c-ttl-lev02__02 img {
  height: 35px;
}
@media (max-width: 750px) {
  .crf-section .c-ttl-lev02__02 img {
    height: 25px;
  }
}
@media (max-width: 750px) {
  .lower-mv:has(.crf-title) {
    padding: 46px 0 40px;
  }
}
.crf-title {
  padding-left: 40px;
  padding-right: 40px;
}
.crf-title img {
  display: block;
  max-width: 100%;
  width: auto;
  height: 45px;
  object-fit: contain;
  margin-inline: auto;
}
@media (max-width: 750px) {
  :root .crf-title img {
    height: 64px;
  }
}
.crf-triangle {
  border: 3px solid #000;
  position: relative;
}
@media (max-width: 750px) {
  .crf-triangle {
    border-width: 2px;
  }
}
.crf-triangle::after {
  content: "";
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1 / 1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #000;
}


/* policy */
.crf-policy-head {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 70px;
}
@media (max-width: 750px) {
  .crf-policy-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.crf-policy-head h3 {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 750px) {
  .crf-policy-head h3 {
    font-size: 2rem;
  }
}
.crf-policy-head p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 700;
}
@media (max-width: 750px) {
  .crf-policy-head p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.crf-policy-list {
  counter-reset: counter;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .crf-policy-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }
}
.crf-policy-list li {
  position: relative;
  padding-top: 8px;
  height: 100%;
}
@media (max-width: 750px) {
  .crf-policy-list li {
    padding-top: 5px;
  }
}
.crf-policy-list li::before {
  counter-increment: counter;
  content: "0" counter(counter);
  width: 60px;
  height: auto;
  aspect-ratio: 60 / 80;
  padding-bottom: 4px;
  display: grid;
  place-content: center;
  font-size: 4rem;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-feature-settings: normal;
  color: #ffffff;
  background-color: #145B7E;
  clip-path: polygon(0 0, 100% 0%, 100% 87%, 50% 100%, 0 87%);
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 10;
}
@media (max-width: 750px) {
  .crf-policy-list li::before {
    width: 50px;
    font-size: 3rem;
    left: 12px;
  }
}
.crf-policy-list li:nth-child(n + 10):before {
  content: counter(counter);
}
.crf-policy-list div {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.2);
  padding: 20px 30px;
  padding-left: 95px;
  height: 100%;
}
@media (max-width: 750px) {
  .crf-policy-list div {
    padding: 16px 20px;
    padding-left: 80px;
  }
}
.crf-policy-list h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: 1px dashed #BFBFBF;
  margin-bottom: 0.3em;
}
@media (max-width: 750px) {
  .crf-policy-list h4 {
    font-size: 1.6rem;
  }
}

.crf-policy-list p {
  font-size: 1.4rem;
  line-height: 2;
}
@media (max-width: 750px) {
  .crf-policy-list p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.crf-policy-list + .crf-policy-head {
  margin-top: 70px;
}
@media (max-width: 750px) {
  .crf-policy-list + .crf-policy-head {
    margin-top: 36px;
  }
}

.crf-policy-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin-top: 30px;
}
@media (max-width: 750px) {
 .crf-policy-grid {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    margin-top: 20px;
  }
}
.crf-policy-grid div {
  display: grid;
  place-content: center;
  background-color: #fff;
}
.crf-policy-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.crf-policy-grid__1 {
  grid-area: 1 / 1 / 3 / 3;
}
.crf-policy-grid__2 {
  grid-area: 1 / 3 / 2 / 4;
}
.crf-policy-grid__3 {
  grid-area: 1 / 4 / 2 / 5;
}
.crf-policy-grid__4 {
  grid-area: 2 / 3 / 3 / 4;
}
.crf-policy-grid__5 {
  grid-area: 2 / 4 / 3 / 5;
}
@media (max-width: 750px) {
  .crf-policy-grid__1 {
    grid-area: 1 / 1 / 3 / 3;
  }
  .crf-policy-grid__2 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .crf-policy-grid__3 {
    grid-area: 3 / 2 / 4 / 3;
  }
  .crf-policy-grid__4 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .crf-policy-grid__5 {
    grid-area: 4 / 2 / 5 / 3;
  }
}

/* performance */
.crf-perf-box {
  position: relative;
  padding: 40px 40px 50px;
  background-color: #fff;
}
@media (max-width: 750px) {
  .crf-perf-box {
    padding: 30px 20px 35px;
  }
}
.crf-perf-box + .crf-perf-box {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .crf-perf-box + .crf-perf-box {
    margin-top: 20px;
  }
}
.crf-perf-box img {
  display: block;
  margin-inline: auto;
  height: auto;
  margin-top: 50px;
}
@media (max-width: 750px) {
  .crf-perf-box img {
    margin-top: 30px;
  }
}
.crf-perf-box p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 700;
}
@media (max-width: 750px) {
  .crf-perf-box p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}
.crf-perf-box p[data-align="center"] {
  text-align: center;
}
.crf-perf-box__title {
  font-size: 3.5rem;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 0.8em;
  padding-left: 0.6em;
  border-left: 0.3em solid #145B7E;
}
@media (max-width: 750px) {
  .crf-perf-box__title {
    font-size: 2rem;
    margin-bottom: 1em;
  }
}
.crf-perf-box__headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.7em;
}
@media (max-width: 750px) {
  .crf-perf-box__headline {
    font-size: 1.5rem;
  }
}
.crf-perf-box__badge {
  width: fit-content;
  margin-inline: auto;
  background-color: #22333C;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0.2em 0.9em;
  text-align: center;
  margin-bottom: 0.7em;
}
@media (max-width: 750px) {
  .crf-perf-box__badge {
    font-size: 1.6rem;
  }
}
.crf-perf-popup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1040px) {
  .crf-perf-popup {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .crf-perf-popup {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}
.crf-perf-btn {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 1.2em 0.5em;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  display: grid;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 750px) {
  .crf-perf-btn {
    padding: 1em;
    border-width: 2px;
    font-size: 1.4rem;
  }
}
.crf-perf-btn span {
  display: block;
  font-weight: 700;
  text-align: left;
  border-left: 0.6em solid #145B7E;
  padding-left: 0.6em;
  padding-right: 1.5em;
  position: relative;
}
.crf-perf-btn span::before,
.crf-perf-btn span::after {
  content: "";
  display: block;
  width: 1.1em;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
  transform-origin: center;
  translate: 0 -50%;
}
.crf-perf-btn span::after {
  rotate: 90deg;
}
:root:has(dialog[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}
.crf-perf-dialog {
  max-width: 940px;
  margin: auto;
  width: 100%;
  height: fit-content;
  padding: 40px;
  overscroll-behavior-y: contain;
  position: fixed;
  inset: 0;
  border: 0;
  background: transparent;
}
@media (max-width: 750px) {
  .crf-perf-dialog {
    padding: 40px 20px 40px;
  }
}
.crf-perf-dialog .crf-perf-box::after {
  display: none;
}
.crf-perf-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.crf-perf-dialog__close {
  position: absolute;
  top: 0;
  right: 0;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  text-indent: -9999px;
  color: transparent;
  width: 77px;
  height: auto;
  aspect-ratio: 1 / 1;
}
@media (max-width: 750px) {
  .crf-perf-dialog__close {
    width: 48px;
  }
}
.crf-perf-dialog__close::before,
.crf-perf-dialog__close::after {
  content: "";
  display: block;
  width: 40px;
  height: 6px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  translate: -50% -50%;
}
@media (max-width: 750px) {
  .crf-perf-dialog__close::before,
  .crf-perf-dialog__close::after {
    content: "";
    display: block;
    width: 24px;
    height: 4px;
  }
}
.crf-perf-dialog__close::before {
  rotate: -45deg;
}
.crf-perf-dialog__close::after {
  rotate: 45deg;
}
.crf-perf-bnr {
  margin-top: 40px;
}
@media (max-width: 750px) {
  .crf-perf-bnr {
    margin-top: 20px;
  }
}
.crf-perf-bnr img {
  display: block;
  width: 100%;
  height: auto;
}
.crf-perf-docs {
  margin-top: 70px;
}
@media (max-width: 750px) {
  .crf-perf-docs {
    margin-top: 40px;
  }
}
.crf-perf-docs h3 {
  display: block;
  width: fit-content;
  font-size: 3.5rem;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 0.5em;
  padding-left: 0.6em;
  border-left: 0.3em solid #145B7E;
}
@media (max-width: 750px) {
  .crf-perf-docs h3 {
    font-size: 2rem;
    margin-inline: auto;
  }
}
.crf-perf-docs p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  text-align: left;
  margin-bottom: 1.5em;
}
@media (max-width: 750px) {
  .crf-perf-docs p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
  }
}
.crf-perf-docs__links {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .crf-perf-docs__links {
    flex-direction: column;
    justify-content: center;
  }
}
.crf-perf-docs__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  width: fit-content;
  max-width: 340px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  padding: 0.65em 2.5em;
  border-radius: 2em;
}
@media (max-width: 750px) {
  .crf-perf-docs__links a {
    font-size: 1.4rem;
  }
}
.crf-perf-docs__links a::after {
  content: "";
  display: block;
  width: 1.1em;
  height: auto;
  aspect-ratio: 20 / 18;
  background-image: url(../img/craftsmanship/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* warranty */
.crf-warranty-headline {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media (max-width: 750px) {
  .crf-warranty-headline {
    font-size: 1.7rem;
  }
}
.crf-warranty-service {
  margin-top: 60px;
}
@media (max-width: 750px) {
  .crf-warranty-service {
    margin-top: 32px;
  }
}
.crf-warranty-service img {
  display: block;
  height: auto;
  margin-inline: auto;
  margin-top: 20px;
}
.crf-warranty-box {
  padding: 32px 40px 40px;
  margin-top: 60px;
  background-color: #F1F0E9;
}
@media (max-width: 750px) {
  .crf-warranty-box {
    padding: 24px 16px 30px;
    margin-top: 40px;
  }
}
.crf-warranty-list {
  max-width: 815px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 0;
}
@media (max-width: 750px) {
  .crf-warranty-list {
    gap: 10px;
  }
}
.crf-warranty-list li {
  background-color: #fff;
  border-radius: 2em;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.2em 0.5em;
}
.crf-warranty-list li::before {
  content: "●";
  display: inline-block;
  margin-right: 0.2em;
  font-size: 1em;
  color: #145B7E;
}
.crf-warranty-list li:nth-child(1) {
  width: 27%;
}
.crf-warranty-list li:nth-child(2) {
  width: 42.3%;
}
.crf-warranty-list li:nth-child(3) {
  width: 27%;
}
.crf-warranty-list li:nth-child(4) {
  width: 49%;
}
.crf-warranty-list li:nth-child(5) {
  width: 49%;
}
@media (max-width: 750px) {
  .crf-warranty-list li {
    width: 100%!important;
    font-size: 1.2rem;
  }
}

.crf-warranty-action {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .crf-warranty-action {
    margin-top: 60px;
  }
}
.crf-warranty-action h3 {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  gap: 2em;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: normal;
  font-weight: 700;
  color: #145B7E;
  margin-bottom: 0.6em;
}
@media (max-width: 750px) {
  .crf-warranty-action h3 {
    font-size: 1.6rem;
  }
}
.crf-warranty-action h3::before,
.crf-warranty-action h3::after {
  content: "";
  display: block;
  width: 3px;
  height: 1.3em;
  background-color: #145B7E;
  transform-origin: center;
}
.crf-warranty-action h3::before {
  rotate: -30deg;
}
.crf-warranty-action h3::after {
  rotate: 30deg;
}
.crf-warranty-action a {
  display: block;
  width: fit-content;
  margin-inline: auto;
}
.crf-warranty-action img {
  display: block;
  height: auto;
  margin-inline: auto;
}
