@charset "UTF-8";
/*--- reset ---*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: normal;
  tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: none;
  box-shadow: none;
  outline-offset: 0;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --c-black: #1f3961;
  --c-primary: #38771d;
  --c-secondary: #ebf0df;
  --c-tertiary: #a7d495;
  --c-yellow: #fdcd64;
  --c-red: #EB4B19;
  --c-bg-beige: #fff7de;
  --c-cta: #91d050;
}

html {
  font-size: 10px;
}

body {
  padding: 24px 16px;
  font-family: var(--font-noto);
  color: var(--c-black);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--c-secondary);
}

em {
  font-weight: 700;
  font-style: normal;
}

.w100 {
  width: 100%;
  height: auto;
}

.wbr {
  display: inline-block;
}

.wrapper {
  max-width: 1110px;
  padding: 32px 16px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 16px;
}

.header {
  margin-bottom: 40px;
}

.sec:not(:nth-last-of-type(1)) {
  margin-bottom: 56px;
}
.sec__ttl {
  padding: 10px 12px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  background-color: var(--c-primary);
  border-radius: 0 0 8px 8px;
}
.sec__body {
  padding-inline: 8px;
}
.sec__body--2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.sec__lg-lead {
  width: fit-content;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(to bottom, transparent 70%, color-mix(in srgb, var(--c-yellow) 50%, #fff) 70%);
}
.sec__lg-lead:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .sec__lg-lead:before {
    margin-top: 0;
  }
}
.sec__lg-lead--center {
  margin-inline: auto;
}
.sec__lead:not(:nth-last-of-type(1)) {
  margin-bottom: 0.8em;
}
.sec__center {
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  font-size: 1.8rem;
}
.sec__center:not(:nth-last-of-type(1)) {
  margin-bottom: 0.8em;
}

.sec-in--2col-item {
  padding: 0 16px 16px;
  border-radius: 8px;
}
.sec-in--2col-item h3 {
  width: fit-content;
  padding: 10px 8px 0;
  margin: 0 auto 8px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  border-top: 4px solid var(--c-primary);
}
.sec-in--2col-item h4 {
  width: fit-content;
  padding: 0 12px;
  margin: 16px auto 8px;
  color: #fff;
  background-color: var(--c-primary);
  border-radius: 4px;
}
.sec-in:not(.sec-in--2col-item):not(:nth-last-of-type(1)) {
  margin-bottom: 24px;
}
.sec-in__ttl {
  position: relative;
  padding-top: 10px;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
}
.sec-in__ttl:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--c-tertiary);
}

.is-line .qr {
  display: none;
}
.is-line-for-pc {
  display: none;
}

.accept-info {
  text-align: center;
}
.accept-info__lead {
  margin-bottom: 20px;
  line-height: 1.75;
}
.accept-info__lead:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.75) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .accept-info__lead:before {
    margin-top: 0;
  }
}
.accept-info__ttl {
  width: fit-content;
  padding: 4px 16px 6px;
  margin: 0 auto 8px;
  background-color: var(--c-secondary);
  border-radius: 8px;
}
.accept-info__span {
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.accept-info__span small {
  display: block;
  margin-top: 4px;
  font-weight: 400;
}
.accept-info__day {
  margin-bottom: 4px;
  font-weight: 500;
}
.accept-info__time {
  line-height: 1.5;
}

.line-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  height: 48px;
  padding-inline: 16px;
  margin-top: 12px;
  background-color: #00b900;
  border-radius: 4px;
}
.line-btn__icon {
  flex: 0 0 auto;
  width: 30px;
}
.line-btn__lbl {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}
p:has(.line-btn) {
  text-align: center;
}

.attention {
  margin-bottom: 8px;
}
.attention__item {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.75;
}
.attention__item:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.75) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .attention__item:before {
    margin-top: 0;
  }
}
.attention__item:after {
  content: "☆";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
}
.attention__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 20px;
}
.tel__item {
  flex: 0 0 auto;
  padding: 8px 16px;
  text-align: center;
  background-color: var(--c-bg-beige);
  width: 100%;
}
.tel__term {
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 4px;
}
.tel__num {
  font-size: 1.4rem;
  line-height: 1.5;
}
.tel__num a {
  color: var(--c-primary);
  font-size: 1.57142857em;
  font-weight: 600;
}

.lh-crop {
  line-height: 1.75;
}
.lh-crop:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.75) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .lh-crop:before {
    margin-top: 0;
  }
}

.footer {
  margin-top: 32px;
}

.consult {
  text-align: center;
}
.consult-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  height: 56px;
  padding-inline: 32px;
  background-color: var(--c-cta);
  border-radius: 8px;
  transition: background-color 0.2s;
}
.consult-btn__icon {
  flex: 0 0 auto;
  width: 28px;
}
.consult-btn__lbl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (any-hover: hover) {
  .consult-btn:hover {
    background-color: color-mix(in srgb, var(--c-cta) 90%, #000);
  }
}

@media screen and (min-width: 768px) {
  body {
    padding: 32px 24px;
    font-size: 1.6rem;
  }
  .wrapper {
    padding: 32px clamp(32px, 5.765765%, 64px);
    border-radius: 24px;
  }
  .header {
    margin-bottom: 64px;
    padding-top: 32px;
  }
  .sec {
    clear: both;
  }
  .sec:not(:nth-last-of-type(1)) {
    margin-bottom: clamp(56px, 8.1466395%, 80px);
  }
  .sec__ttl {
    padding: 16px 12px;
    margin-bottom: clamp(24px, 3.2586558%, 32px);
    font-size: 2.8rem;
  }
  .sec__body {
    padding-inline: 16px;
  }
  .sec__lg-lead {
    margin-bottom: 12px;
    font-size: 2rem;
  }
  .sec-in--2col-item {
    padding: 0 max(5.4421768%, 16px) max(5.4421768%, 16px);
  }
  .sec-in--2col-item h3 {
    font-size: 2rem;
  }
  .sec-in--2col-item h4 {
    padding: 4px 16px;
    margin: 20px auto 8px;
  }
  .sec-in:not(.sec-in--2col-item):not(:nth-last-of-type(1)) {
    margin-bottom: 28px;
  }
  .sec-in__ttl {
    padding-top: 12px;
    font-size: 2rem;
  }
  .sec-in__ttl:before {
    width: 40px;
  }
  .is-line .qr {
    display: block;
    float: right;
    width: min(23.4375%, 220px);
    margin-left: 12px;
  }
  .is-line-for-pc {
    display: block;
  }
  .is-line-for-sp {
    display: none;
  }
  .accept-info__lead {
    margin-bottom: 30px;
    text-align: center;
  }
  .accept-info__ttl {
    padding: 4px 20px 6px;
    margin: 0 auto 10px;
    font-size: 2rem;
  }
  .accept-info__span {
    font-size: 2.4rem;
  }
  .accept-info__span small {
    font-size: 0.6667em;
  }
  .accept-info__day {
    font-size: 2rem;
  }
  .accept-info__time {
    font-size: 1.8rem;
  }
  .attention {
    margin-bottom: 12px;
  }
  .attention__item:not(:nth-last-of-type(1)) {
    margin-bottom: 12px;
  }
  .tel {
    margin-top: 24px;
  }
  .tel__item {
    flex: 1 1 240px;
    padding: 12px 32px;
  }
  .tel__term {
    font-size: 1.8rem;
  }
  .tel__num {
    font-size: 1.6rem;
  }
  .tel__num a {
    pointer-events: none;
  }
  .footer {
    margin-top: 40px;
  }
  .consult-btn {
    padding-inline: 40px;
  }
  .consult-btn__icon {
    width: 32px;
  }
  .consult-btn__lbl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .txt {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */