@charset "UTF-8";
/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  display: block;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}
input:hover, input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  outline: none;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
global > color
------------------------------
*/
/*!
global > content-width
------------------------------
*/
/*!
global > font
------------------------------
*/
/*!
foundation > base
------------------------------
*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #593718;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

/*!
utility > utility
------------------------------
*/
.mt-40 {
  margin-top: 40px !important;
}
@media screen and (min-width: 768px) {
  .mt-40 {
    margin-top: 100px !important;
  }
}

.ptb-64 {
  padding: 64px 0 !important;
}
@media screen and (min-width: 768px) {
  .ptb-64 {
    padding: 120px 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: inline-block;
  }
}

.visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
component > button
------------------------------
*/
.button {
  display: inline-block;
  max-width: 240px;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  background-color: #8c715a;
  border: 2px solid #8c715a;
  border-radius: 40px;
  color: #fffff0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-align: center;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 768px) {
  .button {
    max-width: 400px;
    height: 60px;
    font-size: 24px;
  }
}
.button:hover {
  opacity: 0.7;
}

/*!
component > title
------------------------------
*/
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .title-en {
    font-size: 64px;
  }
}

.title-jp {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .title-jp {
    font-size: 22px;
  }
}

/*!
component > page-top
-----------------------------
*/
.page-top {
  position: fixed;
  right: 20px;
  bottom: 13px;
  background-color: #f2f2f2;
  border: 2px solid #d8a7a7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  width: 60px;
  height: 60px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #8c715a;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .page-top {
    bottom: 20px;
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
}
.page-top.is-show {
  opacity: 1;
}

/*!
layout > header
------------------------------
*/
.header {
  width: 100%;
  height: 60px;
  display: grid;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}
.header.scrolled {
  background-color: #D9D5D2;
}

.header-inner {
  width: 100%;
  padding-inline: 20px;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header-inner {
    max-width: 1320px;
    padding-inline: 30px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1080px) {
  .header-inner {
    padding-inline: 60px;
  }
}

.header-logo {
  width: 140px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 200px;
  }
}

.header-logo__img {
  aspect-ratio: 400/140;
}

.header-icon {
  width: 38px;
  height: 26px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header-icon {
    display: none;
  }
}
.header-icon.is-checked .header-icon__bar:nth-child(1), .header-icon.is-checked .header-icon__bar:nth-child(3) {
  top: 13px;
}
.header-icon.is-checked .header-icon__bar:nth-child(1) {
  transform: rotate(45deg);
}
.header-icon.is-checked .header-icon__bar:nth-child(2) {
  display: none;
}
.header-icon.is-checked .header-icon__bar:nth-child(3) {
  transform: rotate(-45deg);
}

.header-icon__bar {
  position: absolute;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #8c715a;
  border-radius: 24px;
  transition: transform 0.4s;
}
.header-icon__bar:nth-child(1) {
  top: 0;
}
.header-icon__bar:nth-child(2) {
  top: 12px;
}
.header-icon__bar:nth-child(3) {
  top: 24px;
}

.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 225px;
  height: 100%;
  background-color: #d8a7a7;
  color: #8c715a;
  padding: 80px 40px;
  transform: translateX(100%);
  transition: transform 0.4s linear;
}
.header-nav.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header-nav {
    position: static;
    padding: 0;
    background-color: transparent;
    width: auto;
    height: auto;
    transform: none;
  }
}

.header-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .header-nav__list {
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .header-nav__list {
    gap: 40px;
  }
}

.header-nav__link {
  display: inline-block;
  padding-block: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: opacity 0.3s;
}
.header-nav__link:hover {
  opacity: 0.6;
  text-decoration: underline;
}

/*!
layout > inner
------------------------------
*/
.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1320px;
    padding-inline: 60px;
    margin: 0 auto;
  }
}

.inner-s {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner-s {
    max-width: 960px;
    padding-inline: 60px;
    margin: 0 auto;
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  padding-block: 10px;
  background-color: #D9D5D2;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 140px;
}

.footer-logo__img {
  aspect-ratio: 400/140;
}

.footer-copyright {
  font-size: 12px;
}

/*!
page > top > top-fv
------------------------------
*/
.fv {
  height: 667px;
  background: url(../images/bg-top_sp.jpg) no-repeat left center/cover;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 690px;
    background-image: url(../images/bg-top.jpg);
  }
}

