@charset "UTF-8";
/* ==============================================================
# 見出し・本文
============================================================== */
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2");
}
/* ==============================================================
# 見出し
============================================================== */
@font-face {
  font-family: "Shippori Mincho";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../font/ShipporiMincho-Bold.woff2") format("woff2");
}
* {
  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;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  font: inherit;
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  cursor: pointer;
  text-decoration: none;
}

html {
  overflow-x: auto;
}

body {
  color: #2B2B2B;
  background: #FDFDFD;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
}

.scroll-prevent {
  height: 100%;
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: #2B2B2B;
  transition: all 0.3s;
}

/* ==============================================================
# フォント
============================================================== */
.en {
  font-family: "Karla", "Noto Sans JP", sans-serif;
}

.bold {
  font-weight: 700;
}

.title {
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
}

/* ==============================================================
# レイアウト
============================================================== */
.l-section {
  padding: 6rem 0;
}

.dib {
  display: inline-block;
}

.center {
  text-align: center;
}

/* ==============================================================
# 背景色
============================================================== */
.bg-primary {
  background: #FDFDFD;
}

.bg-secondary {
  background: #FAF8F3;
}

.bg-tertiary {
  background: #F7F3EA;
}

/* ==============================================================
# 表示/非表示
============================================================== */
.md {
  display: none;
}

.sm {
  display: none;
}

.sp {
  display: none;
}

.tab {
  display: none;
}

.pc {
  display: none;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  color: #fff;
  background: #A8854A;
  width: 100%;
  max-width: 20rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 0.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.c-btn[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 4px;
  -webkit-mask: url(../img/common/icon_blank.svg);
          mask: url(../img/common/icon_blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  transition: background 0.3s;
}

.c-form__row {
  display: flex;
  align-items: start;
  gap: 0.25rem 1.25rem;
}

.c-form__row:not(:first-child) {
  margin-top: 1.5rem;
}

.c-form__row--textarea {
  align-items: flex-start;
}

.c-form__label {
  flex: 0 0 11.25rem;
  display: flex;
  gap: 0.25rem;
  padding-top: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-form__required {
  color: #A8854A;
  font-size: 0.875rem;
}

.c-form__field {
  flex: 0 1 100%;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  width: 100%;
  border: 1px solid #E7E0D0;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 1rem;
  line-height: 1.5;
  color: #2B2B2B;
}
.c-form__input::-moz-placeholder, .c-form__select::-moz-placeholder, .c-form__textarea::-moz-placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}
.c-form__input::placeholder,
.c-form__select::placeholder,
.c-form__textarea::placeholder {
  color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}

.c-form__select {
  max-width: 20rem;
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: #A8854A;
}

.c-form__input {
  height: 3rem;
  padding: 0.5rem 1rem;
}

.c-form__select {
  height: 3rem;
  padding: 0.5rem 1rem;
}

.c-form__textarea {
  min-height: 20rem;
  padding: 0.5rem 1rem;
  resize: vertical;
}

.c-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B49B83' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem auto;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  cursor: pointer;
}
.c-form__checkbox input {
  display: none;
}
.c-form__checkbox input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.c-form__checkbox label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.c-form__checkbox label::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0;
  border: 1px solid #E7E0D0;
  border-radius: 0.125rem;
}
.c-form__checkbox label::after {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0.4375rem;
  transform: rotate(45deg);
  width: 0.3125rem;
  height: 0.625rem;
  border: solid #A8854A;
  border-width: 0 2px 2px 0;
  opacity: 0;
  visibility: hidden;
}

/* ==============================================================
# Privacy Policy
============================================================== */
.p-privacy {
  max-height: 12rem;
  overflow-y: auto;
  border: 1px solid #E7E0D0;
  border-radius: 0.25rem;
  padding: 1rem;
  font-size: 0.75rem;
  background: #fff;
}

.p-privacy__lead {
  margin-bottom: 1rem;
  font-weight: 400;
}
.p-privacy__lead a {
  text-decoration: underline;
}

.p-privacy__item:nth-child(n+2) {
  margin-top: 1.5rem;
}

