body {
  font-family: "Noto Sans JP", sans-serif;
}
body.is-fixed {
  overflow: hidden;
}
@media screen and (min-width: 641px) {
  body.is-fixed {
    overflow: auto;
  }
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

main {
  padding-top: 0;
  padding-bottom: 18.6666666667vw;
}
@media screen and (min-width: 641px) {
  main {
    padding-bottom: 130px;
  }
}
main.full {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.l-header {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: 16vw;
  padding: 0 4.2666666667vw;
  font-size: 4.2666666667vw;
  color: #3b3324;
}
@media screen and (min-width: 641px) {
  .l-header {
    height: 80px;
    padding: 0 16px;
    font-size: 16px;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .l-header__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.l-header__logo {
  position: relative;
  display: block;
  width: 29.6vw;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .l-header__logo {
    width: 220px;
  }
}
.l-header__logo img {
  width: 100%;
}
.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32.5333333333vw 4.2666666667vw 4.2666666667vw;
  background-color: #f8f6ef;
  transform: translateX(100%);
  transition: all 0.3s;
  overflow-y: auto;
}
@media screen and (min-width: 641px) {
  .l-header__nav {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: row;
    transform: translateX(0);
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
  }
}
.l-header__nav.is-active {
  transform: translateX(0);
}
.l-header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10.6666666667vw 0;
  margin-bottom: 22.4vw;
}
@media screen and (min-width: 641px) {
  .l-header__nav ul {
    flex-direction: row;
    gap: 0 20px;
    margin-bottom: 0;
  }
}
.l-header__nav ul li {
  position: relative;
}
@media screen and (min-width: 641px) {
  .l-header__nav ul li {
    padding-right: 20px;
  }
}
@media screen and (min-width: 641px) {
  .l-header__nav ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 27px;
    background-color: #3b3324;
  }
}
.l-header__nav ul li:last-child:after {
  display: none;
}
.l-header__nav ul li a {
  padding-left: 8.5333333333vw;
  font-size: 4vw;
  font-weight: 700;
  color: #3b3324;
  background-image: url("/images/index/arrow_menu.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 6.4vw;
  white-space: nowrap;
}
@media screen and (min-width: 641px) {
  .l-header__nav ul li a {
    position: relative;
    padding-left: 0;
    font-size: 15px;
    background: none;
  }
}
@media screen and (min-width: 641px) {
  .l-header__nav .p-cta-sm {
    display: none;
  }
}
.l-header__nav__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2.1333333333vw;
  background-color: #fff;
  max-width: 91.4666666667vw;
  width: 100%;
  margin-top: 4vw;
  padding: 5.3333333333vw;
  border-radius: 3.2vw;
  font-size: 7.4666666667vw;
  font-weight: 700;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .l-header__nav__tel {
    margin-top: 0;
    gap: 0 8px;
    max-width: 343px;
    padding: 20px;
    border-radius: 12px;
    font-size: 28px;
    background-color: transparent;
  }
}
.l-header__nav__tel img {
  width: 8vw;
}
@media screen and (min-width: 641px) {
  .l-header__nav__tel img {
    width: 30px;
  }
}
.l-header__toggle {
  position: relative;
  display: block;
  width: 9.6vw;
  height: 5.0666666667vw;
  cursor: pointer;
}
@media screen and (min-width: 641px) {
  .l-header__toggle {
    display: none;
  }
}
.l-header__toggle__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9.6vw;
  height: 0.2666666667vw;
  background-color: #3b3324;
  transition: all 0.3s;
}
.l-header__toggle__line:first-child {
  transform: translate(-50%, -2.1333333333vw);
}
.l-header__toggle__line:nth-child(2) {
  transform: translate(-50%, 0);
}
.l-header__toggle__line:last-child {
  transform: translate(-50%, 2.1333333333vw);
}
.l-header__toggle.is-active .l-header__toggle__line:first-child {
  transform: translate(-50%, -50%) rotate(-30deg);
}
.l-header__toggle.is-active .l-header__toggle__line:nth-child(2) {
  opacity: 0;
}
.l-header__toggle.is-active .l-header__toggle__line:last-child {
  transform: translate(-50%, -50%) rotate(30deg);
}

.l-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .l-inner {
    max-width: 1232px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 641px) {
  .l-inner--lg {
    max-width: 1352px;
  }
}

@media screen and (min-width: 641px) {
  .p-cta-sm {
    width: fit-content;
  }
}
.p-cta-sm__ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto 2.9333333333vw;
  font-weight: 900;
  text-align: center;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__ttl {
    margin: 0 auto 11px;
    font-size: 24px;
  }
}
.p-cta-sm__ttl:before, .p-cta-sm__ttl:after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.5333333333vw;
  height: 5.0666666667vw;
  background-color: #3b3324;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__ttl:before, .p-cta-sm__ttl:after {
    width: 2px;
    height: 19px;
  }
}
.p-cta-sm__ttl:before {
  left: -4vw;
  transform: rotate(-20deg);
}
@media screen and (min-width: 641px) {
  .p-cta-sm__ttl:before {
    left: -15px;
  }
}
.p-cta-sm__ttl:after {
  right: -4vw;
  transform: rotate(20deg);
}
@media screen and (min-width: 641px) {
  .p-cta-sm__ttl:after {
    right: -15px;
  }
}
.p-cta-sm__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.0666666667vw;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__list {
    gap: 0 14px;
  }
}
.p-cta-sm__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45.3333333333vw;
  height: 18.6666666667vw;
  font-weight: 700;
  border-radius: 2666.4vw;
  font-size: 4.2666666667vw;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__item {
    width: 255px;
    height: 64px;
    font-size: 20px;
  }
}
.p-cta-sm__item--line {
  background-color: #06c755;
  border: 0.5333333333vw solid #06c755;
  color: #fff !important;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__item--line {
    border: 2px solid #06c755;
  }
}
.p-cta-sm__item--contact {
  background-color: #fff;
  border: 0.5333333333vw solid #3b3324;
  color: #3b3324 !important;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__item--contact {
    border: 2px solid #3b3324;
  }
}
.p-cta-sm__item img {
  width: 7.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-cta-sm__item img {
    width: 48px;
  }
}

.brum {
  position: relative;
  display: block;
  margin-bottom: 16vw;
  padding: 4.5333333333vw 4.2666666667vw 5.6vw;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 641px) {
  .brum {
    margin-bottom: 60px;
    padding: 25px 0 29px;
    font-size: 10px;
  }
}
.brum:after {
  content: "";
  width: 500%;
  height: 0.2666666667vw;
  background: url(/images/hr-dot-gray.png) left top repeat-x;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 641px) {
  .brum:after {
    height: 1px;
  }
}

#content {
  padding: 0;
}

.l-footer {
  margin-bottom: 16vw;
  padding: 16vw 8vw 5.0666666667vw;
  background-color: #bc5033;
  font-size: 4.2666666667vw;
  color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .l-footer {
    margin-bottom: 0;
    padding: 60px 30px 19px;
    font-size: 16px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16vw 0;
  margin-bottom: 16vw;
}
@media screen and (min-width: 641px) {
  .l-footer__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 60px 0;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 641px) {
  .l-footer__nav {
    width: 460px;
  }
}
.l-footer__nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6.6666666667vw 8vw;
}
@media screen and (min-width: 641px) {
  .l-footer__nav ul {
    gap: 30px;
  }
}
.l-footer__nav ul li a {
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.l-footer__nav ul:last-child {
  margin-top: 9.0666666667vw;
}
@media screen and (min-width: 641px) {
  .l-footer__nav ul:last-child {
    width: fit-content;
    margin-top: 40px;
    margin-left: auto;
    gap: 20px;
  }
}
.l-footer__nav ul:last-child li:nth-child(2) {
  display: none;
}
.l-footer__nav ul:last-child li a {
  font-size: 3.7333333333vw;
  font-weight: 400;
}
@media screen and (min-width: 641px) {
  .l-footer__nav ul:last-child li a {
    font-size: 14px;
  }
}
.l-footer__logo {
  display: block;
  width: 63.2vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 641px) {
  .l-footer__logo {
    width: 250px;
    margin-bottom: 50px;
  }
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__info {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 641px) {
  .l-footer__info {
    font-size: 13px;
  }
}
.l-footer__copyright {
  font-size: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .l-footer__copyright {
    font-size: 10px;
  }
}

.p-cta__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -7.4666666667vw;
  font-size: 4.8vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .p-cta__ttl {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 11px;
    margin-bottom: -22px;
    font-size: 24px;
  }
}
.p-cta__ttl img {
  width: 64.5333333333vw;
}
@media screen and (min-width: 641px) {
  .p-cta__ttl img {
    position: relative;
    top: -4px;
    width: 288px;
  }
}
.p-cta__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.3333333333vw 0;
  padding: 16.8vw 4.2666666667vw 8vw;
  background-color: #fff;
  border-radius: 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-cta__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 48px 0 28px;
    border-radius: 20px;
  }
}
.p-cta__item {
  display: flex;
  flex-direction: column;
  gap: 4vw 0;
  padding-bottom: 5.3333333333vw;
  border-bottom: 0.2666666667vw solid #3b3324;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-cta__item {
    gap: 15px 0;
    padding: 0 56px;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid #3b3324;
  }
}
.p-cta__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  border: none;
}
@media screen and (min-width: 641px) {
  .p-cta__item:last-child .p-cta__item__ttl {
    margin-bottom: 14px;
  }
}
.p-cta__item__ttl {
  font-size: 4.2666666667vw;
  font-weight: 900;
}
@media screen and (min-width: 641px) {
  .p-cta__item__ttl {
    font-size: 20px;
  }
}
.p-cta__item__txt {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .p-cta__item__txt {
    font-size: 15px;
  }
}
.p-cta__item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 82.9333333333vw;
  width: 100%;
  height: 21.3333333333vw;
  font-weight: 700;
  border-radius: 2666.4vw;
  font-size: 4.2666666667vw;
  margin: 0 auto;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .p-cta__item__btn {
    margin-top: 10px;
    max-width: 287px;
    height: 80px;
    font-size: 24px;
  }
}
.p-cta__item__btn--line {
  background-color: #06c755;
  border: 0.5333333333vw solid #06c755;
  color: #fff !important;
}
@media screen and (min-width: 641px) {
  .p-cta__item__btn--line {
    border: 2px solid #06c755;
  }
}
.p-cta__item__btn--contact {
  background-color: #fff;
  border: 0.5333333333vw solid #3b3324;
  color: #3b3324 !important;
}
@media screen and (min-width: 641px) {
  .p-cta__item__btn--contact {
    border: 2px solid #3b3324;
  }
}
.p-cta__item__btn img {
  width: 7.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-cta__item__btn img {
    width: 48px;
  }
}
.p-cta__item__tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 2.9333333333vw;
  font-family: "Roboto", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .p-cta__item__tel {
    gap: 0 11px;
    margin-bottom: 10px;
    font-size: 36px;
  }
}
.p-cta__item__tel img {
  width: 7.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-cta__item__tel img {
    width: 28px;
  }
}

.p-fixed-sp {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media screen and (min-width: 641px) {
  .p-fixed-sp {
    display: none;
  }
}
.p-fixed-sp__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 16vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
}
.p-fixed-sp__item--line {
  background-color: #06c755;
  color: #fff !important;
}
.p-fixed-sp__item--contact {
  background-color: #fff;
  border: 0.5333333333vw solid #3b3324;
  color: #3b3324;
}
.p-fixed-sp__item img {
  width: 7.4666666667vw;
}

.p-fixed-pc {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 10;
  gap: 10px 0;
  display: none;
}
@media screen and (min-width: 641px) {
  .p-fixed-pc {
    display: flex;
    flex-direction: column;
  }
}
.p-fixed-pc__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 18px;
  text-decoration: none !important;
}
.p-fixed-pc__item__txt {
  position: relative;
  padding: 10px 17px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.p-fixed-pc__item__txt:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
}
.p-fixed-pc__item__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}
.p-fixed-pc__item__icon img {
  width: 32px;
}
.p-fixed-pc__item--line .p-fixed-pc__item__txt {
  background-color: #06c755;
}
.p-fixed-pc__item--line .p-fixed-pc__item__txt:before {
  border-color: transparent transparent transparent #06c755;
}
.p-fixed-pc__item--contact .p-fixed-pc__item__txt {
  background-color: #3b3324;
}
.p-fixed-pc__item--contact .p-fixed-pc__item__txt:before {
  border-color: transparent transparent transparent #3b3324;
}
.p-fixed-pc__item--contact .p-fixed-pc__item__icon img {
  width: 40px;
}

.c-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3333333333vw 0;
  margin-bottom: 10.6666666667vw;
  padding: 0;
}
@media screen and (min-width: 641px) {
  .c-ttl {
    gap: 10px;
    margin-bottom: 50px;
  }
}
.c-ttl:before {
  display: none;
}
.c-ttl__ja {
  font-size: 6.4vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .c-ttl__ja {
    font-size: 40px;
  }
}
.c-ttl__en {
  font-size: 4.2666666667vw;
  font-weight: 400;
}
@media screen and (min-width: 641px) {
  .c-ttl__en {
    font-size: 16px;
  }
}
.c-ttl--lg .c-ttl__en {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .c-ttl--lg .c-ttl__en {
    font-size: 20px;
  }
}

.c-lead {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .c-lead {
    font-size: 24px;
  }
}

.c-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 2.6666666667vw;
  max-width: 91.4666666667vw;
  width: 100%;
  height: 16vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  background-color: #fff;
  color: #3c4757 !important;
  border: 0.5333333333vw solid #3c4757;
  border-radius: 2666.4vw;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .c-btn {
    gap: 0 10px;
    max-width: 262px;
    height: 60px;
    font-size: 16px;
    border: 2px solid #3c4757;
  }
}
.c-btn:after {
  content: "";
  background-image: url("/images/index/arrow_btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
}
@media screen and (min-width: 641px) {
  .c-btn:after {
    width: 28px;
    height: 28px;
  }
}

.c-sq-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 4.5333333333vw;
  max-width: 82.9333333333vw;
  width: 100%;
  height: 16vw;
  font-size: 5.3333333333vw;
  background-color: #3c4757;
  color: #fff !important;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .c-sq-btn {
    gap: 0 17px;
    max-width: 311px;
    height: 60px;
    font-size: 20px;
  }
}
.c-sq-btn:before {
  content: "";
  background-image: url("/images/index/arrow_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 5.6vw;
  height: 4vw;
}
@media screen and (min-width: 641px) {
  .c-sq-btn:before {
    width: 21px;
    height: 15px;
  }
}

.c-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 1.3333333333vw;
  color: #3c4757;
  font-size: 3.7333333333vw;
  font-weight: 500;
  border-bottom: 0.2666666667vw solid #3c4757;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .c-more {
    padding-bottom: 5px;
    font-size: 14px;
    border-bottom: 1px solid #3c4757;
  }
}
.c-more:hover {
  letter-spacing: 0.1em;
}

.c-input {
  width: 100% !important;
  height: auto !important;
  padding: 3.4666666667vw 2.6666666667vw !important;
  border: 0.2666666667vw solid #c9caca !important;
  font-size: 4vw !important;
}
@media screen and (min-width: 641px) {
  .c-input {
    padding: 13px 10px !important;
    border: 1px solid #c9caca !important;
    font-size: 15px !important;
  }
}

.c-radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.6666666667vw 10.6666666667vw;
}
@media screen and (min-width: 641px) {
  .c-radio {
    gap: 10px 20px;
  }
}
.c-radio .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2.1333333333vw;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
@media screen and (min-width: 641px) {
  .c-radio .wpcf7-list-item label {
    gap: 0 8px;
    font-size: 15px;
  }
}
.c-radio .wpcf7-list-item label:before {
  content: "";
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  border-radius: 2666.4vw;
  background-color: #d9d9d9;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease;
}
@media screen and (min-width: 641px) {
  .c-radio .wpcf7-list-item label:before {
    width: 20px;
    height: 20px;
  }
}
.c-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.c-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 1.3333333333vw;
  transform: translateY(-50%);
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border-radius: 9999px;
  background-color: #3b3324;
}
@media screen and (min-width: 641px) {
  .c-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before {
    left: 5px;
    width: 10px;
    height: 10px;
  }
}

.c-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-checkbox .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 2.6666666667vw;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 4vw;
  cursor: pointer;
}
@media screen and (min-width: 641px) {
  .c-checkbox .wpcf7-list-item label {
    gap: 0 10px;
    font-size: 15px;
  }
}
.c-checkbox .wpcf7-list-item label:has(input:checked) {
  border-color: #3b3324;
}
.c-checkbox .wpcf7-list-item label:before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  background-color: #d9d9d9;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
@media screen and (min-width: 641px) {
  .c-checkbox .wpcf7-list-item label:before {
    width: 20px;
    height: 20px;
  }
}
.c-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 1.3333333333vw;
  transform: translateY(-50%);
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border-radius: 2666.4vw;
  background-color: #3b3324;
}
@media screen and (min-width: 641px) {
  .c-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
    left: 5px;
    width: 10px;
    height: 10px;
  }
}

.c-select {
  position: relative;
  width: 68vw;
  border: 0.2666666667vw solid #c9caca !important;
  font-size: 4vw !important;
}
@media screen and (min-width: 641px) {
  .c-select {
    width: 255px;
    border: 1px solid #c9caca !important;
    font-size: 15px !important;
  }
}
.c-select:after {
  content: "";
  position: absolute;
  top: 5.3333333333vw;
  right: 4.5333333333vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.2vw 2.1333333333vw 0 2.1333333333vw;
  border-color: #3b3324 transparent transparent transparent;
}
@media screen and (min-width: 641px) {
  .c-select:after {
    top: 20px;
    right: 17px;
    border-width: 12px 8px 0 8px;
  }
}
.c-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100% !important;
  height: auto !important;
  border: none;
  padding: 4vw 2.6666666667vw !important;
  color: #3b3324;
}
@media screen and (min-width: 641px) {
  .c-select select {
    padding: 15px 10px !important;
  }
}
.c-select select.is-inactive {
  color: #c9caca;
}

.grecaptcha-badge {
  display: none !important;
  z-index: 9999;
}

.p-worry {
  position: relative;
  width: 100%;
  padding: 8vw 0 18.6666666667vw;
  background-color: #f8f6ef;
  background-image: url("/images/index/bg_worry_sp.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 65.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-worry {
    padding: 76px 0 40px;
    background-image: url("/images/index/bg_worry.png");
    background-size: 100% 336px;
  }
}
.p-worry__ttl {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  margin: 0 auto 4.2666666667vw;
  padding: 3.7333333333vw 10.6666666667vw 3.7333333333vw 15.4666666667vw;
  border-radius: 9999px;
  background-color: #fff;
  font-size: 4.2666666667vw;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-worry__ttl {
    margin-bottom: 45px;
    padding: 18px 40px 18px 135px;
    font-size: 20px;
    font-weight: 600;
  }
}
.p-worry__ttl img {
  position: absolute;
  top: 4.2666666667vw;
  left: 1.3333333333vw;
  width: 15.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-worry__ttl img {
    top: -13px;
    left: 32px;
    width: 90px;
  }
}
.p-worry__list {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.8666666667vw;
  margin: 0 auto 17.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-worry__list {
    justify-content: center;
    gap: 10px;
    max-width: 692px;
    width: 100%;
    margin-bottom: 101px;
  }
}
.p-worry__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f36638;
  border-radius: 1.6vw;
  width: calc(50% - 0.9333333333vw);
  height: 14.1333333333vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-worry__item {
    width: calc(50% - 5px);
    height: 48px;
    border-radius: 10px;
    font-size: 20px;
  }
}
.p-worry__item:first-child {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .p-worry__item:first-child {
    width: 540px;
  }
}