.fv-inner {
  height: inherit;
  position: relative;
}

.fv-message {
  color: #fffff0;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 76px;
  right: 20px;
}
@media screen and (min-width: 500px) {
  .fv-message {
    top: 58px;
  }
}
@media screen and (min-width: 768px) {
  .fv-message {
    bottom: 12px;
    top: auto;
    left: 40px;
    right: auto;
  }
}

.fv-title {
  font-size: 40px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .fv-title {
    font-size: 46px;
  }
}

.fv-sub-title {
  font-size: 24px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .fv-sub-title {
    text-align: left;
    padding-left: 30px;
  }
}

/*!
page > top > top-about
------------------------------
*/
.about-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .about-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .about-top__image {
    width: 40%;
    flex-shrink: 0;
  }
}
.about-top__image img {
  border-radius: 200px 200px 0 0;
}

.about-sub-title {
  display: flex;
  flex-direction: column;
  padding-bottom: 6px;
  border-bottom: 2px solid #d8a7a7;
}

.about-sub-title__en {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about-sub-title__en {
    font-size: 34px;
  }
}

@media screen and (min-width: 768px) {
  .about-sub-title__jp {
    font-size: 20px;
  }
}

.about-text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about-text {
    margin-top: 30px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1080px) {
  .about-text {
    font-size: 18px;
  }
}
.about-text span {
  display: block;
}
.about-text span:nth-of-type(2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about-text span:nth-of-type(2) {
    margin-top: 24px;
  }
}

.about-hobby {
  margin-top: 24px;
}

.about-hobby__title {
  font-size: 24px;
  font-weight: 700;
}

.about-hobby__item {
  padding-block: 6px;
  padding-left: 38px;
  font-size: 14px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-hobby__item {
    font-size: 16px;
  }
}
.about-hobby__item::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/icon-arrow.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .about-hobby__item::before {
    width: 16px;
    height: 16px;
  }
}

.about-bottom {
  display: flex;
  flex-direction: column;
}

.about-bottom__list {
  background-color: #d8a7a7;
  border-radius: 24px;
  padding: 40px;
}

.about-bottom__list-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about-bottom__list-title {
    font-size: 24px;
    padding-left: 20px;
    border-left: 3px solid #593718;
  }
}

.about-bottom__items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .about-bottom__items {
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    column-gap: 20px;
  }
}

.about-bottom__item {
  padding-left: 30px;
  position: relative;
}
.about-bottom__item::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon-check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-bottom__item span {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .about-bottom__item span {
    font-size: 18px;
  }
}

.about-bottom__message-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 2px dashed #8c715a;
}
@media screen and (min-width: 768px) {
  .about-bottom__message-title {
    font-size: 24px;
  }
}

.about-bottom__message-text {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about-bottom__message-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .about-bottom__message-text {
    font-size: 18px;
  }
}
.about-bottom__message-text span {
  display: block;
}
.about-bottom__message-text span:nth-of-type(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .about-bottom__message-text span:nth-of-type(2) {
    margin-top: 18px;
  }
}

/*!
page > top > top-service
------------------------------
*/
.service {
  background-color: #bfb2aa;
}

.service-cards {
  background-color: #f2f2f2;
  border-radius: 20px;
  color: #8c715a;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 30px;
}
@media screen and (min-width: 768px) {
  .service-cards {
    border-radius: 40px;
    flex-direction: row;
    gap: 5%;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .service-card {
    width: 33.3333333333%;
  }
}

.service-card__head {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service-card__head {
    font-size: 17px;
    min-height: 87px;
    display: grid;
    align-items: end;
  }
}
@media screen and (min-width: 1080px) {
  .service-card__head {
    font-size: 24px;
  }
}
.service-card__head::before {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #d8a7a7;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-card__img {
  max-width: 140px;
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .service-card__img {
    width: 150px;
  }
}
@media screen and (min-width: 1080px) {
  .service-card__img {
    width: 200px;
  }
}

.service-card__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-card__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .service-card__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .service-card__text br {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .service-card__text br {
    display: inline-block;
  }
}

/*!
page > top > top-works
------------------------------
*/
.works-text {
  margin-top: 30px;
  margin-inline: auto;
  width: fit-content;
  font-size: 14px;
  padding: 12px 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .works-text {
    margin-top: 40px;
    padding: 18px 24px;
    text-align: center;
    font-size: 16px;
  }
}
.works-text span {
  font-weight: 600;
}
.works-text::before, .works-text::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .works-text::before, .works-text::after {
    width: 40px;
    height: 40px;
  }
}
.works-text::before {
  border-left: 1px solid #d8a7a7;
  border-top: 1px solid #d8a7a7;
  top: 0;
  left: 0;
  border-radius: 4px 0 0 0;
}
@media screen and (min-width: 768px) {
  .works-text::before {
    border-width: 3px;
  }
}
.works-text::after {
  border-right: 1px solid #d8a7a7;
  border-bottom: 1px solid #d8a7a7;
  bottom: 0;
  right: 0;
  border-radius: 0 0 4px 0;
}
@media screen and (min-width: 768px) {
  .works-text::after {
    border-width: 3px;
  }
}

