html {
  font-size: calc((100 / 750) * 1vw);
  font-family: sans-serif;
}

@media screen and (min-width: 750px) {
  html {
    font-size: 1px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  font-feature-settings: 'palt';
}

.l-container {
  max-width: 750rem;
  margin: 0 auto;
}

img {
  width: 100%;
}

.bg {
  max-width: 750rem;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.button {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 112rem;
  color: #8a531b;
  font-size: 34rem;
  background-color: #fff;
  border-radius: 20rem;
  cursor: pointer;
}

.button .active {
  display: none;
}

.button:has(input:checked) .active {
  display: block;
}

.button:has(input:checked) .default {
  display: none;
}

.fv {
  position: relative;
}

.s_q1 {
  margin-bottom: 50px;
}

.s_q2 {
  margin-bottom: 20px;
}

.s_q3 {
  margin-bottom: 30px;
  position: relative;
}

.answer {
  display: flex;
  gap: 25rem;
  width: 100%;
  margin: auto;
}

.modify {
  margin-right: -10rem;
}

.q_note02 {
  font-size: 17rem;
  margin-top: 30rem;
  color: #362d26;
  text-indent: -20rem;
  margin-left: 20rem;
}

.section_cta {
  background: url("../img/cta_bg.png") repeat 0 0 / 750rem 249rem;
  padding-bottom: 20rem;
}

.cta_button {
  width: 750rem;
  margin-top: 30rem;
}

.cta_button.js-btn-fixed {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.cta_button.is-hide {
  transform: translate(-50%, 200%);
}

.cta_button a {
  display: block;
  max-width: 710rem;
  margin: 0 auto;
  animation: move 1.5s infinite;
}

.cta_button a img {
  transition: all .3s ease;
}

.cta_button a:hover img {
  filter: brightness(1.2);
  transform: scale(1.04);
}

@keyframes move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(0);
  }
}s

table#tblLayout {
  max-width: 750rem;
  margin: 0 auto;
}

.q_note {
  font-size: 18rem;
  letter-spacing: .05em;
  color: #ff0000;
  text-align: left;
  margin: 30rem 0;
}

.q_point {
  display: none;
  margin-top: 30rem;
}

footer {
  max-width: 750rem;
  margin: 0 auto;
  padding: 40px 0 30px;
  color: #999;
}

.footer-menu {
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.footer-menu a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer small {
  margin-top: 30px;
  font-size: 12px;
  text-align: right;
  display: block;
}

@media screen and (max-width: 768px) {
  footer small {
    text-align: center;
    font-size: 10px;
  }

  .q_note {
    font-size: 32rem;
  }

  .answer,
  .q_note,
  .q_note02 {
    padding: 0 10rem;
  }
}