.p-business-casestudy {
  padding: 18.6666666667vw 0 16vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy {
    padding: 90px 0 58px;
  }
}
.p-business-casestudy--archive {
  padding: 0;
}
.p-business-casestudy--archive .p-business-casestudy__list {
  margin: 0;
}
.p-business-casestudy__cats {
  margin-bottom: 10.6666666667vw;
  padding: 5.3333333333vw 4.2666666667vw;
  background-color: #f8f6ef;
  border: 1px solid #dad7d3;
  border-radius: 1.0666666667vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__cats {
    margin-bottom: 50px;
    padding: 30px;
    border: 1px solid #dad7d3;
    border-radius: 4px;
  }
}
.p-business-casestudy__cats .cats-ttl {
  margin-bottom: 5.3333333333vw;
  font-size: 4vw;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__cats .cats-ttl {
    margin-bottom: 30px;
    font-size: 17px;
  }
}
.p-business-casestudy__cats .cats-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.0666666667vw;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__cats .cats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 65px;
    max-width: 730px;
  }
}
.p-business-casestudy__cats .cats-item {
  text-align: center;
}
.p-business-casestudy__cats .cats-item a {
  display: block;
  padding-bottom: 2.1333333333vw;
  border-bottom: 0.5333333333vw dotted #dad7d3;
  font-size: 3.4666666667vw;
  font-weight: 700;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__cats .cats-item a {
    padding-bottom: 12px;
    border-bottom: 2px dotted #dad7d3;
    font-size: 17px;
  }
}
.p-business-casestudy__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.3333333333vw;
  margin-top: 13.3333333333vw;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__list {
    margin-top: 50px;
    margin-bottom: 57px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-business-casestudy__item {
  padding: 2.9333333333vw 4.2666666667vw;
  background-color: #f8f6ef;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item {
    padding: 20px;
  }
}
.p-business-casestudy__item__img {
  margin-bottom: 1.8666666667vw;
  aspect-ratio: 311/158;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item__img {
    margin-bottom: 12px;
  }
}
.p-business-casestudy__item__info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.1333333333vw;
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item__info {
    gap: 14px;
    margin-bottom: 14px;
  }
}
.p-business-casestudy__item__cats {
  display: flex;
  flex-direction: row;
  gap: 2.1333333333vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item__cats {
    gap: 14px;
  }
}
.p-business-casestudy__item__cats li {
  width: fit-content;
  padding: 2.1333333333vw;
  background-color: #fff;
  border: 1px solid #3c4757;
  color: #3c4757;
  font-size: 3.2vw;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item__cats li {
    padding: 7px 18px;
    border: 1px solid #3c4757;
    font-size: 12px;
  }
}
.p-business-casestudy__item__tenant {
  width: fit-content;
  padding: 2.1333333333vw;
  background-color: #ea5515;
  font-size: 3.2vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item__tenant {
    padding: 7px 18px;
    font-size: 12px;
  }
}
.p-business-casestudy__item__tenant--full {
  background-color: #3c4757;
}
.p-business-casestudy__item__ttl {
  margin-bottom: 6.4vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy__item__ttl {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
.p-business-casestudy .c-btn {
  margin: 0 auto;
}

.p-columns {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 641px) {
  .p-columns {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 641px) {
  .p-columns .c-ttl {
    margin-bottom: 72px;
  }
}
.p-columns__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.3333333333vw;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 641px) {
  .p-columns__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
}
.p-columns__item {
  display: flex;
  flex-direction: column;
  padding: 8vw 5.3333333333vw;
  background-color: #f8f6ef;
}
@media screen and (min-width: 641px) {
  .p-columns__item {
    padding: 30px 20px;
  }
}
.p-columns__item__img {
  width: 100%;
  aspect-ratio: 303/227;
  object-fit: cover;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-columns__item__img {
    margin-bottom: 20px;
  }
}
.p-columns__item__ttl {
  margin-bottom: 8vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .p-columns__item__ttl {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
.p-columns__item .c-more {
  margin-top: auto;
}
.p-columns .c-btn {
  margin: 0 auto;
}
.p-columns--archive .p-columns__list {
  margin-bottom: 0;
}

.p-contact {
  width: 100%;
  padding: 18.6666666667vw 0 16vw;
  background-color: #f8f6ef;
}
@media screen and (min-width: 641px) {
  .p-contact {
    padding: 90px 0;
  }
}
.p-contact .c-ttl {
  margin-bottom: 15.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-contact .c-ttl {
    margin-bottom: 77px;
  }
}

.p-contact-form {
  padding-bottom: 24vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form {
    padding-bottom: 110px;
  }
}
.p-contact-form__menu {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.p-contact-form__menu__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.6666666667vw 0;
  width: 100%;
  height: 37.3333333333vw;
  padding: 0 2.6666666667vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-decoration: none !important;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item {
    gap: 15px 0;
    height: 140px;
    padding: 0 16px;
  }
}
.p-contact-form__menu__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 51, 36, 0.5);
}
.p-contact-form__menu__item .menu-item__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2.6666666667vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__box {
    gap: 0 14px;
  }
}
.p-contact-form__menu__item .menu-item__img {
  position: relative;
  z-index: 1;
  width: 16vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__img {
    width: 60px;
  }
}
.p-contact-form__menu__item .menu-item__head {
  position: relative;
  z-index: 1;
}
.p-contact-form__menu__item .menu-item__ttl {
  position: relative;
  margin-bottom: 1.6vw;
  padding-left: 4.2666666667vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__ttl {
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 24px;
  }
}
.p-contact-form__menu__item .menu-item__ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4666666667vw 0 1.4666666667vw 2.5333333333vw;
  border-color: transparent transparent transparent #fff;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__ttl:before {
    border-width: 5.5px 0 5.5px 9.5px;
  }
}
.p-contact-form__menu__item .menu-item__txt {
  position: relative;
  z-index: 1;
  font-size: 4.2666666667vw;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__txt {
    font-size: 18px;
  }
}
.p-contact-form__menu__item .menu-item__txt--sm {
  width: 100%;
  font-size: 4vw;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__txt--sm {
    font-size: 15px;
  }
}
.p-contact-form__menu__item .menu-item__tel {
  font-size: 6.4vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item .menu-item__tel {
    font-size: 37px;
  }
}
.p-contact-form__menu__item--tel .menu-item__img {
  top: 3vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form__menu__item--tel .menu-item__img {
    top: 18px;
  }
}
.p-contact-form__lead {
  margin: 13.3333333333vw 0 10.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-contact-form__lead {
    margin: 70px 0 50px;
    font-size: 24px;
  }
}
.p-contact-form__txt {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form__txt {
    font-size: 16px;
  }
}
.p-contact-form__box {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw 0;
}
@media screen and (min-width: 641px) {
  .p-contact-form__box {
    gap: 30px 0;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw 0;
}
@media screen and (min-width: 641px) {
  .p-contact-form__group {
    gap: 10px 0;
  }
}
.p-contact-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 5.3333333333vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .p-contact-form__head {
    gap: 0 20px;
    font-size: 20px;
  }
}
.p-contact-form__head span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 12.8vw;
  height: 5.3333333333vw;
  background-color: #f36638;
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-contact-form__head span {
    width: 48px;
    height: 20px;
    font-size: 14px;
  }
}
.p-contact-form__agreement {
  width: fit-content;
  margin: 0 auto;
}
.p-contact-form__agreement a {
  text-decoration: underline;
}
.p-contact-form .c-btn {
  position: relative;
  background-color: #f36638;
  border-color: #f36638;
  max-width: 82.9333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .p-contact-form .c-btn {
    max-width: 182px;
  }
}
.p-contact-form .c-btn:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25.0666666667vw;
  background-image: url("/images/index/arrow_btn_white.svg");
}
@media screen and (min-width: 641px) {
  .p-contact-form .c-btn:after {
    right: 35px;
  }
}
.p-contact-form .c-btn input {
  width: 100%;
  height: 100%;
  padding-right: 2.6666666667vw;
  background: none;
  font-size: 4.2666666667vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-contact-form .c-btn input {
    padding-right: 20px;
    font-size: 16px;
  }
}
.p-contact-form .wpcf7-spinner {
  display: none !important;
}
.p-contact-form .wpcf7-not-valid-tip {
  margin-top: 2.6666666667vw;
  color: #f00;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 641px) {
  .p-contact-form .wpcf7-not-valid-tip {
    margin-top: 10px;
    font-size: 14px;
  }
}
.p-contact-form .wpcf7-response-output {
  display: none !important;
}

.p-service .brum {
  margin-bottom: 0;
}
.p-service .brum:after {
  display: none;
}
.p-service__mv {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 56.2666666667vw;
  padding-bottom: 4.8vw;
}
@media screen and (min-width: 641px) {
  .p-service__mv {
    height: 590px;
    padding-bottom: 59px;
    background-size: cover;
  }
}
.p-service__mv__inner {
  position: relative;
}
.p-service__mv:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32.2666666667vw;
  background-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
