@charset "utf-8";

/* ---- .cr-hero ---- */
.cr-hero {
  --stripe-gray-color: #a9aaaa;
  --stripe-alt-color: transparent;
  --stripe-gray-width: 10px;
  --stripe-alt-width: 15px;
  --stripe-frame-width: 9px;
  border-color: transparent;
  border-style: solid;
  border-width: var(--stripe-frame-width) 0;
  background-image:
    url('/common/images/denshiban/info/copyright/title_bg.webp'),
    linear-gradient(#fff, #fff),
    repeating-linear-gradient(
      -54deg,
      var(--stripe-gray-color),
      var(--stripe-gray-color) var(--stripe-gray-width),
      var(--stripe-alt-color) var(--stripe-gray-width),
      var(--stripe-alt-color) calc(var(--stripe-gray-width) + var(--stripe-alt-width))
    );
  background-position: 0 0, center, center;
  background-size: 50% auto, cover, cover;
  background-repeat: repeat, no-repeat, repeat;
  background-origin: padding-box, padding-box, border-box;
  background-clip: padding-box, padding-box, border-box;
  padding-block: 40px 35px;
}
.cr-hero_label {
  width: fit-content;
  text-align: center;
  margin-inline: auto;
}
.cr-hero_label strong {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
}
.cr-hero_label strong::before,
.cr-hero_label strong::after {
  --distance: 123%;
  content: '!';
  position: absolute;
  background-image: url('/common/images/denshiban/info/copyright/triangle.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 3rem;
  padding: 0.4em 0.69em 0.2em;
}
.cr-hero_label strong::before {
  right: var(--distance);
}
.cr-hero_label strong::after {
  left: var(--distance);
}
.cr-hero_label span {
  font-size: 3.4rem;
}
.cr-hero_title {
  position: relative;
  font-size: 5.4rem;
  font-weight: 700;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: #c5d4d8;
  text-decoration-thickness: 0.35em;
  text-underline-offset: 0;
}
.cr-hero_title span {
  font-size: 7.4rem;
  font-weight: 900;
}
.cr-hero_title strong {
  color: #eb0400;
  font-size: 9rem;
  font-weight: 900;
}
.cr-hero_text {
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 900;
  background-color: #c5d4d8;
  border-radius: calc(infinity * 1px);
  margin: 30px auto 0;
  padding: 0.37em 1.25em;
}

/* ---- .cr-example ---- */
.cr-example {
  padding-block: 60px 30px;
}
.cr-example_body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 838px;
  gap: 50px;
  margin-inline: auto;
}
.cr-example_body:has(:nth-child(4)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cr-example_item {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
}
.cr-example_img {
  width: 100%;
  margin-inline: auto;
}
.cr-example_text {
  max-width: 280px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-inline: auto;
}

/* ---- .cr-desc ---- */
.cr-desc_body {
  display: grid;
  gap: 25px;
  max-width: 740px;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-inline: auto;
  padding: 20px;
}
.cr-desc_text {
  font-size: 1.6rem;
  line-height: 1.7;
}

/* ---- .cr-detail ---- */
.cr-detail {
  padding-block: 43px 60px;
}
.cr-detail_text {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.cr-detail_text strong {
  color: #eb0400;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
}
.cr-detail_note {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 6px;
}

/* ---- .cr-form ---- */
.cr-form {
  background-color: #fafafa;
  margin-bottom: 80px;
  padding: 24px 40px 20px;
}
.cr-form_text {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  background-color: #fafafa;
  padding-bottom: 30px;
}
.cr-form_text strong {
  color: #eb0400;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}

/* ---- .cr-box-form（記事ページのスタイルを踏襲） ---- */
.cr-box-form {
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
  background-color: #fff;
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.cr-box-form__title {
  font-weight: bold;
  margin-top: 2rem;
}
.cr-box-form__th {
  padding: 1rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.5rem;
  width: 32%;
}
.cr-box-form__th-ico {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.2rem;
  border-radius: 0.2rem;
  margin-left: 6px;
  background: #ccc;
  vertical-align: text-bottom;
}
.cr-box-form__th-ico--req {
  background: #cc0022;
  color: #fff;
}
.cr-box-form__td {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  width: 68%;
}
.cr-box-form__td__field {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.8rem;
}
.cr-box-form__td__field:focus {
  outline: 0;
}
.cr-box-form__td__radio {
  margin-right: 0.4rem;
}
.cr-box-form__td__list {
  color: #666;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}
.cr-box-form__td__item-link {
  color: #666;
  text-decoration: underline;
}
.cr-box-form__td__caption {
  color: #666;
  font-size: 1.2rem;
}
.cr-box-form__btn-list {
  text-align: center;
  margin-bottom: 2rem;
}
.cr-box-form__submit,
.cr-box-form__reset {
  width: 220px;
  padding: 12px;
  border: none;
  color: #fff;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.cr-box-form__submit {
  background: #f00;
  margin-right: 0.8rem;
}
.cr-box-form__reset {
  background: #999;
  margin-left: 0.8rem;
}
.cr-box-form__submit,
.cr-box-form__reset {
  --hover-opacity: 0.5;
}
.cr-box-form__submit:focus-visible,
.cr-box-form__reset:focus-visible {
  opacity: var(--hover-opacity);
}
@media (any-hover: hover) {
  .cr-box-form__submit:hover,
  .cr-box-form__reset:hover {
    opacity: var(--hover-opacity);
  }
}
