* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  color: #000;
}

@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.only-pc {
  display: inline-block;
}
@media screen and (max-width: 780px) {
  .only-pc {
    display: none;
  }
}

.confirmation h3 {
  text-align: center;
  font-size: 24px;
  margin: 40px 0;
}
.confirmation .confirmation__text {
  text-align: center;
  font-size: 18px;
  margin: 20px 0;
}
.confirmation__button {
  margin: 30px 0;
}
.confirmation__button input {
  height: auto !important;
  margin-bottom: 15px;
}
.confirmation form > p input[type=submit] {
  background-color: #0a7835;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.confirmation form > p input[type=submit]:hover {
  opacity: 0.8;
}
.confirmation form > p input[type=button] {
  background-color: #f5f5f5;
  color: #333;
  padding: 15px 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.confirmation form > p input[type=button]:hover {
  background-color: #e5e5e5;
}

.thanks {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
.thanks__inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.thanks__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0a7835;
}
.thanks__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.thanks__btn {
  display: inline-block;
  background-color: #0a7835;
  color: #fff;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.thanks__btn:hover {
  opacity: 0.8;
}

.header {
  height: 80px;
  background: -webkit-linear-gradient(135deg, #eea32c 0%, #f6f29a 25%, #eebe68 67%);
  background: linear-gradient(-45deg, #eea32c 0%, #f6f29a 25%, #eebe68 67%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .header {
    height: 40px;
  }
}

.header__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
@media screen and (max-width: 780px) {
  .header__contents {
    gap: 8px;
  }
}

.header__logo {
  width: 185px;
}
@media screen and (max-width: 780px) {
  .header__logo {
    width: 25.641025641vw;
    margin-left: 6px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__heading {
  color: #000;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 780px) {
  .header__heading {
    font-size: clamp(0.6875rem, -0.0069444444rem + 2.962962963vw, 1.4375rem);
  }
}

.header__heading .red {
  color: #c1272d;
}

.header__contact {
  width: 243px;
  height: inherit;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 780px) {
  .header__contact {
    width: 29.358974359vw;
  }
}

.header__contact-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: inherit;
  background: #a10000;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: bold;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 780px) {
  .header__contact-link {
    font-size: clamp(0.9375rem, 0.0694444444rem + 3.7037037037vw, 1.875rem);
    padding-left: 13px;
  }
}

.header__contact-link::before {
  content: "";
  width: 9.7px;
  height: 9.7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 780px) {
  .header__contact-link::before {
    left: 6.9868995633%;
  }
}
@media screen and (max-width: 500px) {
  .header__contact-link::before {
    width: 5px;
    height: 5px;
    left: 12.2270742358%;
  }
}

@media (any-hover: hover) {
  .header__contact-link:hover {
    opacity: 0.7;
  }
}
.footer__top {
  background: #e6e6e6;
  padding: 50px 0 30px;
}
@media screen and (max-width: 780px) {
  .footer__top {
    padding: 20px 0 18px;
  }
}

.footer__company a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #03652b;
  font-size: 1.6875rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .footer__company a {
    font-size: clamp(1rem, 0.3125rem + 2.8205128205vw, 1.6875rem);
  }
}

@media (any-hover: hover) {
  .footer__company a:hover {
    opacity: 0.7;
  }
}
.footer__company-info {
  margin-top: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .footer__company-info {
    font-size: clamp(0.875rem, 0.75rem + 0.5128205128vw, 1rem);
  }
}

.footer__bottom {
  display: block;
  background: #000;
  padding-block: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .footer__bottom {
    font-size: clamp(0.875rem, 0.75rem + 0.5128205128vw, 1rem);
  }
}

.fv__block {
  aspect-ratio: 1440/735;
  position: relative;
  background: url(../img/fv.png) #2a2a2a no-repeat center bottom/contain;
}
@media screen and (max-width: 780px) {
  .fv__block {
    aspect-ratio: 780/1076;
    background: url(../img/fv-sp.png) #2a2a2a no-repeat;
    background-size: cover;
  }
}

.fv__title {
  width: 47.0833333333%;
  position: absolute;
  top: 4.4247787611%;
  left: 27.1527777778%;
}
@media screen and (max-width: 780px) {
  .fv__title {
    width: 87.1794871795vw;
    top: 2.4163568773%;
    left: 49%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fv__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.price__block {
  padding: 60px 0;
}
@media screen and (max-width: 780px) {
  .price__block {
    padding: 26px 0 8px;
  }
}

.price__title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 780px) {
  .price__title-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0px;
  }
}

.price__title {
  width: 37.9279279279%;
}
@media screen and (max-width: 780px) {
  .price__title {
    width: 67.9487179487vw;
  }
}

.price__heading {
  width: 51.1711711712%;
  aspect-ratio: 1136/324;
}
@media screen and (max-width: 780px) {
  .price__heading {
    width: 94.8717948718vw;
    padding-left: 20px;
    margin-top: -4px;
  }
}

.price__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 780px) {
  .price__list {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}

.price__item:first-child {
  width: 45.5855855856%;
}
@media screen and (max-width: 780px) {
  .price__item:first-child {
    width: 94.358974359vw;
  }
}

.price__item:nth-child(2) {
  width: 43.5135135135%;
}
@media screen and (max-width: 780px) {
  .price__item:nth-child(2) {
    width: 92.3076923077vw;
  }
}

.price__contents {
  max-width: 1120px;
  padding-inline: 15px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 39% 25% 18% 18%;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 780px) {
  .price__contents {
    margin: 20px auto 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.45fr 0.87fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 5px;
  }
}

.price__text {
  color: #f5dd3b;
  font-size: clamp(1.25rem, 0.5113636364rem + 1.5151515152vw, 1.875rem);
  font-weight: bold;
  line-height: 1.38;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .price__text {
    font-size: clamp(1.1875rem, 0.087962963rem + 4.6913580247vw, 2.375rem);
  }
}

.price__text.text01 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 780px) {
  .price__text.text01 {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 30px;
  }
}

.price__text.text02 {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: clamp(2.375rem, 1.6363636364rem + 1.5151515152vw, 3rem);
}
@media screen and (max-width: 780px) {
  .price__text.text02 {
    grid-column: 1/2;
    grid-row: 3/4;
    font-size: clamp(2.125rem, -0.0489130435rem + 10.8695652174vw, 5.25rem);
    white-space: nowrap;
    margin-top: 16px;
    line-height: 1.2;
  }
}

.price__text .white {
  color: #fff;
  font-size: clamp(1.875rem, 1.1363636364rem + 1.5151515152vw, 2.5rem);
}
@media screen and (max-width: 780px) {
  .price__text .white {
    font-size: clamp(1.5625rem, 0.0578703704rem + 6.4197530864vw, 3.1875rem);
  }
}

.price__img {
  width: 22.0720720721vw;
  max-width: 245px;
  margin-inline: auto;
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 780px) {
  .price__img {
    width: 44.2307692308vw;
    max-width: 345px;
    grid-column: 2/3;
    grid-row: 3/4;
    margin-top: 12px;
  }
}

.price__medal {
  margin-inline: auto;
}

.price__medal.medal01 {
  width: 16.8468468468vw;
  max-width: 187px;
  grid-column: 3/4;
  grid-row: 1/3;
}
@media screen and (max-width: 780px) {
  .price__medal.medal01 {
    width: 42.6923076923vw;
    max-width: 333px;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.price__medal.medal02 {
  width: 17.3873873874vw;
  max-width: 193px;
  padding-left: 8px;
  grid-column: 4/5;
  grid-row: 1/3;
}
@media screen and (max-width: 780px) {
  .price__medal.medal02 {
    width: 43.8461538462vw;
    max-width: 342px;
    padding-left: 0;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.caution__block {
  background: #4f4f4f;
  padding: 38px 0;
}
@media screen and (max-width: 780px) {
  .caution__block {
    margin: 0 -15px;
    padding: 76px 0 50px;
  }
}
@media screen and (max-width: 500px) {
  .caution__block {
    padding: 38px 0 30px;
  }
}

.caution__contents {
  padding-left: 28.2882882883%;
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 1110px) {
  .caution__contents {
    padding-left: 22.5225225225%;
  }
}
@media screen and (max-width: 780px) {
  .caution__contents {
    padding-left: 0;
  }
}

.caution__contents::before {
  content: "";
  width: 22.8828828829%;
  height: 234px;
  background: url(../img/caution-img.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 780px) {
  .caution__contents::before {
    display: none;
  }
}

.caution__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: clamp(1.25rem, 0.5113636364rem + 1.5151515152vw, 1.875rem);
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 780px) {
  .caution__title {
    font-size: clamp(1.4375rem, 0.0486111111rem + 5.9259259259vw, 2.9375rem);
    padding-left: 43.5897435897%;
    text-align: center;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .caution__title {
    padding-left: 43.5897435897%;
  }
}

.caution__title .large {
  color: #f5dd3b;
  font-size: clamp(2rem, 1.2613636364rem + 1.5151515152vw, 2.625rem);
}
@media screen and (max-width: 780px) {
  .caution__title .large {
    font-size: clamp(2rem, 0.0902777778rem + 8.1481481481vw, 4.0625rem);
  }
}

@media screen and (max-width: 780px) {
  .caution__title::before {
    content: "";
    width: 37.3076923077vw;
    aspect-ratio: 280/262;
    background: url(../img/caution-img-sp.png) no-repeat center/contain;
    position: absolute;
    left: 8px;
    bottom: -20px;
  }
}

.caution__title::after {
  content: "";
  width: 34px;
  height: 79px;
  background: url(../img/exclamation-mark.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 780px) {
  .caution__title::after {
    width: 10.7692307692vw;
    height: auto;
    aspect-ratio: 69/158;
    right: -15.3846153846%;
    top: 40%;
  }
}

.caution__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -40px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 780px) {
  .caution__list {
    width: 100%;
    max-width: 714px;
    padding-inline: 26px;
    grid-template-columns: 1fr;
    margin: 0 auto 0;
    position: relative;
  }
}

.caution__item:first-child {
  opacity: 0;
}
@media screen and (max-width: 780px) {
  .caution__item:first-child {
    display: none;
  }
}

.caution__item {
  padding: 16px 12px 12px;
  background: #f5dd3b;
  border-radius: 8px;
  color: #000;
  font-size: clamp(1.125rem, 0.6818181818rem + 0.9090909091vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 780px) {
  .caution__item {
    font-size: clamp(1.375rem, 0.1018518519rem + 5.4320987654vw, 2.75rem);
    padding: 12px 7px 11px;
  }
}

.caution__item .red {
  -webkit-text-decoration: wavy #c1272d underline;
          text-decoration: wavy #c1272d underline;
}

.inspection__block {
  padding: 60px 0;
}
@media screen and (max-width: 780px) {
  .inspection__block {
    padding: 28px 0 20px;
  }
}

.inspection__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 780px) {
  .inspection__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.inspection__title-img:first-child {
  width: 16.036036036%;
}
@media screen and (max-width: 780px) {
  .inspection__title-img:first-child {
    width: 31.5384615385vw;
  }
}

.inspection__title-img:nth-of-type(2) {
  width: 44.4144144144%;
}
@media screen and (max-width: 780px) {
  .inspection__title-img:nth-of-type(2) {
    width: 79.7435897436vw;
    margin-top: -14px;
  }
}

.inspection__list {
  margin-top: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 780px) {
  .inspection__list {
    margin-top: 10px;
    gap: 18px;
  }
}

.inspection__item {
  display: grid;
  grid-template-columns: 67% 30%;
  grid-template-rows: 1fr 1fr;
  -webkit-column-gap: 34px;
     -moz-column-gap: 34px;
          column-gap: 34px;
  row-gap: 28px;
}
@media screen and (max-width: 780px) {
  .inspection__item {
    grid-template-columns: 56% 39%;
    grid-template-rows: 0.2fr 1fr;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 8px;
    padding-inline: 14px;
  }
}

.inspection__item:nth-child(even) {
  grid-template-columns: 30% 67%;
}
@media screen and (max-width: 780px) {
  .inspection__item:nth-child(even) {
    grid-template-columns: 39% 55%;
  }
}

.inspection__item-heading {
  color: #f5dd3b;
  font-size: clamp(1.375rem, 0.7137096774rem + 1.2903225806vw, 1.875rem);
  font-weight: bold;
  line-height: 1.75;
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: end;
}
@media screen and (max-width: 780px) {
  .inspection__item-heading {
    grid-column: 1/3;
    grid-row: 1/2;
    align-self: auto;
    font-size: clamp(0.9375rem, 0rem + 3.8461538462vw, 1.875rem);
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.inspection__item-heading span {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.inspection__item-text {
  color: #fff;
  font-size: clamp(0.9375rem, 0.7721774194rem + 0.3225806452vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: -0.02em;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 780px) {
  .inspection__item-text {
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: clamp(0.75rem, 0.25rem + 2.0512820513vw, 1.25rem);
  }
}
.inspection__item-text span {
  letter-spacing: -0.5em;
}

.inspection__item-img {
  width: 22.2222222222vw;
  max-width: 320px;
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 780px) {
  .inspection__item-img {
    width: 32.3076923077vw;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.inspection__item:nth-child(even) .inspection__item-heading {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 780px) {
  .inspection__item:nth-child(even) .inspection__item-heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}

.inspection__item:nth-child(even) .inspection__item-text {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 780px) {
  .inspection__item:nth-child(even) .inspection__item-text {
    grid-template-columns: 1/2;
    grid-row: 2/3;
  }
}

.inspection__item:nth-child(even) .inspection__item-img {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 780px) {
  .inspection__item:nth-child(even) .inspection__item-img {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.inspection__bottom-contents {
  margin-top: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 1140px) {
  .inspection__bottom-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 4px;
    max-width: 550px;
    margin-inline: auto;
    gap: 35px;
  }
}
@media screen and (max-width: 780px) {
  .inspection__bottom-contents {
    margin-top: 16px;
    gap: 18px;
  }
}

.inspection__check {
  background: #f5dd3b;
  border-radius: 18px;
  padding: 18px 16px 12px;
}
@media screen and (max-width: 780px) {
  .inspection__check {
    padding: 14px 10px 10px;
  }
}

.inspection__check-title {
  color: #a10000;
  font-size: clamp(1.375rem, 0.8790322581rem + 0.9677419355vw, 1.75rem);
  font-weight: bold;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 780px) {
  .inspection__check-title {
    font-size: clamp(1.125rem, 0rem + 4.6153846154vw, 2.25rem);
  }
}

.inspection__check-title .red {
  margin-left: 12px;
  padding: 2px 12px;
  background: #a10000;
  color: #fff;
}
@media screen and (max-width: 780px) {
  .inspection__check-title .red {
    margin-left: 4px;
    padding: 2px 2px 2px 6px;
  }
}

.inspection__check-heading {
  margin-top: 12px;
  color: #2a2a2a;
  font-size: clamp(1.375rem, 0.8790322581rem + 0.9677419355vw, 1.75rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .inspection__check-heading {
    margin-top: 6px;
    font-size: clamp(1.0625rem, -0.037037037rem + 4.6913580247vw, 2.25rem);
  }
}

.inspection__check-img-box {
  margin-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
@media screen and (max-width: 780px) {
  .inspection__check-img-box {
    margin-top: 10px;
    gap: 8px;
  }
}

.inspection__check-img {
  width: 46.4480874317vw;
  max-width: 255px;
}
@media screen and (max-width: 780px) {
  .inspection__check-img {
    width: 50vw;
    max-width: 340px;
  }
}
.inspection__check-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inspection__check-text {
  max-width: 520px;
  margin-top: 12px;
  padding: 16px 18px 16px 20px;
  border-radius: 0 0 14px 14px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.68;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 780px) {
  .inspection__check-text {
    border-radius: 0 0 8px 8px;
    max-width: 667px;
    margin: 8px auto 0;
    padding: 8px 5px 8px 6px;
    font-size: clamp(0.625rem, 0rem + 2.5641025641vw, 1.25rem);
  }
}

.inspection__check-text span {
  letter-spacing: -0.05em;
}

.inspection-feature {
  padding: 18px 25px 16px;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .inspection-feature {
    padding: 16px 16px 16px;
  }
}

.inspection-feature__title {
  color: #2a2a2a;
  font-size: clamp(1.375rem, 0.8790322581rem + 0.9677419355vw, 1.75rem);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .inspection-feature__title {
    font-size: clamp(1.125rem, 0rem + 4.6153846154vw, 2.25rem);
  }
}

.inspection-feature__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
}
@media screen and (max-width: 780px) {
  .inspection-feature__list {
    margin-top: 12px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.inspection-feature__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
@media screen and (max-width: 780px) {
  .inspection-feature__item {
    grid-template-rows: auto;
  }
}

.inspection-feature__item-title {
  width: 225px;
  padding: 8px 0;
  background: #2a2a2a;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1rem, 0.6693548387rem + 0.6451612903vw, 1.25rem);
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .inspection-feature__item-title {
    width: 100%;
    padding: 5px 0 4px;
    font-size: clamp(1.125rem, 0rem + 4.6153846154vw, 2.25rem);
  }
}

.inspection-feature__item-contents {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 30% 62%;
  grid-template-rows: 1fr 0.25fr;
  gap: 18px;
}
@media screen and (max-width: 780px) {
  .inspection-feature__item-contents {
    grid-template-columns: 24% 76%;
    grid-template-rows: 1fr 0.5fr;
    gap: 0;
  }
}

.inspection-feature__item-img {
  width: 62px;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 780px) {
  .inspection-feature__item-img {
    width: 14.1025641026vw;
    grid-column: 1/2;
    grid-row: 1/3;
    margin-inline: auto;
  }
}

.inspection-feature__item-img:nth-of-type(2) {
  width: 55px;
}
@media screen and (max-width: 780px) {
  .inspection-feature__item-img:nth-of-type(2) {
    width: 13.5897435897vw;
  }
}

.inspection-feature__item-text {
  color: #2a2a2a;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.05em;
  text-align: center;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 780px) {
  .inspection-feature__item-text {
    font-size: clamp(0.75rem, 0rem + 3.0769230769vw, 1.5rem);
    line-height: 1.75;
    padding-top: 4px;
  }
}
.inspection-feature__item-text span {
  letter-spacing: -0.05em;
}

.inspection-feature__time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 12px;
  margin: 0 auto 0;
  border-radius: 18px;
  background: #fcf4c0;
  color: #2a2a2a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column: 1/3;
  grid-row: 2/3;
}
@media screen and (max-width: 780px) {
  .inspection-feature__time {
    font-size: clamp(0.75rem, -0.0625rem + 3.3333333333vw, 1.5625rem);
    padding: 0 6px;
    line-height: 1;
    grid-column: 2/3;
  }
}

.inspection-feature__time .large {
  margin-left: 4px;
  font-size: clamp(1.125rem, 0.6290322581rem + 0.9677419355vw, 1.5rem);
}
@media screen and (max-width: 780px) {
  .inspection-feature__time .large {
    font-size: clamp(1.3125rem, 0rem + 5.3846153846vw, 2.625rem);
  }
}

.inspection-feature__time .month {
  font-size: 1.0625rem;
}
@media screen and (max-width: 780px) {
  .inspection-feature__time .month {
    font-size: clamp(0.9375rem, -0.0625rem + 4.1025641026vw, 1.9375rem);
  }
}

.inspection-feature__notes {
  margin-top: 10px;
  border: 4px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 780px) {
  .inspection-feature__notes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 17px;
    padding: 12px 4px;
  }
}

@media screen and (max-width: 780px) {
  .inspection-feature__notes-title-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
  }
}

.inspection-feature__notes-title {
  font-weight: bold;
  font-size: clamp(1.125rem, 0.7943548387rem + 0.6451612903vw, 1.375rem);
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .inspection-feature__notes-title {
    font-size: clamp(0.9375rem, 0.125rem + 3.3333333333vw, 1.75rem);
  }
}
.inspection-feature__notes-title span {
  letter-spacing: -0.6em;
}

.inspection-feature__notes-img {
  width: 55px;
  margin: 16px auto 0;
}
@media screen and (max-width: 780px) {
  .inspection-feature__notes-img {
    width: 8.2051282051vw;
    margin: 0;
  }
}

.inspection-feature__notes-list {
  margin-left: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 780px) {
  .inspection-feature__notes-list {
    gap: 5px;
  }
}

.inspection-feature__notes-item {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 780px) {
  .inspection-feature__notes-item {
    font-size: clamp(0.75rem, 0.1875rem + 2.3076923077vw, 1.3125rem);
  }
}
.inspection-feature__notes-item span {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.inspection-feature__notes-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 780px) {
  .inspection-feature__notes-item::before {
    width: 6px;
    height: 6px;
    left: -10px;
  }
}

.promise__block {
  padding: 80px 0 120px;
}
@media screen and (max-width: 780px) {
  .promise__block {
    padding: 42px 0 34px;
  }
}

.promise__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #2a2a2a;
  font-size: 2.8125rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 780px) {
  .promise__title {
    font-size: clamp(1.375rem, -0.0625rem + 5.8974358974vw, 2.8125rem);
  }
}

.promise__title::after {
  content: "";
  width: 100%;
  height: 18px;
  background: #ebc500;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(1.5% 0, 100% 0%, 98.5% 100%, 0% 100%);
          clip-path: polygon(1.5% 0, 100% 0%, 98.5% 100%, 0% 100%);
  z-index: -1;
}
@media screen and (max-width: 780px) {
  .promise__title::after {
    height: 8px;
  }
}

.promise__list {
  margin: 86px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
@media screen and (max-width: 1110px) {
  .promise__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 60px;
  }
}
@media screen and (max-width: 780px) {
  .promise__list {
    margin: 30px auto 0;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    row-gap: 24px;
    padding-inline: 12px;
  }
}
@media screen and (max-width: 500px) {
  .promise__list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.promise__item-img {
  width: 232px;
  margin-inline: auto;
}
@media screen and (max-width: 780px) {
  .promise__item-img {
    width: 35vw;
    max-width: 273px;
  }
}

.promise__item-text {
  margin-top: 20px;
  color: #2a2a2a;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 780px) {
  .promise__item-text {
    margin-top: 12px;
    font-size: clamp(0.9375rem, 0rem + 3.8461538462vw, 1.875rem);
  }
}

.contact__block {
  padding: 60px 0;
}
@media screen and (max-width: 780px) {
  .contact__block {
    padding: 8px 0 40px;
  }
}

.contact__title {
  padding: 46px 0 46px;
  background: #a10000;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
          clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
  color: #fff;
  font-size: 2.8125rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .contact__title {
    padding: 12px 0 34px;
    font-size: clamp(1.25rem, -0.1967592593rem + 6.1728395062vw, 2.8125rem);
  }
}

.contact-top__list {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 780px) {
  .contact-top__list {
    margin-top: 18px;
    padding-inline: 8px;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-inline: 8px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.contact-top__item-title {
  background: #efd3d3;
  padding: 6px 0;
  color: #2a2a2a;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 780px) {
  .contact-top__item-title {
    font-size: clamp(0.9375rem, 0.0694444444rem + 3.7037037037vw, 1.875rem);
    padding: 3px 0;
  }
}

.contact-top__item-title::after {
  content: "";
  width: 26px;
  height: 13px;
  background: #efd3d3;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 780px) {
  .contact-top__item-title::after {
    width: 14px;
    height: 7px;
    bottom: -6px;
  }
}

.contact-tel__number {
  margin-top: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 780px) {
  .contact-tel__number {
    margin-top: 14px;
    gap: 6px;
  }
}

.contact-tel__number::before {
  content: "";
  background: url(../img/tel-icon.png) no-repeat center/contain;
  width: 65px;
  height: 42px;
  display: inline-block;
}
@media screen and (max-width: 780px) {
  .contact-tel__number::before {
    width: 10.7692307692vw;
  }
}

.contact-tel__number a {
  display: block;
  color: #016128;
  font-size: clamp(2.25rem, -0.1471774194rem + 4.6774193548vw, 4.0625rem);
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 780px) {
  .contact-tel__number a {
    font-size: clamp(2.625rem, 0.1944444444rem + 10.3703703704vw, 5.25rem);
  }
}

ruby rt {
  font-size: 1.125rem;
}
@media screen and (max-width: 780px) {
  ruby rt {
    font-size: clamp(0.75rem, 0.0625rem + 2.8205128205vw, 1.4375rem);
  }
}

.contact-tel__time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  padding: 2px 12px;
  border: 1px solid #016128;
  border-radius: 13px;
  color: #016128;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .contact-tel__time {
    margin: 14px auto 0;
    padding: 1px 10px;
    font-size: clamp(0.625rem, 0rem + 2.5641025641vw, 1.25rem);
  }
}

.contact-line__text {
  margin-top: 32px;
  color: #2a2a2a;
  font-size: 1.1875rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 780px) {
  .contact-line__text {
    margin-top: 24px;
    font-size: clamp(0.8125rem, 0.0625rem + 3.0769230769vw, 1.5625rem);
  }
}
.contact-line__text span {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.contact-line__btn {
  width: 100%;
  margin-top: 26px;
  padding-inline: 16px;
}
@media screen and (max-width: 780px) {
  .contact-line__btn {
    margin-top: 12px;
    padding-inline: 12px;
  }
}

.contact-line__link {
  display: block;
  width: inherit;
  max-width: 495px;
  margin-inline: auto;
  height: inherit;
  background: #3ea337;
  border-radius: 15px;
  padding: 26px 0 26px 40px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: clamp(1.25rem, 0.5887096774rem + 1.2903225806vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 780px) {
  .contact-line__link {
    padding: 18px 0 20px 38px;
    font-size: clamp(1rem, -0.1574074074rem + 4.9382716049vw, 2.25rem);
    letter-spacing: 0.03em;
    border-radius: 10px;
  }
}

.contact-line__link::before {
  content: "";
  width: 11.9191919192%;
  height: 58.3333333333%;
  background: url(../img/line-icon.png) no-repeat center/contain;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 780px) {
  .contact-line__link::before {
    left: 26px;
  }
}

@media (any-hover: hover) {
  .contact-line__link:hover {
    opacity: 0.7;
  }
}
.contact__form {
  margin-top: 130px;
}
@media screen and (max-width: 780px) {
  .contact__form {
    margin-top: 38px;
    padding-inline: 8px;
  }
}

.contact__list {
  margin-top: 92px;
  max-width: 1110px;
}
@media screen and (max-width: 780px) {
  .contact__list {
    margin-top: 10px;
    max-width: 702px;
    margin-inline: auto;
  }
}

.contact__item {
  display: grid;
  grid-template-columns: 260px 1fr;
  padding: 24px 0 24px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 780px) {
  .contact__item {
    grid-template-columns: 28% 72%;
    padding: 14px 0 14px;
  }
}
@media screen and (max-width: 500px) {
  .contact__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media screen and (max-width: 780px) {
  .contact__item:last-child {
    border-bottom: none;
  }
}

.contact__fieldset {
  display: contents;
}

.contact__label {
  padding-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 780px) {
  .contact__label {
    font-size: clamp(0.75rem, 0.375rem + 1.5384615385vw, 1.125rem);
    letter-spacing: 0.03em;
    padding: 0 0 0 0;
  }
}

.contact__label .label-small {
  display: inline-block;
  margin-left: 16px;
  padding: 0 6px;
  background: #eebfca;
  border-radius: 3px;
  color: #d43353;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .contact__label .label-small {
    font-size: clamp(0.625rem, 0.3125rem + 1.2820512821vw, 0.9375rem);
    padding: 0 2px;
    line-height: 1.2;
    margin-left: 8px;
  }
}

.contact__input {
  width: 100%;
  max-width: 692px;
  margin-left: 16px;
  padding: 13px 12px;
  border-radius: 4px;
  border: 1px solid #c3c3c3;
}
@media screen and (max-width: 780px) {
  .contact__input {
    padding: 4px 6px;
    margin-left: 0;
  }
}

::-webkit-input-placeholder {
  color: #aaaaaa;
  font-size: 0.9375rem;
  font-weight: thin;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

::-moz-placeholder {
  color: #aaaaaa;
  font-size: 0.9375rem;
  font-weight: thin;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

:-ms-input-placeholder {
  color: #aaaaaa;
  font-size: 0.9375rem;
  font-weight: thin;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

::-ms-input-placeholder {
  color: #aaaaaa;
  font-size: 0.9375rem;
  font-weight: thin;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

::placeholder {
  color: #aaaaaa;
  font-size: 0.9375rem;
  font-weight: thin;
  line-height: 1.75;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 780px) {
  ::-webkit-input-placeholder {
    font-size: clamp(0.625rem, 0.3125rem + 1.2820512821vw, 0.9375rem);
  }
  ::-moz-placeholder {
    font-size: clamp(0.625rem, 0.3125rem + 1.2820512821vw, 0.9375rem);
  }
  :-ms-input-placeholder {
    font-size: clamp(0.625rem, 0.3125rem + 1.2820512821vw, 0.9375rem);
  }
  ::-ms-input-placeholder {
    font-size: clamp(0.625rem, 0.3125rem + 1.2820512821vw, 0.9375rem);
  }
  ::placeholder {
    font-size: clamp(0.625rem, 0.3125rem + 1.2820512821vw, 0.9375rem);
  }
}

.contact__input-text {
  color: #595757;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.9;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 780px) {
  .contact__input-text {
    line-height: 1.7;
  }
}

.contact__checkbox {
  width: 160px;
  font-family: "Noto Sans JP", sans-serif;
  color: #595757;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 780px) {
  .contact__checkbox {
    width: 120px;
    font-size: clamp(0.75rem, 0.5625rem + 0.7692307692vw, 0.9375rem);
  }
}

.contact__textarea {
  max-width: 692px;
  margin-left: 16px;
  border: 1px solid #c3c3c3;
  border-radius: 5.7px;
  height: 198px;
  resize: none;
  padding: 16px 12px;
  font-size: 0.9375rem;
  line-height: 1.75;
}
@media screen and (max-width: 780px) {
  .contact__textarea {
    margin-left: 0;
    padding: 4px 6px;
  }
}

.contact__checkbox-area {
  margin-left: 16px;
  padding-top: 8px;
  max-width: 730px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 780px) {
  .contact__checkbox-area {
    padding-top: 0;
    margin-left: 0;
  }
}

.contact__input-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 16px 0 0;
  width: 27px;
  height: 27px;
  vertical-align: middle;
  border: 1px solid #595757;
  border-radius: 2.56px;
  position: relative;
  top: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 780px) {
  .contact__input-check {
    width: 14px;
    height: 14px;
  }
}

.contact__input-check:checked {
  position: relative;
}

.contact__input-check:checked::after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 4px;
  border-bottom: 3px solid #595757;
  border-left: 3px solid #595757;
  top: 46%;
  left: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -4px;
}

.contact__submit-btn-box {
  margin-top: 50px;
  width: 100%;
  max-width: 336px;
  margin-inline: auto;
}
@media screen and (max-width: 780px) {
  .contact__submit-btn-box {
    margin-top: 10px;
    width: 61.0256410256vw;
    max-width: 476%;
  }
}

.contact__submit-btn {
  display: block;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0a7835), to(#005f27));
  background: -webkit-linear-gradient(left, #0a7835 0%, #005f27 100%);
  background: linear-gradient(90deg, #0a7835 0%, #005f27 100%);
  border-radius: 30px;
  border: 1px solid #2a2a2a;
  padding-block: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 780px) {
  .contact__submit-btn {
    font-size: clamp(0.75rem, 0.1875rem + 2.3076923077vw, 1.3125rem);
    padding: 10px 0;
  }
}

@media (any-hover: hover) {
  .contact__submit-btn:hover {
    background: #fff;
    color: #2a2a2a;
  }
}
.contact-privacy {
  margin-top: 52px;
}
@media screen and (max-width: 780px) {
  .contact-privacy {
    margin-top: 16px;
  }
}

.contact-privacy__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #016128;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 780px) {
  .contact-privacy__link {
    font-size: clamp(0.75rem, 0.5rem + 1.0256410256vw, 1rem);
  }
}

@media (any-hover: hover) {
  .contact-privacy__link:hover {
    opacity: 0.7;
  }
}
.inner {
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 780px) {
  .inner {
    padding-inline: 15px;
  }
}

.bg-black {
  background: #2a2a2a;
}

.sp-br {
  display: none;
}
@media screen and (max-width: 780px) {
  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 780px) {
  .pc-br {
    display: none;
  }
}

.cta-area {
  height: 100px;
  background: -webkit-linear-gradient(135deg, #eea32c 0%, #f6f29a 25%, #eebe68 67%);
  background: linear-gradient(-45deg, #eea32c 0%, #f6f29a 25%, #eebe68 67%);
  position: relative;
}
@media screen and (max-width: 780px) {
  .cta-area {
    height: auto;
    padding: 30px 0 18px;
  }
}
@media screen and (max-width: 500px) {
  .cta-area {
    padding: 12px 0 6px;
  }
}

.cta-area::before {
  content: "";
  width: 100%;
  height: 6px;
  background: -webkit-linear-gradient(269deg, #f6f29a 0%, #eea32c 27%, #f6f29a 40%, #eebe68 60%, #884a25 74%, #7b351f 82%, #411108 91%);
  background: linear-gradient(-179deg, #f6f29a 0%, #eea32c 27%, #f6f29a 40%, #eebe68 60%, #884a25 74%, #7b351f 82%, #411108 91%);
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .cta-area::before {
    height: 3px;
    top: 4px;
  }
}

.cta__btn {
  padding-top: 26px;
  margin-inline: auto;
  max-width: 426px;
}
@media screen and (max-width: 780px) {
  .cta__btn {
    max-width: 717px;
    padding: 0 30px 0;
  }
}

.cta__btn-link {
  width: 100%;
  height: 100%;
  padding: 20px 0 22px;
  border-radius: 32px;
  border: 1px solid #a10000;
  background: #a10000;
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  display: grid;
  place-content: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 780px) {
  .cta__btn-link {
    padding: 13px 0 13px;
    font-size: clamp(1.125rem, 0.0833333333rem + 4.4444444444vw, 2.25rem);
  }
}

@media (any-hover: hover) {
  .cta__btn-link:hover {
    background: #fff;
    color: #a10000;
  }
  .cta__btn-link:hover::before {
    border-top: 2px solid #a10000;
    border-right: 2px solid #a10000;
  }
}
.cta__btn-link::before {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 780px) {
  .cta__btn-link::before {
    width: 20px;
    height: 20px;
    left: 50px;
  }
}
@media screen and (max-width: 500px) {
  .cta__btn-link::before {
    width: 10px;
    height: 10px;
    left: 25px;
  }
}/*# sourceMappingURL=style.css.map */