* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

@media (max-width: 1800px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 1650px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 7px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 5px;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 4px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 7px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 5px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
input,
a {
  padding: 0;
  margin: 0;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  list-style: none;
  text-decoration: none;
  font-weight: 600;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  background-color: #f4f0eb;
}
body .item-radio {
  text-align: center;
  width: 100%;
  margin-top: 3rem;
}
body .item-radio input[type=radio] {
  margin-inline: auto;
  appearance: none;
  width: 3rem;
  height: 3rem;
  border: 0.4rem solid #998675;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
body .item-radio input[type=radio]::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.2s ease;
  background: #998675;
}
body .item-radio input[type=radio]:checked::before {
  transform: scale(1) translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
body .fv-btnGroup-item {
  width: 64rem;
  height: 13rem;
  background-color: #fe7c1e;
  color: #fff;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
body .fv-btnGroup-item span {
  font-size: 3.5rem;
  font-weight: 500;
  color: #fff;
}
body .fv-btnGroup-item .direct {
  background-color: #fff;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .fv-btnGroup-item .direct img {
  width: 2.5rem;
  height: auto;
}
@media (max-width: 768px) {
  body .fv-btnGroup-item {
    width: 48%;
  }
  body .fv-btnGroup-item span {
    font-size: 1.8rem;
  }
}
body header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: #796a55;
  padding-block: 15px;
  padding-left: 20px;
  width: 100%;
}
body header .header-title {
  width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
body header .header-title .logo {
  height: 23px;
}
body header .header-title .logo img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: center;
}
body header .header-title .header-link {
  padding-right: 20px;
}
body header .header-title .header-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
body header .header-title .header-link ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
body header .header-title .header-sp {
  display: none;
}
@media (max-width: 1700px) {
  body header .header-title {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body header .header-title .header-link {
    display: none;
  }
  body header .header-title .header-sp {
    display: flex;
    position: absolute;
    top: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    right: 0;
    width: 54px;
    height: 100%;
  }
  body header .header-title .header-sp .drawer-hamburger-icon {
    width: 30px;
    height: 2px;
    position: absolute;
    background-color: #fff;
    top: 35%;
    margin-top: 0;
  }
  body header .header-title .header-sp .drawer-hamburger-icon::before,
  body header .header-title .header-sp .drawer-hamburger-icon::after {
    transition: all 0.7s;
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    height: 2px;
    top: -8px;
    background-color: #fff;
  }
  body header .header-title .header-sp .drawer-hamburger-icon::after {
    top: 8px;
  }
  body header .header-title .header-sp .sr-only {
    position: absolute;
    width: 27px;
    height: auto;
    font-size: 11px;
    padding: 0;
    overflow: auto;
    clip: unset;
    white-space: nowrap;
    border-width: unset;
    color: #fff;
    top: 60%;
    transform: translateX(0);
    transition: all 0.7s;
    left: auto;
    right: auto;
    bottom: auto;
  }
  body header .header-title .header-sp .sr-only .open {
    display: block;
  }
  body header .header-title .header-sp .sr-only .close {
    display: none;
  }
  body header .header-title .header-sp .sr-only .open.hidden {
    display: none;
  }
  body header .header-title .header-sp .sr-only .close.hidden {
    display: block;
  }
  body header .header-title .header-sp .drawer-hamburger-icon.hidden {
    height: 0;
  }
  body header .header-title .header-sp .drawer-hamburger-icon.hidden::after {
    top: 0;
    rotate: -45deg;
  }
  body header .header-title .header-sp .drawer-hamburger-icon.hidden::before {
    top: 0;
    rotate: 45deg;
  }
}
body nav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
body nav .nav-header {
  transition: all 0.8s;
  background-color: rgba(122, 106, 86, 0.95);
  width: 100%;
  height: 100vh;
  position: absolute;
  transform: translateX(100%);
  z-index: 5;
}
body nav .nav-header ul {
  display: flex;
  margin: auto;
  flex-direction: column;
  align-items: flex-start;
  width: 550px;
  height: fit-content;
}
body nav .nav-header ul li {
  width: 100%;
}
body nav .nav-header ul li a {
  width: 100%;
  padding: 19px 0 19px 35px;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #fff;
  display: block;
  position: relative;
}
body nav .nav-header ul li a::before,
body nav .nav-header ul li a::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 10px;
  width: 10px;
  height: 1px;
  background-color: #fff;
  rotate: 315deg;
}
body nav .nav-header ul li a::after {
  rotate: 225deg;
  top: 45%;
}
@media (max-width: 550px) {
  body nav .nav-header ul {
    width: 100%;
  }
}
body nav .nav-header.hidden {
  transform: translateX(0);
}
body main {
  padding-top: 20px;
}
@media (max-width: 768px) {
  body main {
    padding-inline: 5rem;
  }
}
body main .fv {
  position: relative;
}
body main .fv-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  width: 100%;
}
body main .fv-main-text {
  width: 100%;
  padding-left: 20rem;
  padding-top: 9rem;
}
body main .fv-main-text-img {
  width: 100%;
  margin-top: 35px;
}
body main .fv-main-text-img img {
  width: 100%;
}
body main .fv-main-text1 {
  background-color: #a67c52;
  color: #fff;
  border-radius: 2rem;
  text-align: center;
}
body main .fv-main-text1 h5 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0;
}
body main .fv-main-text2 {
  color: #4e392b;
  text-align: center;
}
body main .fv-main-text2 h4 {
  margin-top: 1.7rem;
  font-size: 7.7rem;
  font-weight: 500;
}
body main .fv-main-text2 h3 {
  font-size: 12rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
body main .fv-main-text2 h3::after {
  content: "";
  display: flex;
  width: 100%;
  height: 3.5rem;
  background-color: #ffeb99;
  position: absolute;
  bottom: 0;
  transform: translateY(-70%);
  z-index: -1;
}
body main .fv-main-text2 h5 {
  color: #006837;
  font-size: 4.6rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
body main .fv-main-text2 h5::after {
  content: "";
  display: flex;
  width: 100%;
  height: 3.5rem;
  background-color: #ffeb99;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
body main .fv-main-text3 {
  width: 100%;
  margin-top: 2rem;
}
body main .fv-main-text3 p {
  font-size: 1.8rem;
  color: #603813;
  position: relative;
  width: fit-content;
  float: right;
  font-weight: 600;
}
body main .fv-main-text3 p::before {
  content: "";
  width: 22.5rem;
  height: 0.1rem;
  background-color: #603813;
  display: flex;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateX(-100%);
}
body main .fv-main-img {
  margin-top: 2rem;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-position: right;
  position: relative;
}
body main .fv-main-img-group {
  position: absolute;
  left: 2.5rem;
  bottom: -3.3rem;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
body main .fv-main-img-group div {
  color: #603813;
  width: 20rem;
  height: 20rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body main .fv-main-img-group div p {
  font-size: 2rem;
}
body main .fv-main-img-group div h4 {
  font-size: 5.8rem;
  font-weight: 500;
}
body main .fv-main-img-group div .fv-group-item1 {
  font-size: 4.5rem;
}
body main .fv-main-img-group div .fv-group-item2 {
  font-size: 4rem;
}
@media (max-width: 425px) {
  body main .fv-main-img-group {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  body main .fv-main-img {
    height: 70rem;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 425px) {
  body main .fv-main-img {
    height: 60rem;
    margin: 0;
  }
  body main .fv-main-text1 h5 {
    font-size: 3rem;
  }
  body main .fv-main-text2 h4 {
    font-size: 6rem;
  }
  body main .fv-main-text2 h3 {
    font-size: 10rem;
  }
  body main .fv-main-text2 h5 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  body main .fv-main {
    grid-template-columns: repeat(1, 1fr);
  }
  body main .fv-main-text {
    padding-inline: 0rem;
    padding-top: 9rem;
  }
}
body main .fv-group {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
body main .fv-group-item {
  width: 100%;
  display: flex;
  align-items: end;
}
body main .fv-group-item img {
  width: 100%;
}
@media (max-width: 450px) {
  body main .fv-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
body main .fv-btnGroup {
  padding-top: 7rem;
  padding-bottom: 6.5rem;
  position: relative;
  display: flex;
  justify-content: end;
  padding-right: 21rem;
}
body main .fv-btnGroup-items {
  display: flex;
  gap: 3rem;
}
body main .fv-btnGroup-item:nth-child(2) {
  background-color: #0071bc;
}
body main .fv-btnGroup-img {
  width: 60rem;
  height: 45rem;
  position: absolute;
  top: -50%;
  left: 0;
}
body main .fv-btnGroup-img img {
  width: 100%;
}
@media (max-width: 768px) {
  body main .fv-btnGroup {
    padding-right: 0;
  }
  body main .fv-btnGroup-img {
    display: none;
  }
}
@media (max-width: 768px) {
  body main .fv-btnGroup-items {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  body main .fv-btnGroup-item {
    width: 70%;
  }
  body main .fv-btnGroup-item span {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  body main .fv-btnGroup-item span {
    font-size: 2.5rem;
  }
}
body main .fv-footer {
  width: 100%;
  background-color: #c69c6d;
  padding-top: 8rem;
  padding-bottom: 8.5rem;
  padding-inline: 22rem;
}
body main .fv-footer h5 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
}
body main .fv-footer-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns */
  gap: 2rem;
}
body main .fv-footer-item {
  background-color: #f9fdf4;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 3.5rem;
  margin-top: 5.5rem;
}
body main .fv-footer-item p {
  font-size: 3rem;
  font-weight: 500;
  color: #c69c6d;
}
@media (max-width: 768px) {
  body main .fv-footer {
    padding-inline: 5rem;
    width: calc(100% + 10rem);
    margin-left: -5rem;
  }
  body main .fv-footer-items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 5rem;
  }
  body main .fv-footer-item {
    margin-top: 0;
  }
}
body main .question {
  padding-top: 11.5rem;
  background-color: #f4f0eb;
  width: 100%;
}
body main .question .container {
  max-width: 138rem;
  padding-top: 10rem;
  margin: auto;
}
body main .question-one.container {
  padding-top: 0;
}
body main .question-one .one-content {
  margin-top: 16rem;
}
body main .question-one .one-header, body main .question-two .one-header, body main .question-three .one-header, body main .question-four .one-header, body main .question-five .one-header, body main .question-six .one-header, body main .question-seven .one-header {
  position: relative;
}
body main .question-one .one-header-text, body main .question-two .one-header-text, body main .question-three .one-header-text, body main .question-four .one-header-text, body main .question-five .one-header-text, body main .question-six .one-header-text, body main .question-seven .one-header-text {
  width: 80rem;
  color: #c69c6d;
}
body main .question-one .one-header-text h3, body main .question-two .one-header-text h3, body main .question-three .one-header-text h3, body main .question-four .one-header-text h3, body main .question-five .one-header-text h3, body main .question-six .one-header-text h3, body main .question-seven .one-header-text h3 {
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 3rem;
}
body main .question-one .one-header-text p, body main .question-two .one-header-text p, body main .question-three .one-header-text p, body main .question-four .one-header-text p, body main .question-five .one-header-text p, body main .question-six .one-header-text p, body main .question-seven .one-header-text p {
  font-size: 2.5rem;
}
@media (max-width: 425px) {
  body main .question-one .one-header-text, body main .question-two .one-header-text, body main .question-three .one-header-text, body main .question-four .one-header-text, body main .question-five .one-header-text, body main .question-six .one-header-text, body main .question-seven .one-header-text {
    width: 100%;
  }
  body main .question-one .one-header-text h3, body main .question-two .one-header-text h3, body main .question-three .one-header-text h3, body main .question-four .one-header-text h3, body main .question-five .one-header-text h3, body main .question-six .one-header-text h3, body main .question-seven .one-header-text h3 {
    font-size: 3.5rem;
  }
}
body main .question-one .one-header-img, body main .question-two .one-header-img, body main .question-three .one-header-img, body main .question-four .one-header-img, body main .question-five .one-header-img, body main .question-six .one-header-img, body main .question-seven .one-header-img {
  position: absolute;
  width: 60rem;
  height: 44rem;
  top: 50%;
  transform: translateY(-50%);
  right: -5rem;
}
body main .question-one .one-header-img img, body main .question-two .one-header-img img, body main .question-three .one-header-img img, body main .question-four .one-header-img img, body main .question-five .one-header-img img, body main .question-six .one-header-img img, body main .question-seven .one-header-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  body main .question-one .one-header-img, body main .question-two .one-header-img, body main .question-three .one-header-img, body main .question-four .one-header-img, body main .question-five .one-header-img, body main .question-six .one-header-img, body main .question-seven .one-header-img {
    display: none;
  }
}
body main .question-one .one-content, body main .question-two .one-content, body main .question-three .one-content, body main .question-four .one-content, body main .question-five .one-content, body main .question-six .one-content, body main .question-seven .one-content {
  position: relative;
  background-color: #fff;
  padding-block: 7rem;
  padding-inline: 5rem;
}
@media (max-width: 425px) {
  body main .question-one .one-content, body main .question-two .one-content, body main .question-three .one-content, body main .question-four .one-content, body main .question-five .one-content, body main .question-six .one-content, body main .question-seven .one-content {
    padding-block: 7rem;
    padding-top: 10rem;
    padding-inline: 0;
  }
}
body main .question-one .one-content-title, body main .question-two .one-content-title, body main .question-three .one-content-title, body main .question-four .one-content-title, body main .question-five .one-content-title, body main .question-six .one-content-title, body main .question-seven .one-content-title {
  position: absolute;
  background-color: #998675;
  padding-inline: 2.5rem;
  padding-block: 3rem;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 2.5rem;
  top: -7rem;
  left: -3rem;
}
body main .question-one .one-content-title p, body main .question-two .one-content-title p, body main .question-three .one-content-title p, body main .question-four .one-content-title p, body main .question-five .one-content-title p, body main .question-six .one-content-title p, body main .question-seven .one-content-title p {
  font-size: 3rem;
  color: #fff;
}
body main .question-one .one-content-title .question-title, body main .question-two .one-content-title .question-title, body main .question-three .one-content-title .question-title, body main .question-four .one-content-title .question-title, body main .question-five .one-content-title .question-title, body main .question-six .one-content-title .question-title, body main .question-seven .one-content-title .question-title {
  background-color: #fff;
  font-size: 2.5rem;
  padding: 0.5rem;
  padding-inline: 2rem;
  color: #998675;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .question-one .one-content-items, body main .question-two .one-content-items, body main .question-three .one-content-items, body main .question-four .one-content-items, body main .question-five .one-content-items, body main .question-six .one-content-items, body main .question-seven .one-content-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 0.7rem;
  width: fit-content;
}
body main .question-one .one-content-item, body main .question-two .one-content-item, body main .question-three .one-content-item, body main .question-four .one-content-item, body main .question-five .one-content-item, body main .question-six .one-content-item, body main .question-seven .one-content-item {
  width: 31.5rem;
  height: 31.5rem;
  background-color: #c7b299;
}
body main .question-one .one-content-item img, body main .question-two .one-content-item img, body main .question-three .one-content-item img, body main .question-four .one-content-item img, body main .question-five .one-content-item img, body main .question-six .one-content-item img, body main .question-seven .one-content-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  body main .question-one .one-content-items, body main .question-two .one-content-items, body main .question-three .one-content-items, body main .question-four .one-content-items, body main .question-five .one-content-items, body main .question-six .one-content-items, body main .question-seven .one-content-items {
    grid-template-columns: repeat(3, 1fr); /* 4 columns */
    justify-content: space-between;
    margin: auto;
  }
  body main .question-one .one-content-item, body main .question-two .one-content-item, body main .question-three .one-content-item, body main .question-four .one-content-item, body main .question-five .one-content-item, body main .question-six .one-content-item, body main .question-seven .one-content-item {
    width: 28rem;
    height: 28rem;
  }
}
@media (max-width: 425px) {
  body main .question-one .one-content-title, body main .question-two .one-content-title, body main .question-three .one-content-title, body main .question-four .one-content-title, body main .question-five .one-content-title, body main .question-six .one-content-title, body main .question-seven .one-content-title {
    font-size: 3rem;
  }
  body main .question-one .one-content-title .question-title, body main .question-two .one-content-title .question-title, body main .question-three .one-content-title .question-title, body main .question-four .one-content-title .question-title, body main .question-five .one-content-title .question-title, body main .question-six .one-content-title .question-title, body main .question-seven .one-content-title .question-title {
    width: 13rem;
  }
  body main .question-one .one-content-items, body main .question-two .one-content-items, body main .question-three .one-content-items, body main .question-four .one-content-items, body main .question-five .one-content-items, body main .question-six .one-content-items, body main .question-seven .one-content-items {
    grid-template-columns: repeat(2, 1fr); /* 4 columns */
    justify-content: space-between;
    margin: auto;
    gap: 3rem;
  }
  body main .question-one .one-content-item, body main .question-two .one-content-item, body main .question-three .one-content-item, body main .question-four .one-content-item, body main .question-five .one-content-item, body main .question-six .one-content-item, body main .question-seven .one-content-item {
    width: 40vw;
    height: 40vw;
  }
}
@media (max-width: 425px) {
  body main .question-one .one-content-title, body main .question-two .one-content-title, body main .question-three .one-content-title, body main .question-four .one-content-title, body main .question-five .one-content-title, body main .question-six .one-content-title, body main .question-seven .one-content-title {
    font-size: 3rem;
  }
  body main .question-one .one-content-title .question-title, body main .question-two .one-content-title .question-title, body main .question-three .one-content-title .question-title, body main .question-four .one-content-title .question-title, body main .question-five .one-content-title .question-title, body main .question-six .one-content-title .question-title, body main .question-seven .one-content-title .question-title {
    width: 15rem;
  }
}
body main .question-three .three-content-items, body main .question-four .three-content-items, body main .question-five .three-content-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  width: 100%;
}
body main .question-three .three-content-item, body main .question-four .three-content-item, body main .question-five .three-content-item {
  width: 40rem;
  color: #998675;
}
body main .question-three .three-content-item .item-img, body main .question-four .three-content-item .item-img, body main .question-five .three-content-item .item-img {
  width: 100%;
  height: 38rem;
}
body main .question-three .three-content-item .item-img img, body main .question-four .three-content-item .item-img img, body main .question-five .three-content-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body main .question-three .three-content-item .item-text h5, body main .question-four .three-content-item .item-text h5, body main .question-five .three-content-item .item-text h5 {
  margin-top: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
}
body main .question-three .three-content-item .item-text p, body main .question-four .three-content-item .item-text p, body main .question-five .three-content-item .item-text p {
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 768px) {
  body main .question-three .three-content-items, body main .question-four .three-content-items, body main .question-five .three-content-items {
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    width: fit-content;
  }
}
@media (max-width: 425px) {
  body main .question-three .three-content-items, body main .question-four .three-content-items, body main .question-five .three-content-items {
    grid-template-columns: repeat(1, 1fr);
    margin: auto;
    width: fit-content;
    width: 100%;
  }
  body main .question-three .three-content-items .three-content-item, body main .question-four .three-content-items .three-content-item, body main .question-five .three-content-items .three-content-item {
    width: 90%;
    margin: auto;
  }
}
body main .question-four .one-content {
  background-color: #f4f0eb;
}
body main .question-four .three-content-items .item-checkbox {
  display: flex;
  align-items: center;
  margin-block: 2rem;
  gap: 1.5rem;
}
body main .question-four .three-content-items .item-checkbox input[type=checkbox] {
  appearance: none;
  width: 3rem;
  height: 3rem;
  border: 0.3rem solid #998675;
  border-radius: 0.3rem;
  cursor: pointer;
  position: relative;
}
body main .question-four .three-content-items .item-checkbox input[type=checkbox]:checked {
  background-color: #998675;
}
body main .question-four .three-content-items .item-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1.5rem;
  border: solid #fff;
  border-width: 0 0.5rem 0.5rem 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
body main .question-four .three-content-items .item-checkbox h5 {
  font-size: 2.5rem;
  font-weight: 500;
}
body main .question-five .select-items, body main .question-seven .select-items {
  padding-top: 2rem;
  padding-bottom: 7rem;
  color: #998675;
  display: flex;
  align-items: center;
  gap: 7rem;
}
body main .question-five .select-items .select-item, body main .question-seven .select-items .select-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
body main .question-five .select-items .select-item p, body main .question-seven .select-items .select-item p {
  font-size: 2.5rem;
  font-weight: 500;
}
body main .question-five .select-items .select-item select, body main .question-seven .select-items .select-item select {
  width: 17.5rem;
  height: 7rem;
  padding: 0 2rem 0 2.5rem;
  font-size: 2.5rem;
  color: #998675;
  border: 0.3rem solid #998675;
  border-radius: 0.25rem;
  background: url("data:image/svg+xml;utf8,<svg fill='%238c7a6b' height='20' width='12' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,17'/></svg>") no-repeat right 1.5rem center;
  background-size: 2rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
@media (max-width: 425px) {
  body main .question-five .select-items, body main .question-seven .select-items {
    gap: 4rem;
    align-items: center;
    justify-content: center;
  }
}
body main .question-five .three-content-items .three-content-item .item-text h5, body main .question-seven .three-content-items .three-content-item .item-text h5 {
  margin-bottom: 1.5rem;
}
body main .question-five .three-content-items .three-content-item .item-text h6, body main .question-seven .three-content-items .three-content-item .item-text h6 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
body main .question-six .one-content {
  padding-inline: 13.5rem;
}
body main .question-six .one-content .six-content-text {
  display: flex;
  flex-direction: column;
  gap: 8.5rem;
}
body main .question-six .one-content .six-content-text-item {
  color: #998675;
}
body main .question-six .one-content .six-content-text-item h4 {
  font-size: 2.5rem;
  font-weight: 500;
  border-bottom: 0.1rem solid #998675;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
}
body main .question-six .one-content .six-content-text-item .six-content-radio {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3rem;
}
body main .question-six .one-content .six-content-text-item .six-content-radio .item-one {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 22rem;
}
body main .question-six .one-content .six-content-text-item .six-content-radio .item-one span {
  font-size: 2rem;
}
body main .question-six .one-content .six-content-text-item .six-content-radio h5,
body main .question-six .one-content .six-content-text-item .six-content-radio label {
  font-size: 2.5rem;
  font-weight: 500;
}
body main .question-six .one-content .six-content-text-item .six-content-radio .item-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  width: fit-content;
  margin-top: 0;
  gap: 1rem;
}
body main .question-six .one-content .six-content-text-item .six-content-radio .item-radio input[type=radio] {
  margin: 0;
}
@media (max-width: 768px) {
  body main .question-six .one-content {
    padding-inline: 7rem;
  }
  body main .question-six .one-content .six-content-text .six-content-radio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
body main .question-seven .one-content {
  background-color: #f4f0eb;
}
body main .question-seven .one-content .seven-content-items .select-items {
  flex-direction: column;
  gap: 4rem;
}
body main .question-seven .one-content .seven-content-items .select-items .select-item {
  padding-inline: 13rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fff;
  width: 100%;
  justify-content: space-between;
}
body main .question-seven .one-content .seven-content-items .select-items .select-item select {
  width: 28rem;
}
body main .question-seven .one-content .fv-btnGroup-item {
  margin: auto;
  margin-top: 3rem;
  background-color: #c69c6d;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  body main .question-seven .one-content .seven-content-items .select-items .select-item {
    padding-inline: 5rem;
  }
  body main .question-seven .one-content .seven-content-items .select-items .select-item p {
    width: 70%;
  }
  body main .question-seven .one-content .seven-content-items .select-items .select-item select {
    width: 20rem;
  }
}
body main .question-five .one-content, body main .question-six .one-content {
  padding-top: 12rem;
}
body main .question-five .one-content-title .question-title, body main .question-six .one-content-title .question-title {
  width: 13rem;
}
@media (max-width: 375px) {
  body main .question-five .one-content, body main .question-six .one-content {
    padding-top: 15rem;
  }
  body main .question-five .one-content-title .question-title, body main .question-six .one-content-title .question-title {
    width: 20rem !important;
  }
}
@media (max-width: 425px) {
  body main .question-four .one-content-title .question-title, body main .question-five .one-content-title .question-title, body main .question-six .one-content-title .question-title {
    width: 16rem;
  }
}
body footer {
  background-color: #7a6a56;
}
body footer .footer-link-group {
  padding: 5rem;
  border-bottom: 0.2rem solid #fff;
}
body footer .footer-link-group ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  color: #fff;
  width: 50%;
}
body footer .footer-link-group ul li {
  font-size: 2.5rem;
  font-weight: 500;
}
body footer .footer-link-group ul li a {
  color: #fff;
}
@media (max-width: 768px) {
  body footer .footer-link-group ul {
    width: 100%;
  }
}
body footer .footer-copyright {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 5rem;
  color: #fff;
  font-size: 1.5rem;
}
body footer .footer-copyright .footer-company p {
  margin-bottom: 0.5rem;
}
body footer .footer-copyright .footer-company p span {
  font-size: 2rem;
}
body footer .footer-copyright .footer-company p:nth-child(1) {
  margin-bottom: 3rem;
}
body footer .footer-copyright .footer-social {
  text-align: end;
}
body footer .footer-copyright .footer-social .social-group {
  margin-bottom: 3rem;
}
body footer .footer-copyright .footer-social .social-group img {
  margin-left: 2rem;
  width: 3rem;
}

.fv-btnGroup-item {
  cursor: pointer;
}

.company-title {
  display: none;
}

.select-border {
  border: 5px solid #036ab7;
}

/*# sourceMappingURL=style.css.map */