@charset "UTF-8";
body {
  background-image: url(../img/bg03.jpg);
  background-size: contain;
  background-attachment: fixed;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

body::before {
  content: "";
  position: fixed; /* スクロールしても固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75); /* ここで暗さを調整（0〜1） */
  z-index: -1; /* 背景より下に配置 */
  pointer-events: none; /* 要素の上にクリックなどが通るように */
}

.container {
  max-width: 1000px;
  margin: 0px auto;
  position: relative;
}

/* ▼フォーム▼ */
.form_wrap {
  background-image: url(../img/bg01.jpg);
  background-size: cover;
  color: #42210b;
  padding: 30px;
}
@media (max-width: 1000px) {
  .form_wrap {
    padding: 6vw 6vw 6vw;
  }
}
.form_wrap dl {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.form_wrap dl .box {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}
@media (max-width: 1000px) {
  .form_wrap dl .box {
    gap: 1.5vw;
  }
}
.form_wrap dl .box dt {
  font-size: clamp(16px, 3vw, 25px);
  font-weight: 500;
}
.form_wrap dl .box dd input[type=text] {
  width: 100%;
  font-size: clamp(18px, 2vw, 25px);
  padding: 15px 20px;
  background: none;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 2px solid #103e54;
  border-radius: 5px;
}
.form_wrap dl .box dd input[type=text]:focus {
  outline: none;
}
@media (max-width: 1000px) {
  .form_wrap dl .box dd input[type=text] {
    padding: 2.5vw 2vw;
  }
}
.form_wrap .head_btn {
  max-width: 100%;
  margin: 40px auto 0;
  display: block;
  color: #000000;
}
@media (max-width: 1000px) {
  .form_wrap .head_btn {
    margin: 6vw auto 0;
  }
}
.form_wrap .head_btn:hover {
  opacity: 0.8;
}
.form_wrap .form_check {
  color: #ffffff;
  padding: 10px 0px 0px;
}
.form_wrap .txt {
  text-align: center;
  font-size: clamp(18px, 2vw, 25px);
  margin: 20px auto 0px;
  line-height: 1.6;
}

/* ▲フォーム▲ */
/* ▼フッター▼ */
.footer {
  background-color: #2b2716;
  color: #ffffff;
  padding: 35px 50px 35px;
  margin: 0px 0px;
  clear: both;
}
@media (max-width: 1000px) {
  .footer {
    padding: 25px 20px 25px;
  }
}
.footer .f_navi ul {
  display: flex;
  justify-content: space-between;
}
.footer .f_navi li {
  list-style: none;
}
.footer .f_navi li a {
  color: #ffffff;
}
@media (max-width: 1000px) {
  .footer .f_navi li a {
    font-size: 12px;
  }
}
.footer .f_navi li a:hover {
  opacity: 0.8;
}
.footer .footer_coution {
  padding: 30px 0px 0px;
  margin: 0 auto;
  clear: both;
}
@media (max-width: 1000px) {
  .footer .footer_coution {
    font-size: 12px;
    padding: 20px 0px 0px;
  }
}
.footer .footer_coution li {
  font-size: clamp(10px, 2vw, 16px);
  list-style-type: none;
  line-height: 1.8;
}

.copyright {
  color: rgba(255, 255, 255, 0.7098039216);
  background-color: #000000;
  display: block;
  text-align: right;
  font-size: clamp(10px, 2vw, 14px);
  font-weight: 400;
  padding: 20px 30px 20px 0;
}

/* ▲フッター▲ */
/* ▼テキストページ▼ */
.box2 {
  padding: 40px;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .box2 {
    padding: 20px;
    margin: 0 15px;
  }
}

.o_tit {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .o_tit {
    font-size: 16px;
  }
}

.p_txt {
  font-size: 15px;
}
@media (max-width: 1000px) {
  .p_txt {
    font-size: 14px;
  }
}

/* ▲テキストページ▲ */
/* ▼特商法▼ */
.wrp-t-list {
  width: 100%;
}
@media (max-width: 1000px) {
  .wrp-t-list {
    font-size: 14px;
  }
}
.wrp-t-list .t-list {
  display: flex;
  padding-bottom: 15px;
  gap: 10px;
}
@media (max-width: 1000px) {
  .wrp-t-list .t-list {
    flex-direction: column;
    gap: 5px;
  }
}
.wrp-t-list .t-list:last-child {
  padding-bottom: 0px;
}
.wrp-t-list .t-list dt {
  width: 25%;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .wrp-t-list .t-list dt {
    width: 100%;
  }
}
.wrp-t-list .t-list dd {
  width: 75%;
}
@media (max-width: 1000px) {
  .wrp-t-list .t-list dd {
    width: 100%;
  }
}

/* ▲特商法▲ */
/* ▼的中結果▼ */
.wrp-result {
  background-image: url(../img/bg02.jpg);
  background-size: cover;
  padding: 40px;
}
@media (max-width: 1000px) {
  .wrp-result {
    padding: 4vw; /* 1000px幅に対して4% */
  }
}

.inbox {
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .inbox {
    margin-bottom: 4vw; /* 1000px幅に対して5% */
  }
}
.inbox:last-child {
  margin-bottom: 0px;
}

.wrp-inbox {
  background-color: #ffffff;
  border-style: Solid;
  border-color: #000000;
  border-width: 2px;
  padding: 20px 20px;
}
@media (max-width: 1000px) {
  .wrp-inbox {
    padding: 0 2vw 0vw; /* 1000px幅に対して4% */
    border-width: 0.5vw;
  }
}

.tit-result {
  background-color: #000000;
  color: #ffffff;
  padding: 5px 30px;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 5px;
  text-align: center;
}
@media (max-width: 1000px) {
  .tit-result {
    padding: 0.5vw 3vw; /* 5px 30px → vw */
    font-size: 3.2vw; /* 32px → vw */
    letter-spacing: 0.5vw; /* 5px → vw */
  }
}

.get {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.get span {
  display: block;
}

.get-icon img {
  width: 150px;
}
@media (max-width: 1000px) {
  .get-icon img {
    width: 18vw;
  }
}

.wrp-price {
  display: flex;
  align-items: baseline;
}
.wrp-price .get01 {
  font-size: 35px;
  font-weight: 600;
  padding: 0 20px 0 0;
  color: #b8272d;
}
@media (max-width: 1000px) {
  .wrp-price .get01 {
    font-size: 3.5vw; /* 35px → vw */
    padding: 0 2vw 0 0; /* 20px → vw */
  }
}
.wrp-price .get02 {
  font-size: 95px;
  font-weight: 600;
  color: #b8272d;
}
@media (max-width: 1000px) {
  .wrp-price .get02 {
    font-size: 10vw; /* 100px → vw */
  }
}
.wrp-price .get03 {
  font-size: 40px;
  font-weight: 600;
  color: #b8272d;
}
@media (max-width: 1000px) {
  .wrp-price .get03 {
    font-size: 7vw; /* 70px → vw */
  }
}

.get-table {
  width: 100%;
}
.get-table td {
  padding: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .get-table td {
    padding: 0.5vw; /* 10px → vw */
    font-size: 2.7vw; /* 25px → vw */
    font-weight: 500;
  }
}

.t-head {
  background-color: #000000;
  color: #ffffff;
  border: 2px #000000 Solid;
}
@media (max-width: 1000px) {
  .t-head {
    border: 0.5vw #000000 Solid;
  }
}

.t-txt {
  background-color: #ffffff;
  border: 2px #000000 Solid;
  color: #000000;
}
@media (max-width: 1000px) {
  .t-txt {
    border: 0.5vw #000000 Solid;
  }
}

.voice {
  background-image: url("../img/bg02.jpg");
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 1000px) {
  .voice {
    padding: 5vw 0; /* 50px → vw */
  }
}

/* ▲的中結果▲ *//*# sourceMappingURL=style.css.map */