@media screen and (min-width: 641px) {
  .p-service__mv:before {
    height: 121px;
  }
}
.p-service__mv__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw 0;
}
@media screen and (min-width: 641px) {
  .p-service__mv__box {
    gap: 10px 0;
  }
}
.p-service__mv__ttl {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333vw 0;
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .p-service__mv__ttl {
    gap: 5px 0;
  }
}
.p-service__mv__ttl:before, .p-service__mv__ttl:after {
  display: none;
}
.p-service__mv__ttl .mv-ttl__en {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__mv__ttl .mv-ttl__en {
    font-size: 24px;
  }
}
.p-service__mv__ttl .mv-ttl__ja {
  font-size: 8.5333333333vw;
  font-weight: 900;
}
@media screen and (min-width: 641px) {
  .p-service__mv__ttl .mv-ttl__ja {
    font-size: 80px;
  }
}
.p-service__mv__copy {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-service__mv__copy {
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  .p-service__mv__copy br {
    display: none;
  }
}
.p-service__mv__before {
  position: absolute;
  bottom: -10.1333333333vw;
  right: 4.2666666667vw;
  width: 25.0666666667vw;
  height: 25.0666666667vw;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 1.6vw);
  border-radius: 9999px;
}
@media screen and (min-width: 641px) {
  .p-service__mv__before {
    width: 296px;
    height: 296px;
    right: 0;
    bottom: -116px;
    background-size: calc(100% - 20px);
  }
}
.p-service__mv .mv-before__txt {
  position: absolute;
  left: 50%;
  bottom: 4.2666666667vw;
  transform: translateX(-50%);
  font-size: 3.4666666667vw;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-service__mv .mv-before__txt {
    bottom: 42px;
    font-size: 24px;
  }
}
.p-service__worry {
  padding: 8vw 0 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__worry {
    padding: 40px 0 30px;
  }
}
.p-service__worry__ttl {
  position: relative;
  width: fit-content;
  padding: 0 9.0666666667vw;
  margin: 0 auto 8vw;
  font-size: 4.2666666667vw;
  font-weight: 400;
}
@media screen and (min-width: 641px) {
  .p-service__worry__ttl {
    width: 100%;
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 400;
    padding: 0 34px;
  }
}
.p-service__worry__ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #c5c0a9;
}
@media screen and (min-width: 641px) {
  .p-service__worry__ttl:before {
    height: 1px;
  }
}
.p-service__worry__ttl span {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 2.6666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .p-service__worry__ttl span {
    padding: 10px 30px;
  }
}
.p-service__worry__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.3333333333vw;
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 641px) {
  .p-service__worry__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto 26px;
    gap: 36px 20px;
  }
}
.p-service__worry__item {
  display: flex;
  flex-direction: column;
}
.p-service__worry__item .worry-item__ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto -4.2666666667vw;
  padding: 2.6666666667vw 8vw;
  background-color: #f36638;
  font-size: 4.2666666667vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-service__worry__item .worry-item__ttl {
    font-size: 18px;
    margin: 0 auto -16px;
    padding: 10px 30px;
  }
}
.p-service__worry__item .worry-item__box {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10.6666666667vw 4.2666666667vw 6.4vw;
  background-color: #f8f6ef;
}
@media screen and (min-width: 641px) {
  .p-service__worry__item .worry-item__box {
    padding: 43px 20px 30px;
  }
}
.p-service__worry__item .worry-item__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.2666666667vw 0;
}
@media screen and (min-width: 641px) {
  .p-service__worry__item .worry-item__list {
    gap: 20px 0;
  }
}
.p-service__worry__item .worry-item__item {
  position: relative;
  padding-left: 9.8666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .p-service__worry__item .worry-item__item {
    padding-left: 41px;
    font-size: 20px;
  }
}
.p-service__worry__item .worry-item__item:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 7.2vw;
  height: 7.2vw;
  background-image: url("/images/service/i_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .p-service__worry__item .worry-item__item:before {
    width: 31px;
    height: 31px;
  }
}
.p-service__worry__arrow {
  display: block;
  width: 9.6vw;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .p-service__worry__arrow {
    width: 65px;
    margin-bottom: 23px;
  }
}
.p-service__worry__logo {
  display: block;
  width: 82.9333333333vw;
  margin: 0 auto 2.4vw;
}
@media screen and (min-width: 641px) {
  .p-service__worry__logo {
    width: 347px;
    margin-bottom: 14px;
  }
}
.p-service__worry__txt {
  font-size: 4.2666666667vw;
  font-weight: 700;
  text-align: center;
  color: #bf4f30;
}
@media screen and (min-width: 641px) {
  .p-service__worry__txt {
    font-size: 18px;
  }
}
.p-service__box {
  width: 100%;
  padding: 10.6666666667vw 0 21.3333333333vw;
  background-image: url("/images/index/bg.jpg");
  background-repeat: repeat;
  background-position: left top;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .p-service__box {
    padding: 46px 0 99px;
  }
}
.p-service__feature {
  margin-bottom: 9.8666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature {
    margin-bottom: 47px;
  }
}
.p-service__feature__inner {
  display: flex;
  flex-direction: column;
  gap: 10.6666666667vw 0;
}
@media screen and (min-width: 641px) {
  .p-service__feature__inner {
    max-width: 966px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 30px;
  }
}
.p-service__feature__ttl {
  margin-bottom: 10.6666666667vw;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw 0;
  font-size: 5.3333333333vw;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .p-service__feature__ttl {
    gap: 20px 0;
    font-size: 30px;
    white-space: nowrap;
    margin-bottom: 40px;
  }
}
.p-service__feature__ttl span {
  width: fit-content;
  border-bottom: 1px dotted #3b3324;
  font-weight: 500;
}
@media screen and (min-width: 641px) {
  .p-service__feature__ttl span {
    border-bottom: 1px dotted #3b3324;
  }
}
.p-service__feature__lead {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .p-service__feature__lead {
    font-size: 16px;
  }
}
.p-service__feature__list {
  position: relative;
  width: 86.6666666667vw;
  height: 74.9333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .p-service__feature__list {
    min-width: 514px;
    width: 514px;
    height: 445px;
    margin: 0;
  }
}
.p-service__feature__item {
  position: absolute;
  width: 44.8vw;
  height: 44.8vw;
  padding-top: 13.3333333333vw;
  border: 1px solid #ea5515;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-service__feature__item {
    width: 266px;
    height: 266px;
    padding-top: 100px;
    border: 1px solid #ea5515;
    font-size: 16px;
  }
}
.p-service__feature__item strong {
  display: block;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature__item strong {
    font-size: 32px;
    margin-top: 8px;
  }
}
.p-service__feature__item:first-child {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 9.0666666667vw;
  z-index: 2;
}
@media screen and (min-width: 641px) {
  .p-service__feature__item:first-child {
    padding-top: 90px;
  }
}
.p-service__feature__item:nth-child(2) {
  bottom: 0;
  left: 0;
  z-index: 3;
}
.p-service__feature__item:last-child {
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__inner {
    max-width: 984px;
  }
}
.p-service__feature--kikaku .p-service__feature__list {
  width: 91.4666666667vw;
  height: 79.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__list {
    width: 514px;
    height: 445px;
  }
}
.p-service__feature--kikaku .p-service__feature__item {
  padding-top: 10.6666666667vw;
  width: 47.4666666667vw;
  height: 47.4666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__item {
    width: 266px;
    height: 266px;
    padding-top: 70px;
  }
}
.p-service__feature--kikaku .p-service__feature__item:first-child {
  padding-top: 8.5333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__item:first-child {
    padding-top: 70px;
  }
}
.p-service__feature--kikaku .p-service__feature__item:nth-child(2) {
  padding-right: 2.1333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__item:nth-child(2) {
    padding-right: 4px;
  }
}
.p-service__feature--kikaku .p-service__feature__item:last-child {
  padding-left: 2.1333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__item:last-child {
    padding-left: 10px;
  }
}
.p-service__feature--kikaku .p-service__feature__item strong {
  margin-top: 0;
  line-height: 1.2;
}
@media screen and (min-width: 641px) {
  .p-service__feature--kikaku .p-service__feature__item strong {
    margin-top: 8px;
    font-size: 26px;
  }
}
@media screen and (min-width: 641px) {
  .p-service__flow__inner {
    max-width: 932px;
    width: 100%;
  }
}
.p-service__flow__ttl {
  position: relative;
  z-index: 1;
  width: 85.3333333333vw;
  margin: 0 auto -4.2666666667vw;
  padding: 2.6666666667vw 3.2vw;
  font-size: 4.2666666667vw;
  color: #fff;
  background-color: #f36638;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-service__flow__ttl {
    width: fit-content;
    margin-bottom: -18px;
    padding: 10px 30px;
    font-size: 18px;
  }
}
.p-service__flow__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.8666666667vw 0;
  padding: 12.5333333333vw 5.3333333333vw 11.4666666667vw;
  background-color: #f8f6ef;
}
@media screen and (min-width: 641px) {
  .p-service__flow__box {
    padding-top: 56px;
    gap: 22px 0;
    padding: 47px 20px 43px;
  }
}
.p-service__flow__list {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw 0;
}
@media screen and (min-width: 641px) {
  .p-service__flow__list {
    gap: 10px 0;
  }
}
.p-service__flow__item {
  position: relative;
  padding-left: 8.5333333333vw;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .p-service__flow__item {
    font-size: 17px;
    padding-left: 36px;
  }
}
.p-service__flow__item:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8vw;
  height: 8vw;
  background-image: url("/images/service/i_check_circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .p-service__flow__item:before {
    width: 30px;
    height: 30px;
  }
}
.p-service__flow__item strong {
  color: #ff8200;
}
.p-service__flow__txt {
  font-size: 4vw;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .p-service__flow__txt {
    text-align: center;
    font-size: 15px;
  }
}
.p-service__flow__txt br {
  display: none;
}
@media screen and (min-width: 641px) {
  .p-service__flow__txt br {
    display: block;
  }
}
.p-service__about {
  margin: 8.5333333333vw auto 9.6vw;
}
@media screen and (min-width: 641px) {
  .p-service__about {
    margin: 30px auto 54px;
  }
}
.p-service__about__box {
  padding: 8.5333333333vw 4.2666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .p-service__about__box {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 45px 50px;
  }
}
.p-service__about img {
  width: 100%;
}
.p-service__about__request {
  display: block;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__about__request {
    margin-bottom: 16px;
  }
}
.p-service__about__detail .fig-detail__ttl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 48vw;
  height: 8.5333333333vw;
  margin: 0 auto -4.2666666667vw;
  padding: 2.6666666667vw;
  background-color: #f36638;
  color: #fff;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__about__detail .fig-detail__ttl {
    width: 168px;
    height: 33px;
    font-size: 18px;
    margin: 0 auto -16px;
    padding: 10px;
  }
}
.p-service__about__detail .fig-detail__box {
  position: relative;
  width: 100%;
  background-color: #f8f6ef;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__about__detail .fig-detail__box {
    padding: 50px 50px 36px;
  }
}
.p-service__about__detail:last-of-type {
  margin-top: 8.5333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__about__detail:last-of-type {
    margin-top: 32px;
  }
}
.p-service__about__detail .c-more {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__about__detail .c-more {
    position: absolute;
    bottom: 14px;
    right: 16px;
    margin-top: 20px;
  }
}
.p-service__gallery {
  width: 100%;
  margin-bottom: 18.6666666667vw;
}
@media screen and (min-width: 641px) {
  .p-service__gallery {
    margin: 0 auto 81px;
  }
}
@media screen and (min-width: 641px) {
  .p-service__gallery--hosho {
    max-width: 902px;
  }
}
@media screen and (min-width: 641px) {
  .p-service__gallery--kikaku {
    max-width: 1200px;
  }
}
.p-service__gallery img {
  width: 100%;
}
.p-service__good__ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto 10.6666666667vw;
  padding: 0 18.6666666667vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .p-service__good__ttl {
    max-width: 1200px;
    width: 100%;
    font-size: 32px;
    margin-bottom: 77px;
    padding: 0;
    text-align: center;
  }
}
.p-service__good__ttl:before, .p-service__good__ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10.9333333333vw;
  height: 1px;
  background-color: #3b3324;
}
@media screen and (min-width: 641px) {
  .p-service__good__ttl:before, .p-service__good__ttl:after {
    width: 400px;
    height: 1px;
  }
}
.p-service__good__ttl:before {
  left: 0;
}
.p-service__good__ttl:after {
  right: 0;
}
.p-service__good__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4.2666666667vw 0;
  padding: 0 8.5333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__good__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 11px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
  }
}
.p-service__good__item .good-item__ttl {
  position: relative;
  z-index: 1;
  width: 66.1333333333vw;
  margin: 0 auto -4.2666666667vw;
  padding: 2.6666666667vw 5.3333333333vw;
  background-color: #f36638;
  font-size: 4.2666666667vw;
  text-align: center;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .p-service__good__item .good-item__ttl {
    width: 294px;
    font-size: 18px;
    margin: 0 auto -16px;
    padding: 10px 20px;
  }
}
.p-service__good__item .good-item__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 4.2666666667vw;
  padding: 8.8vw 5.3333333333vw 5.8666666667vw;
  background-color: #f8f6ef;
}
@media screen and (min-width: 641px) {
  .p-service__good__item .good-item__box {
    padding: 40px 22px 30px;
    gap: 0 23px;
  }
}
.p-service__good__item .good-item__img {
  width: 19.7333333333vw;
}
@media screen and (min-width: 641px) {
  .p-service__good__item .good-item__img {
    width: 123px;
  }
}
.p-service__good__item .good-item__txt {
  flex: 1;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .p-service__good__item .good-item__txt {
    font-size: 20px;
  }
}