.p-privacy__title {
  font-weight: 500;
  font-size: 0.875rem;
  padding-left: 0.75rem;
  position: relative;
}
.p-privacy__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: #16243F;
}

.p-privacy__body {
  margin-top: 0.5rem;
  font-weight: 400;
}
.p-privacy__body ul {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  counter-reset: number;
}
.p-privacy__body li {
  padding-left: 1rem;
  text-indent: -1rem;
}
.p-privacy__body li::before {
  counter-increment: number;
  content: counter(number) ".";
}

/* ==============================================================
# Submit
============================================================== */
.c-form__btn {
  margin-top: 2rem;
}
.c-form__btn .c-btn {
  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

/* ==============================================================
# Contact Form 7
============================================================== */
.wpcf7-select option:first-child {
  color: gray;
}

.wpcf7-form-control-wrap[data-name=acceptance] {
  margin-top: 2rem;
  display: inline-flex;
  align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: inline-block;
}
.wpcf7-form-control-wrap[data-name=acceptance] .wpcf7-acceptance {
  display: inline-block;
}
.wpcf7-form-control-wrap[data-name=acceptance] .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form-control-wrap[data-name=acceptance] .wpcf7-list-item > label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.wpcf7-form-control-wrap[data-name=acceptance] input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wpcf7-form-control-wrap[data-name=acceptance] .wpcf7-list-item-label {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}
.wpcf7-form-control-wrap[data-name=acceptance] .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #2B2B2B;
  box-sizing: border-box;
}
.wpcf7-form-control-wrap[data-name=acceptance] input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #16243F;
}
.wpcf7-form-control-wrap[data-name=acceptance] input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.375rem;
  width: 0.1875rem;
  height: 0.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.wpcf7-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.wpcf7-submit:disabled + span + .c-form__submit-btn {
  background: #eee;
  border-color: #eee;
  color: #aaa;
}
.wpcf7-submit:disabled + span + .c-form__submit-btn::after {
  background: #aaa;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table tr {
  border-bottom: 1px solid #DDD;
}
.c-table tr:first-child {
  border-top: 1px solid #DDD;
}
.c-table th,
.c-table td {
  border-collapse: collapse;
  font-size: 0.875rem;
}
.c-table th {
  font-weight: bold;
  width: 200px;
  padding: 24px 16px;
  text-align: left;
  color: #A8854A;
}
.c-table td {
  padding: 24px 16px 24px 0;
}
.c-table td a[href*="tel:"] {
  pointer-events: none;
}
.c-table td a {
  text-decoration: underline;
}
.c-table td a[target=_blank] {
  position: relative;
}
.c-table td a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  -webkit-mask: url(../img/common/blank.svg);
          mask: url(../img/common/blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #2B2B2B;
  transition: background 0.3s;
  margin-right: 4px;
}
.c-table td ul {
  margin-bottom: 1rem;
}
.c-table td ul li:nth-child(n+2) {
  margin-top: 1rem;
}
.c-table td ul .title small {
  font-size: 0.75rem;
}

.c-section-head-1 {
  position: relative;
  padding-bottom: 2rem;
}

.c-section-head-1__title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  font-family: "TsunagiGothic", sans-serif;
  line-height: 1.3;
}

.bg-trigger {
  opacity: 0;
}

/*背景色が伸びて出現 共通*/
.bg-extend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

