@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;700&family=Zen+Old+Mincho:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #589B56;
  --primary-dark:#156F5C;
  --accent:#A0873F;
  --accent-pale:#D3C293;
  --text: #222222;
  --disabled:#999999;
  --bg:#f6f6f6;
  --white: #fff;
  --line:#06C755;
  --line-pale:#56db8d;
  --enphasis:#EE1919;
  --marker:#FFFB8C;
}

header.low,
footer.high {
  display: none;
}

h1.site-title {
  font-size: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -1000px;
  left: -1000px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.section-heading {
  font-size: clamp(1.375rem, 0.0208333333rem + 5.7777777778vw, 2.1875rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
  font-family: "Zen Old Mincho", "serif";
  text-align: center;
  letter-spacing: 0;
  padding-top: 0.7em;
  position: relative;
}
.section-heading::before {
  content: "";
  width: 4em;
  height: 0.7em;
  background: url(../images/heading-ornament.webp) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.parts-heading {
  font-size: clamp(1.25rem, 0.2083333333rem + 4.4444444444vw, 1.875rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
  font-family: "Zen Old Mincho", "serif";
}

.card-heading {
  font-size: clamp(1.125rem, 0.5rem + 2.6666666667vw, 1.5rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
  font-family: "Zen Old Mincho", "serif";
}

.small-heading {
  font-size: clamp(1rem, 0.5833333333rem + 1.7777777778vw, 1.25rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
  font-family: "Zen Old Mincho", "serif";
}

.lead {
  font-size: clamp(1rem, 0.5833333333rem + 1.7777777778vw, 1.25rem);
  line-height: 1.6;
  color: var(--text);
}

.text-l {
  font-size: clamp(1rem, 0.7916666667rem + 0.8888888889vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
}

.text {
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  line-height: 1.8;
  color: var(--text);
}

.note {
  font-size: clamp(0.75rem, 0.5416666667rem + 0.8888888889vw, 0.875rem);
  line-height: 1.6;
  color: var(--text);
}

.ff-en {
  font-family: "Barlow Semi Condensed", sans-serif;
}

.ff-ja {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.ff-mincho {
  font-family: "Zen Old Mincho", "serif";
}

.primary-color {
  color: var(--primary);
}

.accent-color {
  color: var(--accent);
}

.white {
  color: var(--white);
}

.gray {
  color: var(--disabled);
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.large {
  font-size: 1.5em;
}

.marker {
  background: linear-gradient(to top, var(--marker) 40%, transparent 40%);
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.radius4 {
  border-radius: 4px;
}

.radius8 {
  border-radius: 8px;
}

.kome {
  padding-left: 1em;
  text-indent: -1em;
}
.kome::before {
  content: "※";
}

.header {
  width: 100%;
  height: clamp(50px, 13.3333333333vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: clamp(40px, 9.3333333333vw, 56px);
  height: auto;
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}
.list-normal > li:not(:first-of-type) {
  margin-top: 0.5em;
}

.list-triangle {
  position: relative;
  padding-left: 1.5em;
}
.list-triangle::before {
  content: "";
  width: 0.75em;
  height: 1em;
  background: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.5em);
}

.link-text {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.link-text-outer {
  padding-right: 1.5em;
  position: relative;
}
.link-text-outer::after {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
          mask: url(../images/icon-outer-link.svg) no-repeat center/contain;
  background: var(--white);
  position: absolute;
  right: 0;
  top: calc(50% - 0.5em);
}

.btn {
  display: block;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  width: min(300px, 100%);
  height: 50px;
  display: grid;
  place-items: center;
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  border: none;
  border-radius: 4px;
  margin-inline: auto;
  padding: 0 1em;
  cursor: pointer;
}
.btn.btn-mail {
  background: var(--accent);
  border-radius: 99px;
  padding-left: 2em;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.btn.btn-mail::before {
  content: "";
  width: 36px;
  aspect-ratio: 1;
  background: url(../images/icon-mail.webp) no-repeat center/contain;
  position: absolute;
  left: 6px;
  top: calc(50% - 18px);
}
.btn.btn-mail:hover {
  background: var(--accent-pale);
}
.btn.btn-line {
  background: var(--line);
  border-radius: 99px;
  padding-left: 2em;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.btn.btn-line::before {
  content: "";
  width: 36px;
  aspect-ratio: 1;
  background: url(../images/icon-line.webp) no-repeat center/contain;
  position: absolute;
  left: 10px;
  top: calc(50% - 18px);
}
.btn.btn-line:hover {
  background: var(--line-pale);
}
.btn.btn-address {
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  cursor: pointer;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.btn-wrap > p {
  width: 100%;
  text-align: center;
}

a {
  position: relative;
}
a .text-wrap {
  display: block;
  height: 1lh;
  overflow: hidden;
}
a .text-wrap .text-in {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 1.1;
  transition: all 0.3s ease-out;
}
a .text-wrap .text-in::after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100%;
}
a:hover .text-in {
  transform: translateY(-100%);
}
@media (max-width: 580px) {
  a:hover .text-in {
    transform: translateY(0);
  }
}

.sec {
  padding: clamp(3.5rem, 1.8333333333rem + 7.1111111111vw, 4.5rem) 0;
  background: var(--bg);
  position: relative;
}
.sec .container {
  width: min(600px, 88%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.sec.border-bottom {
  border-bottom: 1px solid var(--border);
}

.bg-white {
  background: var(--white);
}

.bg-orange {
  background: var(--primary-pale);
}

.w880 {
  width: min(880px, 100%);
  margin-inline: auto;
}

.w640 {
  width: min(640px, 100%);
  margin-inline: auto;
}

.full-width {
  margin-inline: calc(50% - 50vw);
}

.flex {
  display: flex;
}

.jc-center {
  justify-content: center;
}

.jc-right {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, -1.5rem + 10.6666666667vw, 2.5rem);
}
@media (max-width: 580px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, -1.5rem + 10.6666666667vw, 2.5rem);
}
@media (max-width: 580px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}

.mt160 {
  margin-top: clamp(6rem, -0.6666666667rem + 28.4444444444vw, 10rem);
}

.mt112 {
  margin-top: clamp(4rem, -1rem + 21.3333333333vw, 7rem);
}

.mt96 {
  margin-top: clamp(3.5rem, -0.6666666667rem + 17.7777777778vw, 6rem);
}

.mt80 {
  margin-top: clamp(3rem, -0.3333333333rem + 14.2222222222vw, 5rem);
}

.mt64 {
  margin-top: clamp(2.5rem, 0rem + 10.6666666667vw, 4rem);
}

.mt48 {
  margin-top: clamp(2rem, 0.3333333333rem + 7.1111111111vw, 3rem);
}

.mt40 {
  margin-top: clamp(1.75rem, 0.5rem + 5.3333333333vw, 2.5rem);
}

.mt32 {
  margin-top: clamp(1rem, -0.6666666667rem + 7.1111111111vw, 2rem);
}

.mt24 {
  margin-top: clamp(1rem, 0.1666666667rem + 3.5555555556vw, 1.5rem);
}

.mt16 {
  margin-top: clamp(0.5rem, -0.3333333333rem + 3.5555555556vw, 1rem);
}

.mt8 {
  margin-top: clamp(0.25rem, -0.1666666667rem + 1.7777777778vw, 0.5rem);
}

.mt4 {
  margin-top: 4px;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
  padding-inline: 1rem;
}
.accordion-content.open {
  grid-template-rows: 1fr;
  padding: 1rem;
}
.accordion-content > div {
  overflow: hidden;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 580px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: hidden;
}
@media (max-width: 580px) {
  html {
    scroll-padding-top: 50px;
  }
}
html.lock {
  overflow: hidden;
}

body {
  background: url(../images/bg-pc.webp) no-repeat center/cover fixed;
  color: var(--text);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt" on;
  font-optical-sizing: auto;
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  overflow-x: clip;
}

.page-container {
  width: min(600px, 100%);
  min-height: 100dvh;
  margin-inline: auto;
  background: var(--white);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
}

.mv-catch {
  width: 90%;
  margin-inline: auto;
}

.catch {
  margin-top: 8px;
  color: var(--primary);
  font-size: clamp(1.375rem, 0.0208333333rem + 5.7777777778vw, 2.1875rem);
  font-family: "Zen Old Mincho", "serif";
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.catch-sub {
  color: var(--text);
  font-size: clamp(0.875rem, 0.25rem + 2.6666666667vw, 1.25rem);
  font-family: "Zen Old Mincho", "serif";
  line-height: 1.4;
  font-weight: 400;
}

.mv-wrap {
  margin-top: 16px;
}
.mv-wrap .mv-image {
  border-radius: clamp(16px, 5.3333333333vw, 32px) clamp(16px, 5.3333333333vw, 32px) 0 0;
  overflow: hidden;
}

.mv-comments-wrap {
  background: var(--primary-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(8px, 2.6666666667vw, 16px) 0;
}
.mv-comments-wrap > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.mv-comments-wrap > li:not(:last-child) {
  border-right: 1px solid var(--white);
}
.mv-comments-wrap > li figure {
  width: clamp(24px, 6vw, 36px);
  margin-bottom: 8px;
}
.mv-comments-wrap > li .note {
  line-height: 1.3;
  font-size: clamp(0.6875rem, 0.375rem + 1.3333333333vw, 0.875rem);
  letter-spacing: 0;
}

.achivement-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  background: var(--primary);
  padding: 16px;
}
.achivement-wrap img {
  width: min(152px, 40%);
}

.bg-stuff {
  background: url(../images/bg-stuff.webp) no-repeat center/cover;
}

.bg-concerns {
  background: url(../images/bg-concerns.webp) no-repeat center/cover;
}

.solution-wrap {
  background: url(../images/ribbon-gold.webp) repeat-x center/contain;
  display: grid;
  padding: 0.6em 0;
  place-items: center;
}
.solution-wrap .parts-heading {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.05em;
}

.bg-why {
  background: linear-gradient(to bottom, #EDF5DF, #77CDA1);
  padding-bottom: clamp(80px, 18.6666666667vw, 112px);
}

.bg-service {
  background: url(../images/bg-service.webp) no-repeat center/cover;
  border-top-left-radius: 50% clamp(32px, 10.6666666667vw, 64px);
  border-top-right-radius: 50% clamp(32px, 10.6666666667vw, 64px);
  margin-top: -64px;
  padding-top: clamp(80px, 18.6666666667vw, 112px);
  padding-bottom: clamp(80px, 18.6666666667vw, 112px);
}
@media (max-width: 580px) {
  .bg-service {
    margin-top: -32px;
  }
}

.bg-voice {
  background: url(../images/bg-voice.webp) no-repeat center/cover;
  border-top-left-radius: 50% clamp(32px, 10.6666666667vw, 64px);
  border-top-right-radius: 50% clamp(32px, 10.6666666667vw, 64px);
  margin-top: -64px;
  padding-top: clamp(80px, 18.6666666667vw, 112px);
}
@media (max-width: 580px) {
  .bg-voice {
    margin-top: -32px;
  }
}

.bg-case {
  background: url(../images/bg-texture.webp) repeat-y top/800px;
  padding-bottom: clamp(80px, 18.6666666667vw, 112px);
}
.bg-case.cta {
  padding-bottom: clamp(64px, 16vw, 96px);
}

.bg-flow {
  background: linear-gradient(to bottom, #DCE789, #589B56);
  border-top-left-radius: 50% clamp(48px, 10.6666666667vw, 64px);
  border-top-right-radius: 50% clamp(48px, 10.6666666667vw, 64px);
  margin-top: -64px;
}

.bg-faq {
  background: url(../images/bg-faq.webp) no-repeat center/cover;
}

.cta-area-sp {
  display: none;
}
@media (max-width: 1200px) {
  .cta-area-sp {
    width: min(540px, 94%);
    margin-inline: auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    z-index: 99;
  }
  .cta-area-sp > a {
    display: block;
  }
}

.cta-area-pc {
  width: 240px;
  position: fixed;
  bottom: 40px;
  right: calc((50vw - 300px) / 2);
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1200px) {
  .cta-area-pc {
    display: none;
  }
}

.splide-wrap {
  margin-inline: -6.8%;
}

.stuff-list > li {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  padding: clamp(16px, 4vw, 24px);
}
.stuff-list > li .face-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.stuff-list > li .face-wrap figure {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.stuff-list > li .face-wrap figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stuff-list > li .face-wrap .name-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 120px;
}
.stuff-list > li .face-wrap .name-box .name {
  font-size: clamp(1.125rem, 0.5rem + 2.6666666667vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--primary);
  margin-bottom: 4px;
}
.stuff-list > li .face-wrap .name-box .age {
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  color: var(--disabled);
  margin-top: 8px;
}
.stuff-list > li .stuff-heading {
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.25em;
}

.splide__arrow--prev,
.splide__arrow--next {
  opacity: 1;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.splide__arrow--prev {
  background: url(../images/slide-arrow-prev.webp) no-repeat center/10px, #fff;
  left: clamp(10px, 6.6666666667vw, 40px);
}

.splide__arrow--next {
  background: url(../images/slide-arrow-next.webp) no-repeat center/10px, #fff;
  right: clamp(10px, 6.6666666667vw, 40px);
}

.splide__list {
  padding-bottom: 16px !important;
}

.text-concerns {
  position: relative;
}
.text-concerns::before {
  content: "";
  width: clamp(180px, 38.3333333333vw, 230px);
  aspect-ratio: 2/1;
  background: url(../images/text-Concerns.webp) no-repeat center/contain;
  position: absolute;
  left: -12%;
  top: -10%;
}

.base-card-arpha {
  background: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--white);
  border-top: 2px solid var(--white);
  border-radius: clamp(8px, 2.6666666667vw, 16px);
  padding: clamp(16px, 5.3333333333vw, 32px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.base-card {
  background: var(--white);
  border-radius: clamp(8px, 2.6666666667vw, 16px);
  padding: clamp(16px, 5.3333333333vw, 32px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.concerns-list > li {
  padding-block: 1em;
  border-bottom: 1px dotted var(--accent-pale);
}
.concerns-list > li p {
  font-size: clamp(1rem, 0.7916666667rem + 0.8888888889vw, 1.125rem);
  line-height: 1.4;
  padding-left: 1.75em;
  position: relative;
}
.concerns-list > li p::before {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  background: url(../images/icon-check.webp) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.625em);
}

.text-why {
  position: relative;
}
.text-why::before {
  content: "";
  width: clamp(180px, 38.3333333333vw, 230px);
  aspect-ratio: 2/1;
  background: url(../images/text-whyus.webp) no-repeat center/contain;
  position: absolute;
  left: -12%;
  top: -8%;
}

.why-list {
  display: flex;
  flex-direction: column;
}
.why-list > li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 1em;
}
.why-list > li:not(:first-child) {
  padding-top: 1em;
  border-top: 1px solid var(--accent-pale);
}

.service-menu-list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 8vw, 48px);
}
.service-menu-list > li figure {
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  width: 94%;
  margin-left: auto;
}
.service-menu-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-menu-list > li:nth-child(even) figure {
  border-radius: 0 16px 16px 0;
  margin-left: 0;
}

.service-card {
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: clamp(16px, 4vw, 24px);
  width: min(420px, 80%);
  margin-top: -48px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-card::before {
  content: "";
  width: clamp(40px, 9.3333333333vw, 56px);
  aspect-ratio: 1;
  background: var(--primary);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
}
.service-card .card-heading {
  position: relative;
  padding-left: 1.25em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--accent-pale);
  margin-bottom: 0.5em;
}
.service-card .card-heading::before {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background: url(../images/icon-shine.webp) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.5em);
}
.service-card .price {
  margin-top: clamp(8px, 2.6666666667vw, 16px);
  display: flex;
  align-items: flex-end;
}
.service-card .price .ff-en, .service-card .price .ff-ja {
  font-size: clamp(1.75rem, 0.9166666667rem + 3.5555555556vw, 2.25rem);
  font-weight: 500;
  color: var(--accent);
}
.service-card .price .tax {
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  line-height: 1.5;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}

.box-before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  border-right: 1px solid var(--white);
  box-shadow: 10px 0 15px -13px #000;
}

.box-before img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}

.box-before::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(../images/before-after-nav.svg) no-repeat center/24px, var(--white);
  border-radius: 50%;
  box-shadow: 10px 0 15px -13px #000;
}

.slider-range {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}

.before-text,
.after-text {
  position: absolute;
  top: 0px;
  padding: 4px 1em;
  color: var(--white);
  font-size: clamp(0.75rem, 0.5416666667rem + 0.8888888889vw, 0.875rem);
}

.before-text {
  left: 0;
  background: var(--text);
  z-index: 1;
}

.after-text {
  right: 0;
  background: var(--accent);
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.flow-list > li {
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: clamp(16px, 4vw, 24px);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}
.flow-list > li .num-box {
  width: 48px;
  aspect-ratio: 1;
}
.flow-list > li .card-heading {
  color: var(--accent);
}
.flow-list > li:not(:first-child)::before {
  content: "";
  width: 44px;
  aspect-ratio: 2/1;
  -webkit-mask: url(../images/arrow-flow.svg) no-repeat center/contain;
          mask: url(../images/arrow-flow.svg) no-repeat center/contain;
  background: var(--white);
  position: absolute;
  left: calc(50% - 22px);
  top: -36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list > li {
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}
.faq-list > li .question {
  padding: clamp(16px, 4vw, 24px);
  padding-right: 40px;
  cursor: pointer;
  font-size: clamp(1rem, 0.5833333333rem + 1.7777777778vw, 1.25rem);
  font-weight: 500;
  color: var(--accent);
  font-family: "Zen Old Mincho", "serif";
  line-height: 1.4;
  position: relative;
}
.faq-list > li .question span {
  display: block;
  padding-left: 1.75em;
  position: relative;
}
.faq-list > li .question span::before {
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  background: url(../images/question.webp) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.6em);
}
.faq-list > li .question::after {
  content: "";
  width: 22px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/faq-plus.svg) no-repeat center/contain;
          mask: url(../images/faq-plus.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  top: clamp(16px, 4vw, 24px);
  right: 16px;
  transition: all 0.3s ease-out;
}
.faq-list > li .question.active::after {
  transform: rotate(45deg);
}
.faq-list > li .answer {
  padding-inline: clamp(16px, 4vw, 24px);
}
.faq-list > li .answer > div {
  padding-left: 2em;
  position: relative;
}
.faq-list > li .answer > div::before {
  content: "";
  width: 1.75em;
  aspect-ratio: 1;
  background: url(../images/answer.webp) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.625em);
}
.faq-list > li .answer.open {
  padding-bottom: clamp(16px, 4vw, 24px);
}

.text-gradation {
  background: linear-gradient(to right, #A0873F, #222222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-popup {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-out;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 24px);
  z-index: 100;
}
.modal-popup.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-popup .overlay {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.modal-popup .coupon-card {
  background: var(--white);
  border-radius: 8px;
  width: 300px;
  padding: clamp(24px, 5.3333333333vw, 32px);
  border: 3px solid var(--accent-pale);
  position: relative;
  z-index: 99;
}
.modal-popup .coupon-card::before, .modal-popup .coupon-card::after {
  content: "";
  width: 75%;
  height: 157px;
  background: var(--accent-pale);
  position: absolute;
  bottom: 0;
}
.modal-popup .coupon-card::before {
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 0;
}
.modal-popup .coupon-card::after {
  right: 0;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.modal-popup .coupon-card .btn-close {
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--accent-pale);
  cursor: pointer;
  background: url(../images/icon-close.svg) no-repeat center/16px, var(--white);
  position: absolute;
  top: -16px;
  right: -16px;
  cursor: pointer;
}
.modal-popup .coupon-card .coupon-ribbon {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 120px;
}
.modal-popup .coupon-card .content {
  position: relative;
  z-index: 1;
}
.modal-popup .coupon-card .content figure {
  width: 140px;
  margin-inline: auto;
}
.modal-popup .coupon-card .coupon-text {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  font-family: "Zen Old Mincho", "serif";
  font-weight: 700;
}
.modal-popup .coupon-card .coupon-text span {
  color: var(--line);
  font-size: 3rem;
}
.modal-popup .coupon-card .coupon-text .coupon-line {
  position: absolute;
  top: -28px;
  right: 8px;
  width: 40px;
}
.modal-popup .coupon-card .btn-wrap a {
  padding-left: 2.5em;
}
.modal-popup .coupon-card .btn-wrap a span {
  font-family: "Zen Old Mincho", "serif";
  font-size: 1.25rem;
}

.form-title-wrap {
  width: 100%;
  background: url(../images/hero-form.webp) no-repeat top center/cover;
  height: 200px;
  display: grid;
  place-items: center;
}
.form-title-wrap .form-title {
  background: rgba(255, 255, 255, 0.7);
  width: 240px;
  height: 104px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.125rem, 0.9166666667rem + 0.8888888889vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.form-container {
  width: min(536px, 90%);
  margin-inline: auto;
  padding: clamp(32px, 8vw, 48px) 0;
}

.form-stepbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.form-stepbar::before {
  content: "";
  width: 66.66%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
}
.form-stepbar li {
  text-align: center;
  padding-top: 1.5em;
  position: relative;
  font-size: clamp(0.8125rem, 0.5rem + 1.3333333333vw, 1rem);
  color: var(--disabled);
}
.form-stepbar li::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  border: 2px solid var(--primary);
  background: var(--white);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 8px);
}
.form-stepbar li.is-active {
  font-weight: 700;
  color: var(--text);
}
.form-stepbar li.is-active::before {
  background: var(--primary);
}

.form-heading {
  font-size: clamp(1.25rem, 0.8333333333rem + 1.7777777778vw, 1.5rem);
  line-height: 1.4;
  font-weight: 700;
}

.form-heading-s {
  font-size: clamp(1rem, 0.7916666667rem + 0.8888888889vw, 1.125rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--primary);
}

.required {
  position: relative;
}
.required::after {
  content: "＊";
  font-size: 0.8em;
  color: var(--enphasis);
  position: absolute;
  top: -0.3em;
  right: -1em;
}

.accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 5.3333333333vw, 32px);
}

.menu-cate {
  background: var(--bg);
  padding: 1em;
  font-size: clamp(1rem, 0.7916666667rem + 0.8888888889vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
  border-radius: 4px;
  position: relative;
}
.menu-cate::after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-plus.svg) no-repeat center/contain;
          mask: url(../images/icon-plus.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  right: 16px;
  top: calc(50% - 12px);
  transition: all 0.3s ease-out;
}
.menu-cate.active::after {
  transform: rotate(45deg);
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--disabled);
  border-radius: 4px;
  background-color: var(--white);
  transition: all 0.2s ease;
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg) scale(0.5);
  width: 6px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: translateY(-60%) rotate(45deg) scale(1);
}
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

input[type=text],
input[type=email],
input[type=tel] {
  border: 1px solid var(--disabled);
  border-radius: 4px;
  width: 100%;
  height: 40px;
  padding: 0 0.75em;
  font-size: clamp(0.875rem, 0.6666666667rem + 0.8888888889vw, 1rem);
  color: var(--text);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  outline: none;
  border-color: var(--primary);
}

.input-text input[type=text] {
  width: 100px;
}
.input-text span {
  margin-left: 8px;
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wpcf7-radio .wpcf7-list-item.first {
  display: none;
}

.radio-group__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
  margin: 0 0 8px 0;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wpcf7-list-item input[type=radio] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}
.wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--disabled);
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.2s ease;
}
.wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0.5);
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease;
}
.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: var(--primary);
}
.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.wpcf7-list-item input[type=radio]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.radio-clear {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s ease;
}
.radio-clear:hover {
  color: var(--primary-dark);
}
.radio-clear:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.tategata,
.drum {
  display: none;
}
.tategata.is-active,
.drum.is-active {
  display: block;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text);
  background-color: var(--white);
  border: 2px solid var(--disabled);
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.wpcf7-text::-moz-placeholder, .wpcf7-email::-moz-placeholder, .wpcf7-tel::-moz-placeholder, .wpcf7-textarea::-moz-placeholder {
  color: var(--disabled);
}
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder,
.wpcf7-textarea::placeholder {
  color: var(--disabled);
}
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.wpcf7-text:hover:not(:focus),
.wpcf7-email:hover:not(:focus),
.wpcf7-tel:hover:not(:focus),
.wpcf7-textarea:hover:not(:focus) {
  border-color: var(--primary);
}
.wpcf7-text.postal-code,
.wpcf7-email.postal-code,
.wpcf7-tel.postal-code,
.wpcf7-textarea.postal-code {
  width: 160px;
}

.wpcf7-textarea {
  min-height: 160px;
  resize: vertical;
}

.wpcf7-not-valid {
  border-color: var(--enphasis);
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 14px;
  color: var(--enphasis);
}

.form-field-row {
  display: flex;
  gap: 16px;
}
.form-field-row > p {
  display: contents;
}

.form-datetime-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 580px) {
  .form-datetime-row {
    flex-direction: column;
  }
}

.form-datetime-field {
  flex: 1;
}

.wpcf7-date {
  width: 100%;
  padding: 0 1rem;
  height: 40px;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid var(--disabled);
  border-radius: 4px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}
.wpcf7-date:focus {
  outline: none;
  border-color: var(--primary);
}

.wpcf7-select {
  width: 100%;
  padding: 0 1rem;
  height: 40px;
  color: var(--text);
  background-color: var(--white);
  border: 1px solid var(--disabled);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
  -moz-appearance: menulist-button;
  -webkit-appearance: menulist-button;
  appearance: menulist-button;
}
.wpcf7-select:invalid, .wpcf7-select option[value=""] {
  color: var(--disabled);
}

.wpcf7-previous.link-text {
  border: 0;
  background: none;
  padding: 0;
}

.wpcf7-previous {
  cursor: pointer;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}
/*# sourceMappingURL=moveon-lp.css.map */