.p-faq {
  width: 100%;
  padding: 18.6666666667vw 0;
}
@media screen and (min-width: 641px) {
  .p-faq {
    padding: 90px 0 130px;
  }
}
@media screen and (min-width: 641px) {
  .p-faq__inner {
    max-width: 900px;
    margin: 0 auto;
  }
}
.p-faq__item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #3b3324;
  padding: 5.3333333333vw 0;
}
@media screen and (min-width: 641px) {
  .p-faq__item {
    border-top: 1px solid #3b3324;
    padding: 20px 0;
  }
}
.p-faq__item:last-child {
  border-bottom: 1px solid #3b3324;
}
@media screen and (min-width: 641px) {
  .p-faq__item:last-child {
    border-bottom: 1px solid #3b3324;
  }
}
.p-faq__item__label {
  font-family: "Roboto", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .p-faq__item__label {
    font-size: 16px;
  }
}
.p-faq__item__q {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 8vw;
  margin-bottom: 5.3333333333vw;
  padding-left: 0;
  padding-bottom: 5.3333333333vw;
  border-bottom: 1px dotted #d9d9d9;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .p-faq__item__q {
    gap: 0 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #d9d9d9;
    font-size: 15px;
  }
}
.p-faq__item__a {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 8vw;
  padding-left: 0;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .p-faq__item__a {
    gap: 0 30px;
    font-size: 15px;
  }
}
.p-faq__item__a .p-faq__item__label {
  font-weight: 500;
  color: #ff8200;
}