.bg-extend--slow {
  animation-delay: 1s;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bg-appear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.bg-appear--slow {
  animation-delay: 1.5s;
  animation-duration: 0.5s;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bg-LR-extend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-LR-extend--slow::before {
  animation-delay: 1s;
}

.bg-LR-extend--white::before {
  background-color: #16243F;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*------------------------------------------------------------------------------
animation
------------------------------------------------------------------------------*/
@keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anm {
  opacity: 0;
}
.anm.is-animated {
  animation: fadeIn 0.8s forwards;
}

.anm-up {
  opacity: 0;
  transform: translateY(30px);
}
.anm-up.is-animated {
  animation: fadeInUp 0.8s forwards;
}

.anm-left {
  opacity: 0;
  transform: translateX(30px);
}
.anm-left.is-animated {
  animation: fadeInLeft 0.8s forwards;
}

.anm-right {
  opacity: 0;
  transform: translateX(-30px);
}
.anm-right.is-animated {
  animation: fadeInRight 0.8s forwards;
}

.anm-down {
  opacity: 0;
  transform: translateY(-30px);
}
.anm-down.is-animated {
  animation: fadeInDown 0.8s forwards;
}

.anm-list > * {
  opacity: 0;
  transform: translateY(30px);
}

.anm-list > *.is-animated {
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-accordion:nth-child(n+2) {
  margin-top: 2rem;
}

.c-accordion__head {
  background: #FAF8F3;
  position: relative;
  cursor: pointer;
  padding: 1rem 2rem 1rem 1rem;
  display: flex;
  gap: 0.5rem;
}
.c-accordion__head::before, .c-accordion__head::after {
  content: "";
  position: absolute;
  background: #2B2B2B;
  width: 2px;
  height: 0.8rem;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.c-accordion__head::after {
  transform: translateY(-50%) rotate(90deg);
}

.c-accordion__icon {
  font-family: "Karla", "Noto Sans JP", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
}

.c-accordion__q {
  color: #16243F;
}

.c-accordion__a {
  color: #A8854A;
}

.c-accordion__content {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1rem 0;
}

.c-accordion__text {
  font-weight: normal;
}

.js-accordion-title.open::before {
  transform: translateY(-50%) rotate(90deg);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #FDFDFD;
  border-bottom: 1px solid rgba(168, 133, 74, 0.25);
}
.l-header__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
}

.l-header__logo {
  line-height: 1;
  position: relative;
}
.l-header__logo img {
  margin-top: 0.5rem;
  width: 10rem;
}

.l-header__logo-label {
  font-size: 0.625rem;
  color: #16243F;
  letter-spacing: 0.1em;
}

.l-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #A8854A;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.l-header__btn::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-mask: url(../img/common/icon_arrow02.svg);
          mask: url(../img/common/icon_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  transition: background 0.3s;
}
.l-header__btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-footer {
  background: #101A2E;
}

.l-footer__inner {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 1.75rem 2.5rem;
  text-align: center;
}

.l-footer__copyright {
  display: block;
  color: #fff;
  font-size: 0.75rem;
}

.color-accent {
  color: #A8854A;
}

/* ==============================================================
# 共通
============================================================== */
.p-home__container {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.p-home__head {
  text-align: center;
  padding-bottom: 3rem;
}

.p-home__overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #A8854A;
  margin-bottom: 0.5rem;
}

.p-home__title {
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #16243F;
}

.p-home__lead {
  margin-top: 1.5rem;
  line-height: 1.8;
}

.l-main {
  padding-top: 5rem;
}

/* ==============================================================
# FV
============================================================== */
.p-home__fv {
  background: linear-gradient(to bottom, #FDFDFD, #FAF8F3);
  position: relative;
  height: calc(100dvh - 5rem);
  max-height: 65rem;
  min-height: 40rem;
  z-index: 1;
}
.p-home__fv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/illust_fv_bg.svg) no-repeat center center/cover;
  opacity: 0.05;
  z-index: -1;
}

.p-home__fv-container {
  height: 100%;
  padding: 0 2.5rem;
  max-width: 107rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem 3rem;
}

.p-home__fv-head {
  width: 70%;
  margin-top: -5rem;
}

.p-home__fv-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #A8854A;
}

.p-home__fv-title {
  margin-top: 1rem;
  font-weight: 700;
  color: #16243F;
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.p-home__fv-title .size-xl {
  display: inline-block;
  font-size: 4rem;
  color: #fff;
  background: #16243F;
  padding: 0 0.5rem;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
}

.p-home__fv-title-sub {
  margin-top: 3rem;
  font-weight: 700;
  color: #16243F;
  font-size: 1.125rem;
}

.p-home__fv-text {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.p-home__fv-btn-wrap {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-home__fv-btn .c-btn {
  margin: 0;
  padding: 1rem;
}
.p-home__fv-btn .c-btn::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask: url(../img/common/icon_arrow02.svg);
          mask: url(../img/common/icon_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  transition: background 0.3s;
}

.p-home__fv-badges {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-home__fv-badge {
  max-width: 15rem;
}

.p-home__fv-visual {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  width: 45%;
  text-align: right;
}
.p-home__fv-visual img {
  width: 90%;
  margin: 0 auto;
}

/* ==============================================================
# こんなお悩み、ありませんか？
============================================================== */
.p-home__worry {
  background: #FAF8F3;
}

.p-home__worry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.p-home__worry-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FDFDFD;
  border: 1px solid #E7E0D0;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 3px 12px rgba(22, 36, 63, 0.05);
  line-height: 1.5;
}

.p-home__worry-icon {
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  background: #EEF1F5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-home__worry-icon img {
  width: 2rem;
  aspect-ratio: 1/1;
}

.p-home__worry-text {
  font-weight: 500;
  font-size: 0.875rem;
}

/* ==============================================================
# 資料・販促物の"伝わりにくさ"を整理します
============================================================== */
.p-home__service {
  position: relative;
}
.p-home__service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 5rem;
  background: url(../img/common/icon_arrow01.svg) no-repeat center center/contain;
}

.p-home__service-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.p-home__service-item {
  padding: 1.5rem 1rem 1rem;
  border: 1px solid #E7E0D0;
  border-radius: 0.25rem;
  border-top-width: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  box-shadow: 0 3px 12px rgba(22, 36, 63, 0.05);
}

.p-home__service-num {
  position: absolute;
  bottom: 0;
  right: 1rem;
  font-size: 3rem;
  opacity: 0.05;
  color: #A8854A;
  line-height: 1;
}

.p-home__service-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
}

.p-home__service-name {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  min-height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #16243F;
}

.p-home__service-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ==============================================================
# 私たちの"支援のかたち"
============================================================== */
.p-home__support {
  background: #F7F3EA;
}

.p-home__support-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.p-home__support-item {
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #E7E0D0;
  box-shadow: 0 3px 12px rgba(22, 36, 63, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.p-home__support-item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-mask: url(../img/common/icon_arrow02.svg);
          mask: url(../img/common/icon_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #A8854A;
  transition: background 0.3s;
}

.p-home__support-step {
  display: block;
  font-size: 0.75rem;
  color: #A8854A;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-home__support-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #EEF1F5;
  border-radius: 50%;
}

.p-home__support-icon {
  width: 2rem;
  height: 2rem;
}

.p-home__support-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  color: #16243F;
}

.p-home__support-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-home__support-note {
  text-align: center;
  margin-top: 2.5rem;
  color: #A8854A;
}

/* ==============================================================
# AIで"作れる"時代だからこそ、"伝わるか"を整える。
============================================================== */
.p-home__compare {
  background: #16243F;
  color: #fff;
}
.p-home__compare .p-home__title {
  color: #fff;
}
.p-home__compare .p-home__title .color-accent {
  color: #D8B96A;
}

.p-home__compare-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.p-home__compare-col {
  background: #FAF8F3;
  border-radius: 0.5rem;
  padding: 2rem;
}

.p-home__compare-col--negative {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.p-home__compare-col--negative .p-home__compare-name {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-home__compare-col--negative .p-home__compare-item {
  font-size: 0.875rem;
}
.p-home__compare-col--negative .p-home__compare-item:nth-child(n+2) {
  margin-top: 0.5rem;
}

.p-home__compare-col--positive {
  background: #fff;
  border: 2px solid #A8854A;
  color: #16243F;
}
.p-home__compare-col--positive .p-home__compare-name {
  border-bottom: 1px solid #A8854A;
}

.p-home__compare-name {
  text-align: center;
  font-weight: 700;
  padding-bottom: 1rem;
  font-size: 1rem;
}
.p-home__compare-name .plus {
  color: #A8854A;
  font-size: 90%;
  margin: 0 0.25rem;
}

.p-home__compare-list {
  margin-top: 1.5rem;
}

.p-home__compare-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.p-home__compare-item:not(:first-child) {
  margin-top: 0.75rem;
}

.p-home__compare-icon {
  flex: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

/* ==============================================================
# 3,000件以上の制作・支援実績
============================================================== */
.p-home__achievement .p-home__title .size-l {
  font-size: 170%;
}

.p-home__achievement-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.p-home__achievement-item {
  text-align: center;
  padding: 2rem 1rem;
}
.p-home__achievement-item:nth-child(n+5) {
  border-top: 1px solid #E7E0D0;
}
.p-home__achievement-item:not(:nth-child(4n+1)) {
  border-left: 1px solid #E7E0D0;
}

.p-home__achievement-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
}

.p-home__achievement-name {
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.p-home__achievement-note {
  text-align: center;
  margin-top: 2rem;
}

.p-home__pet {
  position: relative;
  max-width: 55rem;
  margin: 4rem auto 0;
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid #A8854A;
  box-shadow: 0 3px 12px rgba(22, 36, 63, 0.05);
}

.p-home__pet-illust {
  position: absolute;
  bottom: 0;
  width: auto;
}
.p-home__pet-illust--dog {
  height: 7.5rem;
  left: 1.5rem;
}
.p-home__pet-illust--cat {
  height: 5rem;
  right: 1.5rem;
}

.p-home__pet-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  color: #A8854A;
  position: relative;
  z-index: 1;
}

.p-home__pet-text {
  font-size: 0.9375rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.p-home__pet-btn {
  margin-top: 2rem;
}

/* ==============================================================
# Kanae Createsとは？
============================================================== */
.p-home__about {
  background: #F7F3EA;
}

.p-home__about-grid {
  display: grid;
  grid-template-columns: calc(60% - 2.5rem) 40%;
  gap: 2.5rem;
  align-items: center;
}

.p-home__about-text {
  font-size: 0.9375rem;
}

.p-home__about-profile {
  border-left: 3px solid #A8854A;
  padding-left: 0.75rem;
  margin-top: 2rem;
}

.p-home__about-profile-role {
  font-size: 0.75rem;
  color: #A8854A;
  font-weight: 700;
}

.p-home__about-profile-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-home__about-bio {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.p-home__about-license {
  margin-top: 1rem;
}
.p-home__about-license p {
  font-size: 0.875rem;
  font-weight: 700;
  padding-left: 1rem;
  position: relative;
}
.p-home__about-license p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: #A8854A;
}
.p-home__about-license ul {
  padding-left: 0.5rem;
}
.p-home__about-license li {
  position: relative;
  font-size: 0.875rem;
  padding-left: 1rem;
}
.p-home__about-license li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background: #A8854A;
}

.p-home__about-media {
  width: 100%;
  background: #FDFDFD;
  position: relative;
}
.p-home__about-media img {
  border-radius: 0.5rem;
  aspect-ratio: 3/4;
}
.p-home__about-media::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 1px solid #A8854A;
  z-index: -1;
}

/* ==============================================================
# ご相談の流れ
============================================================== */
.p-home__flow {
  background: #FAF8F3;
}

.p-home__flow-list {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}
.p-home__flow-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #A8854A;
}

.p-home__flow-item {
  flex: 1;
  position: relative;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #E7E0D0;
  box-shadow: 0 3px 12px rgba(22, 36, 63, 0.05);
}
.p-home__flow-item:last-child .p-home__flow-num {
  background: #A8854A;
}

.p-home__flow-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-home__flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #16243F;
  color: #fff;
  font-weight: 700;
}

.p-home__flow-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-home__flow-text {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ==============================================================
# 最終CTA・お問い合わせフォーム
============================================================== */
.p-home__contact {
  background: linear-gradient(to bottom, #1B2C4C, #16243F, #101A2E);
  color: #fff;
}
.p-home__contact .p-home__overline {
  color: #CDB98A;
}
.p-home__contact .p-home__title {
  color: #fff;
}
.p-home__contact .color-accent {
  color: #D8B96A;
}

.p-home__contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.p-home__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0.25rem;
  padding: 1rem 1rem;
  font-weight: 700;
  width: 100%;
  max-width: 15rem;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}
.p-home__contact-link::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  transition: background 0.3s;
}
.p-home__contact-link.coconala::before {
  -webkit-mask: url(../img/common/icon_chat.svg);
          mask: url(../img/common/icon_chat.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.p-home__contact-link.instagram::before {
  -webkit-mask: url(../img/common/icon_instagram.svg);
          mask: url(../img/common/icon_instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.p-home__contact-form-wrap {
  background: #FDFDFD;
  border-radius: 0.5rem;
  max-width: 60rem;
  margin: 3rem auto 0;
  padding: 2rem;
  color: #2B2B2B;
}

/* ==============================================================
# PHP工房お問い合わせフォーム
============================================================== */
.formTable {
  width: 100%;
  margin-top: 3rem;
  border-collapse: collapse;
}

.formTable tr {
  border-top: 1px solid #ddd;
}

.formTable tr:last-child {
  border-bottom: 1px solid #ddd;
}

.formTable th,
.formTable td {
  padding: 1rem 1rem;
  font-size: 1rem;
  text-align: left;
  vertical-align: top;
}

.formTable th {
  width: 28%;
  font-weight: 700;
  background-color: #FAF8F3;
}

.formTable td {
  width: 72%;
  background-color: #fff;
}

.c-back__btn {
  margin-top: 1rem;
}

.c-btn--back {
  background: transparent;
  color: #999;
  border: none;
  border-radius: 0;
  text-decoration: underline;
  font-size: 0.875rem;
  cursor: pointer;
}
.p-page-header {
  padding: 4rem 0;
  border-bottom: 2px solid #EEF1F5;
}

.l-inner {
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.p-page-header__title {
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  color: #16243F;
  position: relative;
}
.p-page-header__title::after {
  content: "";
  position: absolute;
  bottom: calc(-4rem - 2px);
  left: 0;
  width: 6rem;
  height: 2px;
  background: #A8854A;
}

.p-thanks__title {
  text-align: center;
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  color: #16243F;
  padding-bottom: 2rem;
}

.p-thanks__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  padding-left: 1em;
  text-indent: -1em;
}

.p-thanks__btn {
  margin-top: 3rem;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.main {
  color: #16243F;
}

.accent {
  color: #A8854A;
}

@media screen and (min-width: 1025px){
  html {
    margin: 0;
  }
  .pc {
    display: block;
  }
  .none-pc {
    display: none;
  }
}

@media screen and (max-width: 1360px){
  html {
    margin: 0;
  }
  html {
    font-size: 1.1764vw;
  }
}

@media screen and (max-width: 1280px){
  html {
    margin: 0;
  }
}

@media screen and (max-width: 1199px){
  html {
    margin: 0;
  }
}

@media screen and (max-width: 1120px){
  html {
    margin: 0;
  }
}

@media screen and (max-width: 960px){
  html {
    margin: 0;
  }
  .tab {
    display: block;
  }
  .none-tab {
    display: none !important;
  }
  .p-home__service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-home__about-grid {
    grid-template-columns: 1fr;
  }
  .p-home__about-media {
    max-width: 33rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 781px){
  html {
    margin: 0;
  }
  html {
    font-size: 4.07123vw;
  }
  body {
    font-size: 0.875rem;
  }
  .l-section {
    padding: 4rem 0;
  }
  .sp {
    display: block;
  }
  .none-sp {
    display: none;
  }
  .c-btn {
    padding: 0.75rem 1rem;
  }
  .c-form__row {
    flex-direction: column;
  }
  .c-form__row:not(:first-child) {
    margin-top: 1rem;
  }
  .c-form__label {
    width: 100%;
    padding-top: 0;
    flex: inherit;
  }
  .c-form__field {
    width: 100%;
  }
  .c-form__input::-moz-placeholder, .c-form__select::-moz-placeholder, .c-form__textarea::-moz-placeholder {
    font-size: 0.875rem;
  }
  .c-form__input::placeholder,
  .c-form__select::placeholder,
  .c-form__textarea::placeholder {
    font-size: 0.875rem;
  }
  .c-form__input,
  .c-form__select,
  .c-form__textarea {
    padding: 0.5rem;
  }
  .c-form__select {
    max-width: 100%;
  }
  .c-form__input {
    height: 3.5rem;
  }
  .c-form__textarea {
    min-height: 15rem;
  }
  .p-privacy {
    padding: 1rem 0.5rem;
  }
  .c-form__btn {
    margin-top: 1.5rem;
  }
  .wpcf7-form-control-wrap[data-name=acceptance] {
    margin-top: 1.5rem;
  }
  .wpcf7-form-control-wrap[data-name=acceptance] .wpcf7-list-item-label {
    padding-left: 1.5rem;
  }
  .wpcf7-form-control-wrap[data-name=acceptance] input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    top: 0.25rem;
  }
  .c-table th {
    width: 130px;
    padding: 16px 0;
  }
  .c-table td a[href*="tel:"] {
    pointer-events: inherit;
    text-decoration: underline;
  }
  .c-section-head-1__title {
    font-size: 1.5rem;
  }
  .c-accordion:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  .c-accordion__title {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .c-accordion__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .l-header__inner {
    padding: 1rem 1rem;
  }
  .l-header__logo img {
    margin-top: 0.25rem;
    width: 8rem;
  }
  .l-header__logo-label {
    font-size: 0.5rem;
  }
  .l-header__btn::after {
    width: 1.25rem;
    height: 1.25rem;
  }
  .l-header__btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 1rem;
    justify-content: center;
  }
  .l-footer__inner {
    padding: 1rem 1.25rem;
  }
  .p-home__container {
    padding: 0 1rem;
  }
  .p-home__head {
    padding-bottom: 2rem;
  }
  .p-home__overline {
    font-size: 0.75rem;
  }
  .p-home__title {
    font-size: 1.5rem;
  }
  .p-home__lead {
    margin-top: 1rem;
  }
  .l-main {
    padding-top: 4rem;
  }
  .p-home__fv {
    height: auto;
    max-height: inherit;
  }
  .p-home__fv-container {
    flex-direction: column;
    padding: 2rem 1rem 0;
  }
  .p-home__fv-head {
    width: 100%;
    margin-top: 0;
  }
  .p-home__fv-label {
    font-size: 0.75rem;
  }
  .p-home__fv-title {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
  .p-home__fv-title .size-xl {
    font-size: 2.25rem;
  }
  .p-home__fv-title-sub {
    margin-top: 2rem;
    font-size: 1rem;
  }
  .p-home__fv-text {
    text-align: left;
    font-size: 0.75rem;
  }
  .p-home__fv-btn-wrap {
    margin-top: 1rem;
    flex-direction: column-reverse;
  }
  .p-home__fv-btn {
    display: none;
  }
  .p-home__fv-btn .c-btn::after {
    width: 1.25rem;
    height: 1.25rem;
  }
  .p-home__fv-badges {
    gap: 0.5rem;
  }
  .p-home__fv-visual {
    text-align: center;
    position: relative;
    bottom: inherit;
    right: inherit;
    width: 100%;
    max-width: 20rem;
  }
  .p-home__worry-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-home__worry-list {
    border-radius: 0.5rem;
    padding: 0 1rem;
    background: #fff;
  }
  .p-home__worry-item {
    padding: 1rem 0;
    background: transparent;
    box-shadow: inherit;
    border: none;
    border-radius: 0;
  }
  .p-home__worry-item:nth-child(n+2) {
    border-top: 1px dashed #A8854A;
  }
  .p-home__worry-icon {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-home__worry-icon img {
    width: 1.5rem;
  }
  .p-home__service::before {
    width: 2rem;
    height: 4rem;
  }
  .p-home__service-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .p-home__service-item {
    gap: 0.5rem;
  }
  .p-home__service-name {
    min-height: inherit;
    display: block;
  }
  .p-home__service-name br {
    display: none;
  }
  .p-home__service-text {
    margin-top: 0.5rem;
  }
  .p-home__support-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .p-home__support-item {
    padding: 1rem 1rem;
    gap: 0.5rem;
  }
  .p-home__support-item:nth-child(n+2)::before {
    top: -1rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-home__support-name {
    font-size: 1.25rem;
  }
  .p-home__support-note {
    font-size: 1rem;
  }
  .p-home__compare-cols {
    grid-template-columns: 1fr;
  }
  .p-home__compare-col {
    padding: 1.5rem 1rem;
  }
  .p-home__compare-item:not(:first-child) {
    margin-top: 0.25rem;
  }
  .p-home__achievement-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-home__achievement-item {
    padding: 1rem 0.5rem;
    letter-spacing: 0.01em;
  }
  .p-home__achievement-icon {
    width: 2rem;
    height: 2rem;
  }
  .p-home__achievement-name {
    margin-top: 0.25rem;
    font-size: 0.75rem;
  }
  .p-home__pet {
    margin-top: 2rem;
    padding: 3.5rem 1rem 2rem;
  }
  .p-home__pet-illust {
    bottom: 5rem;
    opacity: 0.75;
  }
  .p-home__pet-illust--dog {
    left: 0.5rem;
    height: 3.75rem;
  }
  .p-home__pet-illust--cat {
    right: 0.5rem;
    height: 3rem;
  }
  .p-home__pet-title {
    font-size: 1.25rem;
  }
  .p-home__pet-text {
    font-size: 0.875rem;
  }
  .p-home__pet-btn {
    margin-top: 3.5rem;
  }
  .p-home__about-grid {
    gap: 1rem 2rem;
  }
  .p-home__about-media::before {
    top: 0.5rem;
    left: 0.5rem;
  }
  .p-home__flow-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .p-home__flow-list::before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
  }
  .p-home__flow-item {
    width: 100%;
    padding: 1rem;
  }
  .p-home__flow-item:not(:last-child)::after {
    display: none;
  }
  .p-home__flow-num {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
  }
  .p-home__flow-text {
    margin-top: 0.25rem;
    padding-left: 2.5rem;
  }
  .p-home__contact .p-home__title {
    font-size: 1.25rem;
  }
  .p-home__contact-links {
    flex-direction: column;
  }
  .p-home__contact-form-wrap {
    padding: 1.5rem 1rem;
  }
  .p-page-header {
    padding: 3rem 0;
  }
  .l-inner {
    padding: 0 1rem;
  }
  .p-page-header__title::after {
    bottom: calc(-3rem - 2px);
  }
  .p-thanks__title {
    font-size: 1.75rem;
  }
  .p-thanks__note {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 768px){
  .formTable {
    margin-top: 2rem;
  }
  .formTable,
  .formTable tbody,
  .formTable tr,
  .formTable th,
  .formTable td {
    display: block;
    width: 100%;
  }
  .formTable tr {
    border-top: 1px solid #ddd;
  }
  .formTable th,
  .formTable td {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .formTable th {
    background-color: #FAF8F3;
  }
  .formTable td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 599px){
  html {
    margin: 0;
  }
  .md {
    display: block;
  }
  .none-md {
    display: none;
  }
  .c-table th,
  .c-table td {
    display: block;
    font-size: 0.9375rem;
  }
  .c-table th {
    width: inherit;
    padding: 16px 0 0;
  }
  .c-table td {
    padding: 4px 0 16px;
  }
}

@media screen and (max-width: 425px){
  html {
    margin: 0;
  }
  .sm {
    display: block;
  }
  .none-sm {
    display: none;
  }
}

@media screen and (max-width: 375px){
  html {
    margin: 0;
  }
}

@media (hover: hover){
  a[href^="tel:"]:hover {
    opacity: 0.6;
  }
  .c-btn:hover {
    background: #bea477;
    color: #fff;
  }
  .p-privacy__lead a:hover {
    text-decoration: none;
  }
  .wpcf7-submit:hover + span + .c-form__submit-btn {
    background: #16243F;
    color: #fff;
  }
  .wpcf7-submit:hover + span + .c-form__submit-btn::after {
    background: #fff;
  }
  .wpcf7-submit:disabled:hover + span + .c-form__submit-btn {
    background: #eee;
    color: #aaa;
  }
  .wpcf7-submit:disabled:hover + span + .c-form__submit-btn::after {
    background: #aaa;
  }
  .c-table td a:hover {
    text-decoration: none;
  }
  .l-header__btn:hover {
    background: #bea477;
    color: #fff;
  }
  .p-home__fv-btn .c-btn:hover {
    background: #bea477;
    color: #fff;
  }
  .p-home__contact-link:hover {
    opacity: 0.7;
  }
  .c-btn--back:hover {
    text-decoration: none;
  }
}/*# sourceMappingURL=style.css.map */