.works-slider {
  margin-top: 48px;
  overflow: hidden;
}

.swiper {
  padding-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .swiper {
    padding-bottom: 60px;
  }
}

.works-wrapper {
  display: flex;
}

.works-slide {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .works-slide {
    max-width: 500px;
  }
}

.works-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet-active {
  background-color: #d8a7a7;
}

.works-prev,
.works-next {
  width: 30px;
  height: 30px;
  bottom: 0;
  top: auto;
}
@media screen and (min-width: 768px) {
  .works-prev,
  .works-next {
    width: 40px;
    height: 40px;
  }
}
.works-prev::after,
.works-next::after {
  display: none;
}

.works-prev {
  left: 0;
  background: url(../images/icon-arrow-left.svg) no-repeat center/contain;
}

.works-next {
  right: 0;
  background: url(../images/icon-arrow-right.svg) no-repeat center/contain;
}

.works-scrollbar {
  width: 70% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
@media screen and (min-width: 768px) {
  .works-scrollbar {
    width: 80% !important;
  }
}

.swiper-scrollbar-drag {
  background-color: #d8a7a7;
}

.works-card {
  overflow: hidden;
  position: relative;
}
.works-card::before {
  content: "詳細を見る";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  text-decoration: underline;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.works-card:hover::before {
  opacity: 0.6;
}
.works-card:hover .works-card__image img {
  transform: scale(1.1);
}

.works-card__image img {
  border-radius: 8px 8px 0 0;
  aspect-ratio: 335/180;
  transition: transform 0.7s ease;
}

.works-card__body {
  padding: 28px 10px;
  text-align: left;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}

.works-card__title {
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  padding-bottom: 8px;
  position: relative;
}
.works-card__title::before {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #d8a7a7;
  position: absolute;
  bottom: 0;
  left: 0;
}
.works-card__title span {
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
}

.works-card__skill {
  margin-top: 16px;
  font-size: 14px;
}

.works-card__time {
  font-size: 14px;
}

/*!
page > top > top-flow
------------------------------
*/
.flow {
  background-color: #bfb2aa;
}

.flow-box {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .flow-box {
    border-radius: 40px;
    padding: 60px 42px;
  }
}

.flow-message {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-message {
    margin-top: 40px;
    font-size: 16px;
  }
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .flow-list {
    gap: 60px;
  }
}

.flow-item {
  display: flex;
  gap: 14px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-item {
    gap: 40px;
  }
}
.flow-item::before {
  content: "";
  position: absolute;
  top: 67px;
  left: 33.5px;
  width: 2px;
  height: calc(100% - 67px + 26px);
  background-color: #D9D5D2;
}
@media screen and (min-width: 768px) {
  .flow-item::before {
    top: 100px;
    left: 60px;
    height: calc(100% - 100px + 60px);
  }
}
.flow-item:last-of-type::before {
  display: none;
}

.flow-item__image {
  flex-shrink: 0;
  width: 67px;
  height: 67px;
  border-radius: 9999px;
  background-color: #d8a7a7;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-item__image {
    width: 120px;
    height: 120px;
  }
}
.flow-item__image img {
  width: 32px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .flow-item__image img {
    width: 52px;
  }
}

.flow-item__wrapper {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .flow-item__wrapper {
    margin-top: 16px;
  }
}

.flow-item__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .flow-item__head {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

.flow-item__tag {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  font-size: 12px;
  border: 1px solid;
  border-radius: 40px;
  width: fit-content;
  padding: 6px 12px;
}
@media screen and (min-width: 768px) {
  .flow-item__tag {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.flow-item__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .flow-item__title {
    font-size: 21px;
  }
}

.flow-item__text {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .flow-item__text {
    font-size: 16px;
  }
}

/*!
page > top > qa
------------------------------
*/
.qa-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-box {
  background-color: #fff;
  border: 2px solid #bfb2aa;
  border-radius: 20px;
  overflow: hidden;
}
.qa-box.is-open .qa-box__head::after {
  opacity: 0;
}

.qa-box__head {
  width: 100%;
  padding: 12px 40px 14px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  position: relative;
}
.qa-box__head::before, .qa-box__head::after {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #d8a7a7;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.qa-box__head::after {
  opacity: 1;
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 0.2s;
}

.qa-box__head-icon {
  color: #d8a7a7;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.qa-box__head-text {
  color: #8c715a;
  font-size: 14px;
  text-align: left;
}

.qa-box__body {
  display: none;
}

.qa-box__a {
  padding: 8px 10px 12px;
  display: flex;
  align-items: start;
  gap: 8px;
}

.qa-box__a-icon {
  color: #d8a7a7;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.qa-box__a-text {
  margin-top: 5px;
  color: #8c715a;
  font-size: 14px;
  font-feature-settings: "palt";
}

/*!
page > top > top-contact
------------------------------
*/
.contact-content {
  background-color: #bfb2aa;
  border-radius: 20px;
  padding: 60px 20px;
  color: #fffff0;
}
@media screen and (min-width: 768px) {
  .contact-content {
    border-radius: 40px;
    padding: 80px 60px;
  }
}

.contact-text {
  margin-top: 24px;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-text {
    margin-top: 40px;
    font-size: 16px;
  }
}
.contact-text span {
  display: block;
}
.contact-text span:nth-of-type(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact-text span:nth-of-type(2) {
    margin-top: 14px;
  }
}

.contact-form {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 80px;
  }
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .form-fields {
    gap: 40px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form-field {
    flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .form-field__head {
    min-width: 170px;
    flex-shrink: 0;
  }
}

.form-field__label {
  line-height: 1;
  padding-left: 16px;
  position: relative;
}
.form-field__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #8c715a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .form-field__item {
    flex-grow: 1;
  }
}

.input-text {
  background-color: #fff;
  width: 100%;
  height: 40px;
  padding: 6px 10px;
  border: 3px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  color: #593718;
}
@media screen and (min-width: 768px) {
  .input-text {
    height: 50px;
    padding: 8px 12px;
    font-size: 16px;
  }
}
.input-text::placeholder {
  color: #D9D5D2;
}
.input-text:hover, .input-text:focus {
  border-color: #d8a7a7;
}

.select {
  background-color: #fff;
  width: 100%;
  height: 40px;
  padding: 6px 10px;
  border: 3px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  color: #593718;
}
@media screen and (min-width: 768px) {
  .select {
    height: 50px;
    padding: 8px 12px;
    font-size: 16px;
  }
}
.select:hover, .select:focus {
  border-color: #d8a7a7;
}

.textarea {
  background-color: #fff;
  width: 100%;
  height: 120px;
  padding: 8px 10px;
  border: 3px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  color: #593718;
}
@media screen and (min-width: 768px) {
  .textarea {
    height: 160px;
    padding: 10px 12px;
    font-size: 16px;
  }
}
.textarea:hover, .textarea:focus {
  border-color: #d8a7a7;
}

.contact-privacy {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-privacy {
    margin-top: 40px;
  }
}

.contact-checkbox {
  text-align: center;
}

.input-checkbox:checked + .contact-checkbox__text::after {
  opacity: 1;
}

.contact-checkbox__text {
  padding-left: 30px;
  position: relative;
}
.contact-checkbox__text::before, .contact-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contact-checkbox__text::before {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 4px;
  left: 0;
}
.contact-checkbox__text::after {
  width: 18px;
  height: 18px;
  background: url(../images/icon-contact-check.svg) no-repeat center/contain;
  left: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-checkbox__text a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.contact-checkbox__text a:hover {
  opacity: 0.8;
}

.contact-button-wrapper {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-button-wrapper {
    margin-top: 52px;
  }
}