.p-business-casestudy-single {
  width: 100%;
  float: none;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__inner {
    max-width: 932px;
  }
}
.p-business-casestudy-single__ttl {
  margin: 5.3333333333vw 0;
  padding: 0 0 5.3333333333vw;
  border-bottom: 1px solid #cccccc;
  text-align: left;
  font-size: 5.3333333333vw;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__ttl {
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #cccccc;
    font-size: 32px;
    line-height: 1.8;
  }
}
.p-business-casestudy-single__ttl:before, .p-business-casestudy-single__ttl:after {
  display: none;
}
.p-business-casestudy-single__img {
  width: 100%;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__img {
    margin-bottom: 20px;
  }
}
.p-business-casestudy-single__content p {
  margin-top: 5.3333333333vw;
  font-size: 4vw;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__content p {
    margin-top: 30px;
    font-size: 15px;
  }
}
.p-business-casestudy-single__content h1,
.p-business-casestudy-single__content h2 {
  margin-top: 11.7333333333vw;
  margin-bottom: 0;
  padding: 5.3333333333vw 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  background-color: #f8f6ef;
  border-bottom: 1px solid #dad7d3;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__content h1,
  .p-business-casestudy-single__content h2 {
    margin-top: 54px;
    padding: 30px 10px;
    font-size: 20px;
    border-bottom: 1px solid #dad7d3;
  }
}
.p-business-casestudy-single__content h1:before, .p-business-casestudy-single__content h1:after,
.p-business-casestudy-single__content h2:before,
.p-business-casestudy-single__content h2:after {
  display: none;
}
.p-business-casestudy-single__content h3,
.p-business-casestudy-single__content h4 {
  margin-top: 11.2vw;
  padding-left: 2.9333333333vw;
  border-left: 1.0666666667vw solid #dad7d3;
  font-size: 4vw;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__content h3,
  .p-business-casestudy-single__content h4 {
    margin-top: 42px;
    padding-left: 11px;
    border-left: 4px solid #dad7d3;
    font-size: 15px;
  }
}
.p-business-casestudy-single__content img {
  max-width: 186.6666666667vw;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__content img {
    max-width: 700px;
  }
}
.p-business-casestudy-single .c-btn {
  margin: 13.3333333333vw auto 6.4vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single .c-btn {
    margin: 95px auto 45px;
    max-width: 500px;
  }
}
.p-business-casestudy-single .c-sq-btn {
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single .c-sq-btn {
    max-width: 257px;
  }
}
.p-business-casestudy-single__related {
  padding-top: 25.0666666667vw;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__related {
    padding-top: 160px;
  }
}
.p-business-casestudy-single__related__ttl {
  margin-bottom: 10.6666666667vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .p-business-casestudy-single__related__ttl {
    margin-bottom: 50px;
    font-size: 32px;
  }
}
.p-business-casestudy-single__related .p-business-casestudy__list {
  margin: 0;
}/*# sourceMappingURL=style.css.map */