@charset "UTF-8";
/*====================================================
変数
====================================================*/
:root {
  --color-black: #544216;
  --color-white: #fff;
  --color-primary: #336844;
  --color-primary: #336844;
  --color-accent: #d98f4a;
  --color-bg: #ecf3d4;
  --contentWidth: 1080px;
  --paddingInlineSize: 30px;
  --header-height: 80px;
  --z-sp-menu: 10000;
  --z-sp-header: 1000;
  --transition-second: 0.4s;
  --base-easing: ease;
}
@media screen and (max-width: 767px) {
  :root {
    --paddingInlineSize: 28px;
  }
}
@media screen and (max-width: 949px) {
  :root {
    --header-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 50px;
  }
}

/*====================================================
BASE
====================================================*/
/* 既存スタイルの打ち消し
----------------------------------------------- */
aside.aside {
  display: none;
}

header.header {
  display: none;
}

footer.footer {
  display: none;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-padding-top: var(--header-height);
}

img,
picture,
svg,
iframe,
video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

body {
  overflow-wrap: break-word;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body[data-is-hidden=true] {
  overflow: clip;
}

.scroll-hint-icon {
  width: 208px;
  left: 50%;
  translate: -50% 0;
  padding-top: 40px;
  padding-bottom: 30px;
}
.scroll-hint-icon::before {
  top: 30px;
}
.scroll-hint-icon::after {
  top: 20px;
}

.scroll-hint-text {
  font-size: 16px;
}

/*====================================================
レイアウト / コンポーネント
====================================================*/
.l-ds-container {
  width: min(100%, var(--contentWidth) + 2 * var(--paddingInlineSize));
  padding-inline: var(--paddingInlineSize);
  margin-inline: auto;
}

.l-ds-sec-wrap {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-ds-sec-wrap {
    padding-top: 60px;
    padding-bottom: 75px;
  }
}

section[data-bg-color=white] {
  background-color: #fff;
}
section[data-bg-color=primary] {
  background-color: #2e8b6e;
}
section[data-bg-color=yellow] {
  background-color: #fffbdf;
}

.c-ds-heading {
  --enTxtColor: var(--color-black);
  --jaTxtColor: var(--color-primary);
  --lineColor: var(--color-primary);
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: clamp(40px, 3.3068783069vw, 50px);
}
.c-ds-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 50px;
  height: 2px;
  background-color: var(--lineColor);
}
.c-ds-heading[data-color=white] {
  --enTxtColor: var(--color-white);
  --jaTxtColor: var(--color-white);
  --lineColor: var(--color-white);
}

.c-ds-heading__en {
  opacity: 0.1;
  font-family: Roboto, serif;
  font-weight: 900;
  color: var(--enTxtColor);
  line-height: 1;
  letter-spacing: 1.5px;
  font-size: clamp(40px, 3.3068783069vw, 50px);
}

.c-ds-heading__ja {
  font-weight: 900;
  line-height: 1.25;
  color: var(--jaTxtColor);
  font-size: clamp(24px, 2.1164021164vw, 32px);
  margin-top: -0.7em;
}

.c-ds-heading__accent {
  color: var(--color-accent);
  font-size: clamp(38px, 3.9682539683vw, 60px);
  margin-inline: 0.1em;
}

.c-ds-body {
  font-weight: 500;
  font-size: clamp(14px, 1.1904761905vw, 18px);
}
.c-ds-body[data-align=center] {
  text-align: center;
}
.c-ds-body[data-align=right] {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-ds-body[data-sp-align=center] {
    text-align: center;
  }
  .c-ds-body[data-sp-align=left] {
    text-align: left;
  }
  .c-ds-body[data-sp-align=right] {
    text-align: right;
  }
}

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

.c-ds-black {
  color: var(--color-black);
}

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

.c-gs-fwb {
  font-weight: bold;
}

.p-ds {
  position: relative;
  color: var(--color-black);
  background-color: var(--color-bg);
  margin-top: var(--header-height);
  line-height: 1.4;
}

/*====================================================
ヘッダー
====================================================*/
.p-ds-header {
  --logoWidth: clamp(180px, 240 / 1512 * 100vw, 240px);
  z-index: var(--z-sp-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: translate;
}
.p-ds-header[data-is-scroll=true] {
  translate: 0 -101%;
}
@media screen and (max-width: 949px) {
  .p-ds-header {
    --logoWidth: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-ds-header {
    --logoWidth: 150px;
  }
}

.p-ds-header__inner {
  height: 100%;
  display: grid;
  grid-template: "logo . nav cta" auto/var(--logoWidth) 1fr auto auto;
  align-items: center;
  padding-inline: clamp(20px, 3.3068783069vw, 50px);
}
@media screen and (max-width: 1200px) {
  .p-ds-header__inner {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 949px) {
  .p-ds-header__inner {
    grid-template: "logo . menu" auto/var(--logoWidth) 1fr auto;
  }
}
@media screen and (max-width: 767px) {
  .p-ds-header__inner {
    padding-left: 10px;
    padding-right: 18px;
  }
}

.p-ds-header__logo {
  grid-area: logo;
}

.p-ds-header__logo--link {
  display: block;
}

.p-ds-header__nav {
  grid-area: nav;
}
@media screen and (max-width: 949px) {
  .p-ds-header__nav {
    display: none;
  }
}

.p-ds-header__nav--list {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(10px, 1.7195767196vw, 26px);
       column-gap: clamp(10px, 1.7195767196vw, 26px);
}
@media screen and (max-width: 1200px) {
  .p-ds-header__nav--list {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.p-ds-header__nav-link {
  color: #5b615d;
  font-weight: bold;
  font-size: clamp(13px, 0.9259259259vw, 14px);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: color;
}
.p-ds-header__nav-link:focus-visible {
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-ds-header__nav-link:hover {
    color: var(--color-primary);
  }
}

.p-ds-header__cta {
  --columnGap: clamp(10px, 26 / 1512 * 100vw, 26px);
  --lineWidth: 2px;
  grid-area: cta;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  -moz-column-gap: calc(2 * var(--columnGap) + var(--lineWidth));
       column-gap: calc(2 * var(--columnGap) + var(--lineWidth));
  margin-left: var(--columnGap);
}
@media screen and (max-width: 1200px) {
  .p-ds-header__cta {
    --columnGap: 10px;
  }
}
@media screen and (max-width: 949px) {
  .p-ds-header__cta {
    display: none;
  }
}

.p-ds-header__tel {
  position: relative;
  text-align: center;
  line-height: 1.2;
  color: var(--color-primary);
}
.p-ds-header__tel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-1 * (var(--columnGap) + var(--lineWidth)));
  translate: 0 -50%;
  width: var(--lineWidth);
  height: 30px;
  background-color: var(--color-primary);
}

.p-ds-header__tel--link {
  font-weight: 900;
  font-size: clamp(16px, 1.5873015873vw, 24px);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-header__tel--link:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-header__tel--link:hover {
    opacity: 0.8;
  }
}

.p-ds-header__tel--time {
  font-size: clamp(12px, 0.9259259259vw, 14px);
}

.p-ds-header__btn {
  width: 120px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  border-radius: 9px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-header__btn:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-header__btn:hover {
    opacity: 0.8;
  }
}

.p-ds-header__menu {
  grid-area: menu;
  display: none;
  position: relative;
  aspect-ratio: 17/14;
  width: 17px;
}
@media screen and (max-width: 949px) {
  .p-ds-header__menu {
    display: block;
  }
}

.p-ds-header__menu--line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 999px;
}
.p-ds-header__menu--line:nth-of-type(1) {
  top: 0;
}
.p-ds-header__menu--line:nth-of-type(2) {
  top: 50%;
  translate: 0 -50%;
}
.p-ds-header__menu--line:nth-of-type(3) {
  bottom: 0;
}

/*====================================================
SPメニュー
====================================================*/
.p-ds-sp-menu {
  z-index: var(--z-sp-menu);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: grid;
  align-content: center;
  grid-template: "." 1fr "inner" auto "." 1.5fr/1fr;
  background-color: var(--color-white);
  padding-top: var(--header-height);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-sp-menu[data-is-open=false] {
  pointer-events: none;
  opacity: 0;
}
.p-ds-sp-menu[data-is-open=true] {
  opacity: 1;
}

.p-ds-sp-menu__close {
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  right: 0;
  width: var(--header-height);
  height: var(--header-height);
  background-color: var(--color-primary);
}

.p-ds-sp-menu__close--icon {
  display: block;
  aspect-ratio: 1;
  width: 10px;
  height: 10px;
}

.p-ds-sp-menu__inner {
  grid-area: inner;
  overflow-y: auto;
  height: 100%;
  padding-inline: 40px;
}

.p-ds-sp-menu__nav--list > * + * {
  margin-top: 35px;
}

.p-ds-sp-menu__nav-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #5b615d;
  font-weight: bold;
  font-size: 16px;
  margin-inline: auto;
}

.p-ds-sp-menu__cta {
  width: min(100%, 500px);
  margin-inline: auto;
  margin-top: 35px;
}
.p-ds-sp-menu__cta > * + * {
  margin-top: 18px;
}

.p-ds-sp-menu__btn {
  --iconSize: 13px;
  display: grid;
  min-height: 60px;
  grid-template-columns: var(--iconSize) 1fr var(--iconSize);
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  background-color: var(--color-primary);
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: var(--color-white);
  border-radius: 9px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 6px 13px 7px;
}
.p-ds-sp-menu__btn::before, .p-ds-sp-menu__btn::after {
  content: "";
  aspect-ratio: 1;
}
.p-ds-sp-menu__btn::after {
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_arrow_right.svg);
          mask-image: url(../image/icon_arrow_right.svg);
  background-color: var(--color-white);
}

.p-ds-sp-menu__tel {
  --iconSize: 16px;
  display: grid;
  grid-template-columns: var(--iconSize) 1fr var(--iconSize);
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  min-height: 60px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: var(--color-primary);
  border-radius: 9px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding-inline: 13px;
}
.p-ds-sp-menu__tel::before, .p-ds-sp-menu__tel::after {
  content: "";
  aspect-ratio: 1;
}
.p-ds-sp-menu__tel::after {
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_arrow_right.svg);
          mask-image: url(../image/icon_arrow_right.svg);
  background-color: var(--color-primary);
}

.p-ds-sp-menu__tel--inner {
  display: grid;
  align-items: center;
  text-align: center;
}

.p-ds-sp-menu__tel--text {
  width: 100%;
  font-weight: 900;
  font-size: clamp(10px, 3.5623409669vw, 14px);
}

.p-ds-sp-menu__tel--num {
  line-height: 1.2;
  font-weight: 900;
  font-size: clamp(10px, 5.0890585242vw, 20px);
}

.p-ds-sp-menu__tel--time {
  font-weight: 500;
  font-size: clamp(10px, 3.0534351145vw, 12px);
}

/*====================================================
フッター
====================================================*/
.p-ds-footer {
  background-color: #574e3f;
  color: var(--color-white);
  padding-block: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-ds-footer {
    padding-block: 17px;
  }
}

.p-ds-footer__list {
  --columnGap: 1em;
  display: flex;
  justify-content: center;
}

.p-ds-footer__item {
  font-size: 12px;
}

.p-ds-footer__link {
  text-decoration: underline;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-footer__link:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-footer__link:hover {
    opacity: 0.8;
  }
}

.p-ds-footer__copy {
  text-align: center;
  font-size: 12px;
  margin-top: 4px;
}

/*====================================================
MV
====================================================*/
.p-ds-mv {
  --minHeight: 550px;
  position: relative;
  min-height: var(--minHeight);
}

.p-ds-mv__bg {
  z-index: 1;
  position: absolute;
  inset: 0;
}
.p-ds-mv__bg img {
  height: 100%;
}

.p-ds-mv__inner {
  min-height: var(--minHeight);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template: ". ." 1fr "box point" auto ". point" 20px "cta point" auto ". ." 2fr/max-content 1fr;
  align-content: center;
  -moz-column-gap: clamp(20px, 3.9682539683vw, 60px);
       column-gap: clamp(20px, 3.9682539683vw, 60px);
  width: min(100%, 1200px + 2 * var(--paddingInlineSize));
  padding-inline: var(--paddingInlineSize);
  margin-inline: auto;
  padding-top: 32px;
  padding-bottom: 30px;
}
@media screen and (max-width: 949px) {
  .p-ds-mv__inner {
    grid-template: "." 1fr "box" auto "point" auto "cta" auto "." 1fr/1fr;
    row-gap: 20px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-ds-mv__inner {
    padding-top: 32px;
    padding-bottom: 40px;
  }
}

.p-ds-mv__box {
  grid-area: box;
}

.p-ds-mv__txt1 {
  --lineWidth: 30px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  display: grid;
  -moz-column-gap: 11px;
       column-gap: 11px;
  grid-template-columns: var(--lineWidth) auto var(--lineWidth);
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  font-size: clamp(12px, 1.3227513228vw, 20px);
}
.p-ds-mv__txt1::before, .p-ds-mv__txt1::after {
  content: "";
  width: var(--lineWidth);
  height: 2px;
  background-color: var(--color-accent);
}
@media screen and (max-width: 949px) {
  .p-ds-mv__txt1 {
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt1 {
    --lineWidth: clamp(10px, 30 / 393 * 100vw, 30px);
    font-size: clamp(10px, 3.0534351145vw, 12px);
  }
}

.p-ds-mv__txt2 {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 1.3;
  font-weight: 900;
  font-size: clamp(32px, 3.1084656085vw, 47px);
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt2 {
    font-size: clamp(20px, 8.1424936387vw, 47px);
    margin-top: 7px;
  }
}

.p-ds-mv__txt2--1 {
  color: var(--color-accent);
}

.p-ds-mv__txt3 {
  position: relative;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  font-weight: 900;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  font-size: clamp(24px, 2.6455026455vw, 40px);
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt3 {
    font-size: clamp(10px, 6.106870229vw, 40px);
  }
}

.p-ds-mv__txt3--1 {
  background-image: radial-gradient(circle at center, currentColor 20%, transparent 24%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.5em;
  font-size: clamp(32px, 3.1084656085vw, 47px);
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt3--1 {
    font-size: clamp(10px, 8.1424936387vw, 47px);
  }
}

.p-ds-mv__txt3--2 {
  position: relative;
  top: 5px;
  color: var(--color-primary);
  font-size: clamp(80px, 8.9285714286vw, 135px);
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt3--2 {
    font-size: clamp(10px, 20.3562340967vw, 135px);
  }
}

.p-ds-mv__txt3--3 {
  color: var(--color-primary);
  font-size: clamp(50px, 5.6878306878vw, 86px);
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt3--3 {
    font-size: clamp(10px, 12.7226463104vw, 86px);
  }
}

.p-ds-mv__txt4 {
  position: relative;
  width: max(370px, 100% - 48px);
  max-width: 470px;
  min-height: 40px;
  display: grid;
  place-items: center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 999px;
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  font-weight: bold;
  font-size: clamp(15px, 1.1904761905vw, 18px);
  margin-top: 10px;
  margin-inline: auto;
}
@media screen and (max-width: 949px) {
  .p-ds-mv__txt4 {
    width: min(400px, 100% - 48px);
  }
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt4 {
    width: calc(100% - 32px);
  }
}

.p-ds-mv__txt4--img {
  z-index: 1;
  position: absolute;
  width: 50px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt4--img {
    left: -20px;
    top: 40%;
  }
}

.p-ds-mv__txt5 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  font-size: clamp(10px, 0.8597883598vw, 13px);
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  margin-top: 20px;
}

.p-ds-mv__txt5--1 {
  font-weight: 500;
  font-size: clamp(16px, 1.1904761905vw, 18px);
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt5--1 {
    font-size: clamp(10px, 4.0712468193vw, 18px);
  }
}

.p-ds-mv__txt5--2 {
  font-weight: 900;
  color: var(--color-primary);
  font-size: clamp(28px, 2.5694444444vw, 37px);
  line-height: 0.8;
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt5--2 {
    font-size: clamp(10px, 7.1246819338vw, 37px);
  }
}

.p-ds-mv__txt5--3 {
  font-size: clamp(35px, 2.9861111111vw, 43px);
}
@media screen and (max-width: 767px) {
  .p-ds-mv__txt5--3 {
    font-size: clamp(10px, 8.9058524173vw, 43px);
  }
}

.p-ds-mv__txt6 {
  text-align: center;
  font-size: clamp(10px, 0.7936507937vw, 12px);
  margin-top: 10px;
}

.p-ds-mv__point {
  grid-area: point;
  align-self: end;
  position: relative;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .p-ds-mv__point {
    top: 0;
  }
}

.p-ds-mv__point--img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 949px) {
  .p-ds-mv__point--img {
    width: min(500px, 100%);
  }
}

.p-ds-mv__cta {
  grid-area: cta;
  width: min(100%, 500px);
  margin-inline: auto;
}
.p-ds-mv__cta > * + * {
  margin-top: 18px;
}

.p-ds-mv__form {
  --shadowSize: 5px;
  --iconSize: 16px;
  position: relative;
  display: grid;
  min-height: 60px;
  grid-template-columns: var(--iconSize) 1fr var(--iconSize);
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  background-color: var(--color-primary);
  text-align: center;
  font-weight: bold;
  font-size: clamp(18px, 1.455026455vw, 22px);
  color: var(--color-white);
  border-radius: 11px;
  box-shadow: 0 var(--shadowSize) 0 0 #154f3d;
  padding: 6px 13px 7px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: box-shadow, transform;
}
.p-ds-mv__form:focus-visible {
  --shadowSize: 0px;
  transform: translateY(5px);
}
@media (any-hover: hover) {
  .p-ds-mv__form:hover {
    --shadowSize: 0px;
    transform: translateY(5px);
  }
}
.p-ds-mv__form::before, .p-ds-mv__form::after {
  content: "";
  aspect-ratio: 1;
}
.p-ds-mv__form::after {
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_arrow_right.svg);
          mask-image: url(../image/icon_arrow_right.svg);
  background-color: var(--color-white);
}

.p-ds-mv__tel {
  --shadowSize: 5px;
  container-type: inline-size;
  --iconSize: 16px;
  display: grid;
  grid-template-columns: var(--iconSize) 1fr var(--iconSize);
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  min-height: 60px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: var(--color-primary);
  border-radius: 9px;
  box-shadow: 0 var(--shadowSize) 0 0 #dcdfcc;
  padding-inline: 13px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: box-shadow, transform;
}
.p-ds-mv__tel:focus-visible {
  --shadowSize: 0px;
  transform: translateY(5px);
}
@media (any-hover: hover) {
  .p-ds-mv__tel:hover {
    --shadowSize: 0px;
    transform: translateY(5px);
  }
}
.p-ds-mv__tel::before, .p-ds-mv__tel::after {
  content: "";
  aspect-ratio: 1;
}
.p-ds-mv__tel::after {
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_arrow_right.svg);
          mask-image: url(../image/icon_arrow_right.svg);
  background-color: var(--color-primary);
}

.p-ds-mv__tel--inner {
  display: grid;
  -moz-column-gap: 8px;
       column-gap: 8px;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: center;
}
@container (width <=400px) {
  .p-ds-mv__tel--inner {
    grid-template-columns: 1fr;
  }
}

.p-ds-mv__tel--text {
  width: 100%;
  font-weight: 900;
  font-size: clamp(14px, 1.3227513228vw, 20px);
}

.p-ds-mv__tel--num {
  display: grid;
  line-height: 1.2;
  font-weight: 900;
  font-size: clamp(20px, 1.8518518519vw, 28px);
}
@container (width <=400px) {
  .p-ds-mv__tel--num {
    display: block;
  }
}

.p-ds-mv__tel--time {
  font-weight: 500;
  font-size: 12px;
}

/*====================================================
CTA
====================================================*/
.p-ds-cta {
  overflow: clip;
  position: relative;
  padding-top: 60px;
  padding-bottom: 70px;
}

.p-ds-cta__bg {
  z-index: 1;
  position: absolute;
  width: 170px;
}
.p-ds-cta__bg.p-ds-cta__bg1 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__bg.p-ds-cta__bg1 {
    top: -20px;
    left: -110px;
  }
}
.p-ds-cta__bg.p-ds-cta__bg2 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__bg.p-ds-cta__bg2 {
    bottom: -13px;
    right: -110px;
  }
}

.p-ds-cta__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  margin-inline: auto;
}

.p-ds-cta__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
  color: var(--color-white);
  font-size: clamp(24px, 2.380952381vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  padding-bottom: 18px;
  margin-inline: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__ttl {
    line-height: 1.5;
  }
}
.p-ds-cta__ttl::before {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 10px;
  width: 24px;
  height: 27px;
  display: block;
  background: url("../image/cta_ttl_img.webp") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__ttl::before {
    display: none;
  }
}
.p-ds-cta__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  background-color: var(--color-white);
  width: 50px;
  height: 2px;
}

.p-ds-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 24px;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__wrap {
    grid-template-columns: 1fr;
  }
}

.p-ds-cta__mail {
  --iconSize: 30px;
  --iconUr: url("../image/icon_mail.svg");
  --arrowSize: 16px;
  --arrowUr: url("../image/icon_arrow_right.svg");
  --color: var(--color-primary);
  display: grid;
  grid-template-columns: var(--iconSize) 1fr var(--arrowSize);
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
  min-height: 70px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  color: var(--color);
  background-color: var(--color-white);
  font-weight: 900;
  text-align: center;
  line-height: 1;
  font-size: 20px;
  padding-inline: 20px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__mail {
    --iconSize: 25px;
    min-height: 65px;
  }
}
.p-ds-cta__mail::before, .p-ds-cta__mail::after {
  content: "";
  aspect-ratio: 1;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color);
}
.p-ds-cta__mail::before {
  -webkit-mask-image: var(--iconUr);
          mask-image: var(--iconUr);
}
.p-ds-cta__mail::after {
  -webkit-mask-image: var(--arrowUr);
          mask-image: var(--arrowUr);
}
.p-ds-cta__mail:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-cta__mail:hover {
    opacity: 0.8;
  }
}

.p-ds-cta__form {
  --iconSize: 38px;
  --iconUr: url("../image/icon_memo.svg");
  --arrowSize: 16px;
  --arrowUr: url("../image/icon_arrow_right.svg");
  --color: var(--color-white);
  display: grid;
  grid-template-columns: var(--iconSize) 1fr var(--arrowSize);
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
  min-height: 70px;
  line-height: 1.1;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  color: var(--color);
  background-color: var(--color-accent);
  border: 1px solid var(--color);
  font-weight: 900;
  text-align: center;
  font-size: 20px;
  padding-inline: 20px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__form {
    --iconSize: 32px;
    min-height: 65px;
  }
}
.p-ds-cta__form::before, .p-ds-cta__form::after {
  content: "";
  aspect-ratio: 1;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color);
}
.p-ds-cta__form::before {
  -webkit-mask-image: var(--iconUr);
          mask-image: var(--iconUr);
}
.p-ds-cta__form::after {
  -webkit-mask-image: var(--arrowUr);
          mask-image: var(--arrowUr);
}
.p-ds-cta__form:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-cta__form:hover {
    opacity: 0.8;
  }
}
.p-ds-cta__form .p-ds-cta__form--txt {
  position: relative;
  bottom: 5px;
}
.p-ds-cta__form .p-ds-cta__form--sm {
  font-size: 12px;
}

.p-ds-cta__tel {
  --color: var(--color-primary);
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #c1d8b4;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--color);
  border-radius: 11px;
  min-height: 70px;
  padding-top: 9px;
  padding-left: 90px;
  padding-right: 110px;
  padding-bottom: 11px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-cta__tel:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-cta__tel:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-ds-cta__tel {
    display: grid;
    grid-column: span 1;
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding-top: 13px;
    padding-bottom: 14px;
    padding-inline: 20px;
  }
}

.p-ds-cta__tel--txt {
  position: relative;
  font-weight: 900;
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-primary);
  padding-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .p-ds-cta__tel--txt {
    margin-inline: auto;
  }
}
.p-ds-cta__tel--txt::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
}

.p-ds-cta__tel--box {
  --iconSize: 32px;
  display: grid;
  align-items: start;
  justify-content: center;
  grid-template-columns: var(--iconSize) auto;
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.p-ds-cta__tel--img {
  position: relative;
  top: -3px;
  aspect-ratio: 1;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_tel.svg);
          mask-image: url(../image/icon_tel.svg);
  background-color: var(--color);
}

.p-ds-cta__tel--num {
  display: grid;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.p-ds-cta__tel--date {
  font-size: 14px;
  font-weight: normal;
}

/*====================================================
p-ds-regu
====================================================*/
.p-ds-regu {
  container-type: inline-size;
}

.p-ds-regu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}
@container (width <=700px) {
  .p-ds-regu__list {
    grid-template-columns: 1fr;
  }
}

.p-ds-regu__item {
  --iconSize: 20px;
  display: grid;
  grid-template-columns: var(--iconSize) auto;
  place-content: center;
  align-items: center;
  border-radius: 999px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background-color: var(--color-accent);
  min-height: 103px;
  color: var(--color-white);
  font-size: clamp(14px, 1.3227513228vw, 20px);
}
@container (width <=700px) {
  .p-ds-regu__item {
    min-height: 71px;
  }
}
.p-ds-regu__item::before {
  content: "";
  aspect-ratio: 1;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_check.svg);
          mask-image: url(../image/icon_check.svg);
  background-color: var(--color-white);
}

.p-ds-regu__item--txt {
  min-width: 200px;
  font-weight: bold;
}
@container (width <=1000px) {
  .p-ds-regu__item--txt {
    min-width: 140px;
  }
}

.p-ds-regu__body {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-ds-regu__body {
    margin-top: 30px;
  }
}

.p-ds-regu__mark {
  font-weight: 900;
  color: var(--color-primary);
  background: linear-gradient(transparent 60%, var(--color-bg) 30%);
}

/*====================================================
p-ds-problem
====================================================*/
.p-ds-problem {
  overflow: clip;
  position: relative;
  container-type: inline-size;
}
.p-ds-problem::before {
  --lineColor: #f6f9f2;
  --lineSize: 1px;
  --spaceSize: 20px;
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(to right, var(--lineColor) var(--lineSize), transparent var(--lineSize)), linear-gradient(to bottom, var(--lineColor) var(--lineSize), transparent var(--lineSize));
  background-size: var(--spaceSize) var(--spaceSize);
  background-repeat: repeat;
}

.p-ds-problem__bg1,
.p-ds-problem__bg2 {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 132px;
}
@media screen and (max-width: 767px) {
  .p-ds-problem__bg1,
.p-ds-problem__bg2 {
    width: 140px;
  }
}
.p-ds-problem__bg1 img,
.p-ds-problem__bg2 img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-ds-problem__bg1 {
  left: 0;
}

.p-ds-problem__bg2 {
  right: 0;
}

.p-ds-problem__inner {
  container-type: inline-size;
  position: relative;
  z-index: 2;
}

.p-ds-problem__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@container (width <=1000px) {
  .p-ds-problem__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-ds-problem__list > * {
    grid-column: span 2;
  }
  .p-ds-problem__list > *:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}
@container (width <=600px) {
  .p-ds-problem__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-ds-problem__list > * {
    grid-column: auto;
  }
  .p-ds-problem__list > *:nth-of-type(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

.p-ds-problem__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--color-white);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-ds-problem__item {
    border-radius: 20px;
  }
}

.p-ds-problem__item--img img {
  height: 100%;
}

.p-ds-problem__item--box {
  text-align: center;
  align-self: center;
  font-weight: 500;
  background-color: var(--color-white);
  padding: 20px clamp(20px, 1.9841269841vw, 30px);
}

/*====================================================
p-ds-service
====================================================*/
.p-ds-service {
  overflow: clip;
  position: relative;
}

.p-ds-service__inner {
  container-type: inline-size;
}

.p-ds-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  margin-top: 33px;
}
@container (width <=800px) {
  .p-ds-service__list {
    grid-template-columns: 1fr;
  }
}

.p-ds-service__item {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 2;
  position: relative;
  background-color: var(--color-white);
  border-radius: 8px;
}

.p-ds-service__item1 {
  --borderColor: #bcddb2;
  --headColor: var(--color-primary);
}

.p-ds-service__item2 {
  --borderColor: #c8c8c8;
  --headColor: #838383;
}

.p-ds-service__item--img {
  position: absolute;
  aspect-ratio: 1;
  width: clamp(120px, 10.1851851852vw, 154px);
}

.p-ds-service__item--img1 {
  right: -15px;
  bottom: -44px;
}
@container (width <=800px) {
  .p-ds-service__item--img1 {
    bottom: -16px;
  }
}

.p-ds-service__item--img2 {
  right: 0px;
  bottom: -44px;
}
@container (width <=800px) {
  .p-ds-service__item--img2 {
    right: -30px;
    bottom: -16px;
  }
}

.p-ds-service__item--ttl {
  border-radius: 8px 8px 0 0;
  background-color: var(--headColor);
  color: var(--color-white);
  text-align: center;
  font-weight: bold;
  font-size: clamp(16px, 1.1904761905vw, 18px);
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .p-ds-service__item--ttl {
    padding: 8px;
  }
}

.p-ds-service__item--box {
  border: 3px solid var(--borderColor);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding-block: 24px;
  padding-left: clamp(20px, 2.1825396825vw, 33px);
}
.p-ds-service__item--box:is(.p-ds-service__item1 *) {
  padding-right: 30px;
}
.p-ds-service__item--box:is(.p-ds-service__item2 *) {
  padding-right: 80px;
}

.p-ds-service__points[data-bool=true] {
  --iconUrl: url("../image/icon_good.svg");
}
.p-ds-service__points[data-bool=false] {
  --iconUrl: url("../image/icon_bad.svg");
}
.p-ds-service__points > * + * {
  margin-top: 9px;
}

.p-ds-service__points--item {
  --iconSize: 20px;
  display: grid;
  grid-template-columns: var(--iconSize) 1fr;
  -moz-column-gap: 11px;
       column-gap: 11px;
  font-weight: bold;
  font-size: clamp(14px, 1.1904761905vw, 18px);
}
.p-ds-service__points--item::before {
  content: "";
  aspect-ratio: 1;
  background: var(--iconUrl) no-repeat center center/contain;
}

.p-ds-service__points--br {
  display: none;
}
@container (width <=420px) {
  .p-ds-service__points--br {
    display: block;
  }
}

.p-ds-service__item--note {
  color: #838383;
  font-size: clamp(11px, 0.9259259259vw, 14px);
  margin-top: 9px;
}

/*====================================================
p-ds-why
====================================================*/
.p-ds-why {
  position: relative;
}
.p-ds-why::before {
  --lineColor: #f6f9f2;
  --lineSize: 1px;
  --spaceSize: 20px;
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(to right, var(--lineColor) var(--lineSize), transparent var(--lineSize)), linear-gradient(to bottom, var(--lineColor) var(--lineSize), transparent var(--lineSize));
  background-size: var(--spaceSize) var(--spaceSize);
  background-repeat: repeat;
}

.p-ds-why__bg1,
.p-ds-why__bg2 {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 132px;
}
@media screen and (max-width: 767px) {
  .p-ds-why__bg1,
.p-ds-why__bg2 {
    width: 140px;
  }
}
.p-ds-why__bg1 img,
.p-ds-why__bg2 img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-ds-why__bg1 {
  left: 0;
}

.p-ds-why__bg2 {
  right: 0;
}

.p-ds-why__inner {
  position: relative;
  z-index: 3;
  container-type: inline-size;
}

.p-ds-why .c-ds-heading::after {
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-ds-why .c-ds-heading::after {
    width: 40px;
  }
}

.p-ds-why .c-ds-heading__ja {
  line-height: 1;
}

.p-ds-why__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  counter-reset: number 0;
  gap: 20px;
}
@container (width <=1000px) {
  .p-ds-why__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-ds-why__list > * {
    grid-column: span 2;
  }
  .p-ds-why__list > *:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}
@container (width <=600px) {
  .p-ds-why__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-ds-why__list > * {
    grid-column: auto;
  }
  .p-ds-why__list > *:nth-of-type(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

.p-ds-why__item {
  --numberSize: 52px;
  position: relative;
  counter-increment: number 1;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 2;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: calc(var(--numberSize) / 2);
}
.p-ds-why__item::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  content: counter(number, decimal-leading-zero);
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: var(--numberSize);
  font-family: "Roboto Mono", monospace, serif;
  color: var(--color-white);
  border-radius: 11px;
  background-color: #2e8b6e;
  font-size: 30px;
  line-height: 1;
}

.p-ds-why__item--leaf {
  position: absolute;
}
.p-ds-why__item--leaf.p-ds-why__item--leaf1 {
  width: 40px;
  bottom: 100%;
  left: 37px;
  translate: 0 6px;
}
@media screen and (max-width: 767px) {
  .p-ds-why__item--leaf.p-ds-why__item--leaf1 {
    bottom: 45%;
    left: -10px;
  }
}
.p-ds-why__item--leaf.p-ds-why__item--leaf2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-ds-why__item--leaf.p-ds-why__item--leaf2 {
    display: block;
    width: 50px;
    top: -4px;
    right: 21px;
  }
}
.p-ds-why__item--leaf.p-ds-why__item--leaf3 {
  width: 51px;
  left: 0;
  top: -15px;
}
@media screen and (max-width: 767px) {
  .p-ds-why__item--leaf.p-ds-why__item--leaf3 {
    display: none;
  }
}
.p-ds-why__item--leaf.p-ds-why__item--leaf4 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-ds-why__item--leaf.p-ds-why__item--leaf4 {
    width: 30px;
    display: block;
    right: 32px;
    top: 10px;
  }
}
.p-ds-why__item--leaf.p-ds-why__item--leaf5 {
  width: 61px;
  right: 10px;
  bottom: 100%;
  translate: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-ds-why__item--leaf.p-ds-why__item--leaf5 {
    display: none;
  }
}

.p-ds-why__item--img {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  aspect-ratio: 346/180;
}
.p-ds-why__item--img img {
  height: 100%;
}

.p-ds-why__box {
  background-color: var(--color-white);
  border-radius: 0 0 15px 15px;
  padding: 20px clamp(20px, 1.9841269841vw, 30px) 24px;
}

.p-ds-why__ttl {
  position: relative;
  text-align: center;
  font-weight: 900;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.25;
  padding-bottom: 8px;
}
.p-ds-why__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.p-ds-why__body {
  font-size: clamp(14px, 1.0582010582vw, 16px);
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-ds-why__body {
    line-height: 1.7;
  }
}

/*====================================================
p-ds-sample
====================================================*/
.p-ds-sample {
  position: relative;
}

.p-ds-sample__inner {
  container-type: inline-size;
}

.p-ds-sample__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 30px 20px;
  margin-top: 30px;
}
@container (width <=1000px) {
  .p-ds-sample__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-ds-sample__list > * {
    grid-column: span 2;
  }
  .p-ds-sample__list > *:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}
@container (width <=600px) {
  .p-ds-sample__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-ds-sample__list > * {
    grid-column: auto;
  }
  .p-ds-sample__list > *:nth-of-type(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

.p-ds-sample__item--wrap {
  --iconSize: 30px;
  --iconScale: 1;
  position: relative;
  display: block;
  aspect-ratio: 346/220;
  border: 1px solid #bdb7b3;
}
.p-ds-sample__item--wrap:focus-visible {
  --iconScale: 1.2;
}
@media (any-hover: hover) {
  .p-ds-sample__item--wrap:hover {
    --iconScale: 1.3;
  }
}
.p-ds-sample__item--wrap::after {
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  right: 15px;
  z-index: 1;
  content: "";
  display: block;
  aspect-ratio: 1;
  scale: var(--iconScale);
  width: var(--iconSize);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../image/icon_zoom.svg);
          mask-image: url(../image/icon_zoom.svg);
  background-color: var(--color-primary);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: scale;
}

.p-ds-sample__item--img {
  width: 100%;
  height: 100%;
}
.p-ds-sample__item--img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-ds-sample__item--ttl {
  text-align: center;
  color: var(--color-primary);
  font-weight: 900;
  font-size: clamp(18px, 1.3227513228vw, 20px);
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-ds-sample__item--ttl {
    margin-top: 8px;
  }
}

/*====================================================
p-ds-price
====================================================*/
.p-ds-price__inner {
  container-type: inline-size;
}

.p-ds-price__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  margin-top: 30px;
}
@container (width <=1000px) {
  .p-ds-price__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-ds-price__list > * {
    grid-column: span 2;
  }
  .p-ds-price__list > *:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}
@container (width <=600px) {
  .p-ds-price__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-ds-price__list > * {
    grid-column: auto;
  }
  .p-ds-price__list > *:nth-of-type(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}

.p-ds-price__item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.p-ds-price__item[data-type="01"] {
  --ttlBgColor: #c2da69;
}
.p-ds-price__item[data-type="02"] {
  --ttlBgColor: #21b184;
}
.p-ds-price__item[data-type="03"] {
  --ttlBgColor: #336844;
}
@container (width <=600px) {
  .p-ds-price__item {
    margin-top: 0;
  }
  .p-ds-price__item[data-type="03"] {
    margin-top: 30px;
  }
}

.p-ds-price__item--leaf {
  z-index: 1;
  position: absolute;
}
.p-ds-price__item--leaf:is(.p-ds-price__item[data-type="01"] *) {
  bottom: 100%;
  left: 0;
  translate: 0 10px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .p-ds-price__item--leaf:is(.p-ds-price__item[data-type="01"] *) {
    translate: -15px 40px;
  }
}
.p-ds-price__item--leaf:is(.p-ds-price__item[data-type="03"] *) {
  bottom: 100%;
  right: 5px;
  translate: 0 18px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-ds-price__item--leaf:is(.p-ds-price__item[data-type="03"] *) {
    translate: 15px 70px;
  }
}

.p-ds-price__item--head {
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50% -6px;
  width: 100%;
  text-align: center;
  color: #ce5757;
  font-weight: 900;
  font-size: 18px;
}

.p-ds-price__ttl {
  background-color: var(--ttlBgColor);
  border-radius: 15px 15px 0 0;
  text-align: center;
  font-weight: bold;
  color: var(--color-white);
  font-size: 18px;
  padding-top: 6px;
  padding-bottom: 4px;
}

.p-ds-price__ttl--head {
  font-size: 17px;
}

.p-ds-price__ttl--txt {
  font-size: 24px;
  line-height: 1.2;
}
.p-ds-price__ttl--txt span {
  font-weight: normal;
}

.p-ds-price__item--box {
  display: grid;
  grid-template-rows: auto auto 1fr;
  border-radius: 0 0 15px 15px;
  background-color: var(--color-white);
  padding: 12px 22px 16px;
  text-align: center;
}

.p-ds-price__price {
  color: #ce5757;
  font-size: 17px;
  font-weight: bold;
}

.p-ds-price__price--b {
  font-size: 40px;
  font-family: "Roboto Mono", monospace, serif;
  letter-spacing: -0.05em;
}

.p-ds-price__price--dot {
  letter-spacing: -0.1em;
}

.p-ds-price__txt1 {
  color: #84929e;
  font-size: 12px;
}

.p-ds-price__txt2 {
  --lineColor: #fff;
  --lineSize: 1px;
  --spaceSize: 8px;
  background-image: linear-gradient(to right, var(--lineColor) var(--lineSize), transparent var(--lineSize)), linear-gradient(to bottom, var(--lineColor) var(--lineSize), transparent var(--lineSize));
  background-size: var(--spaceSize) var(--spaceSize);
  background-repeat: repeat;
  background-color: #f8f9ef;
  border-radius: 10px;
  display: grid;
  color: var(--color-primary);
  place-content: center;
  font-weight: bold;
  font-size: clamp(14px, 1.0582010582vw, 16px);
  padding: 10px;
  margin-top: 12px;
}

.p-ds-price__note {
  font-weight: normal;
  margin-top: 30px;
}

/*====================================================
p-ds-table
====================================================*/
.p-ds-table {
  position: relative;
}

.p-ds-table__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-ds-table__bg img {
  height: 100%;
}

.p-ds-table__inner {
  position: relative;
  z-index: 2;
}

.p-ds-table__wrap {
  margin-top: 38px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-ds-table__wrap {
    margin-top: 30px;
  }
}

.p-ds-table__img {
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  .p-ds-table__img {
    min-width: 600px;
  }
}

.p-ds-table .scroll-hint-text {
  white-space: pre-line;
}

/*====================================================
p-ds-flow
====================================================*/
.p-ds-flow__inner {
  container-type: inline-size;
}

.p-ds-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px 20px;
}
@container (width <=1000px) {
  .p-ds-flow__list {
    grid-template-columns: repeat(6, 1fr);
  }
  .p-ds-flow__list > * {
    grid-column: span 2;
  }
  .p-ds-flow__list > *:nth-of-type(4) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .p-ds-flow__list > *:nth-of-type(5) {
    grid-column-start: 4;
    grid-column-end: 6;
  }
}
@container (width <=700px) {
  .p-ds-flow__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-ds-flow__list > *:nth-of-type(4) {
    grid-column: span 2;
  }
  .p-ds-flow__list > *:nth-of-type(5) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}
@container (width <=500px) {
  .p-ds-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-ds-flow__list > *:nth-of-type(5) {
    grid-column: span 2;
  }
}

.p-ds-flow__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 10px 0;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--color-white);
  padding: 12px 15px 15px;
}
@container (width <=700px) {
  .p-ds-flow__item {
    grid-template: "num ttl" auto "num ." 7px "num icon" auto ". ." 10px "body body" 1fr/max-content 1fr;
    row-gap: 0;
    -moz-column-gap: 0.5em;
         column-gap: 0.5em;
  }
}

.p-ds-flow__item--num {
  position: relative;
  color: var(--color-primary);
  font-family: "Roboto Mono", monospace, serif;
  text-align: center;
  font-weight: bold;
  font-size: 48px;
}
.p-ds-flow__item--num::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  background-color: var(--color-primary);
  height: 2px;
  width: 76px;
}
@container (width <=700px) {
  .p-ds-flow__item--num {
    grid-area: num;
    align-self: center;
  }
}

.p-ds-flow__item--ttl {
  align-self: center;
  text-align: center;
  font-weight: 900;
  color: var(--color-primary);
  font-size: clamp(18px, 1.3227513228vw, 20px);
}
@container (width <=700px) {
  .p-ds-flow__item--ttl {
    grid-area: ttl;
  }
}

.p-ds-flow__item--icon {
  display: block;
  aspect-ratio: 1;
  width: 80px;
  margin-inline: auto;
}
@container (width <=700px) {
  .p-ds-flow__item--icon {
    grid-area: icon;
  }
}

.p-ds-flow__item--body {
  font-size: 16px;
}
@container (width <=700px) {
  .p-ds-flow__item--body {
    grid-area: body;
  }
}

.p-ds-flow__note {
  text-align: center;
  color: #9aa09c;
  font-size: clamp(14px, 1.1904761905vw, 18px);
  margin-top: 30px;
}

/*====================================================
p-ds-docu
====================================================*/
.p-ds-docu {
  position: relative;
}

.p-ds-docu__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-ds-docu__bg img {
  height: 100%;
}

.p-ds-docu__inner {
  position: relative;
  z-index: 2;
}

.p-ds-docu__list {
  margin-top: 32px;
}
.p-ds-docu__list > * + * {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-ds-docu__list {
    margin-top: 48px;
  }
}

.p-ds-docu__item {
  border: 1px solid #e2e6e3;
  background-color: var(--color-white);
  border-radius: 15px;
  padding: clamp(20px, 1.5873015873vw, 24px);
}

.p-ds-docu__item--ttl {
  color: var(--color-primary);
  font-weight: 900;
  font-size: clamp(16px, 1.3227513228vw, 20px);
  border-bottom: 1px solid #eef0ef;
  padding-bottom: 12px;
}

.p-ds-docu__box {
  margin-top: 20px;
}
.p-ds-docu__box > * + * {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-ds-docu__box {
    margin-top: 15px;
  }
}

.p-ds-docu__docs {
  display: grid;
  gap: 9px;
}
.p-ds-docu__docs[data-column="4"] {
  grid-template-columns: auto auto auto auto;
}
@media screen and (max-width: 949px) {
  .p-ds-docu__docs[data-column="4"] {
    grid-template-columns: auto auto auto;
  }
}
.p-ds-docu__docs[data-column="3"] {
  grid-template-columns: auto auto auto;
}
@media screen and (max-width: 949px) {
  .p-ds-docu__docs[data-column="3"] {
    grid-template-columns: auto auto;
  }
}
.p-ds-docu__docs[data-column="2"] {
  grid-template-columns: auto auto;
}
@media screen and (max-width: 767px) {
  .p-ds-docu__docs[data-column] {
    grid-template-columns: 1fr;
  }
}

.p-ds-docu__docs--item {
  --iconSize: 11px;
  display: grid;
  grid-template-columns: var(--iconSize) auto;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.p-ds-docu__docs--item::before {
  position: relative;
  top: 0.4em;
  content: "";
  aspect-ratio: 1;
  border: 1px solid #c9cecb;
  background-color: var(--color-white);
}

/*====================================================
p-ds-faq
====================================================*/
@media screen and (max-width: 767px) {
  .p-ds-faq__container {
    padding-inline: 20px;
  }
}

.p-ds-faq__list > * + * {
  margin-top: 15px;
}

.p-ds-faq__item {
  background-color: var(--color-white);
  border-radius: 15px;
  border: 20px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ds-faq__item {
    border-width: 10px;
  }
}

.p-ds-faq__q {
  --textColor: var(--color-primary);
  --iconText: "＋";
  --iconRotate: 0deg;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-radius: 5px;
  background-color: #c1d8b4;
  padding: 20px clamp(20px, 1.5873015873vw, 24px);
  color: var(--textColor);
  font-weight: 900;
  font-size: clamp(16px, 1.3227513228vw, 20px);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: color;
}
.p-ds-faq__q:focus-visible {
  --textColor: var(--color-white);
}
@media (any-hover: hover) {
  .p-ds-faq__q:hover {
    --textColor: var(--color-white);
  }
}
.p-ds-faq__q::before {
  content: "Q";
  color: var(--textColor);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: color;
  line-height: 1;
  font-weight: 900;
  font-size: clamp(24px, 1.9841269841vw, 30px);
  margin-right: clamp(20px, 2.6455026455vw, 40px);
}
.p-ds-faq__q::after {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  width: 1em;
  place-content: center;
  content: var(--iconText);
  rotate: var(--iconRotate);
  color: var(--textColor);
  line-height: 1;
  font-weight: 900;
  font-size: 15px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: color, rotate;
  margin-left: clamp(14px, 2.6455026455vw, 40px);
}
.p-ds-faq__q:is(.p-ds-faq__item[data-is-open=true] *) {
  --iconText: "ー";
  --iconRotate: 180deg;
}

.p-ds-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: grid-template-rows;
}
.p-ds-faq__a:is(.p-ds-faq__item[data-is-open=true] *) {
  grid-template-rows: 1fr;
}

.p-ds-faq__a--inner {
  overflow: hidden;
}

.p-ds-faq__a--box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: clamp(20px, 2.6455026455vw, 40px);
       column-gap: clamp(20px, 2.6455026455vw, 40px);
  border-radius: 0 0 5px 5px;
  background-color: #f9faf0;
  font-weight: 500;
  font-size: clamp(16px, 1.3227513228vw, 20px);
  padding: 20px clamp(20px, 1.5873015873vw, 24px);
  margin-inline: 10px;
}
.p-ds-faq__a--box::before {
  content: "A";
  color: var(--color-primary);
  transition: all var(--transition-second) var(--base-easing);
  transition-property: color;
  line-height: 1;
  font-weight: 900;
  font-size: clamp(24px, 1.9841269841vw, 30px);
}

/*====================================================
p-ds-company
====================================================*/
.p-ds-company__dl {
  --paddingTop: 0.75em;
  --paddingBottom: 0.5em;
  --columnGap: clamp(40px, 110 / 1512 * 100vw, 110px);
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  width: min(100%, 720px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ds-company__dl {
    grid-template-columns: 1fr;
  }
}

.p-ds-company__dt {
  font-weight: 500;
  font-size: clamp(14px, 1.0582010582vw, 16px);
  border-bottom: 1px solid #c1cfcb;
  padding-left: clamp(20px, 3.1746031746vw, 48px);
  padding-right: var(--columnGap);
  padding-bottom: var(--paddingBottom);
}
.p-ds-company__dt:not(:first-of-type) {
  padding-top: var(--paddingTop);
}
@media screen and (max-width: 767px) {
  .p-ds-company__dt {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-ds-company__dd {
  font-size: clamp(14px, 1.0582010582vw, 16px);
  border-bottom: 1px solid #c1cfcb;
  padding-bottom: var(--paddingBottom);
}
.p-ds-company__dd:not(:first-of-type) {
  padding-top: var(--paddingTop);
}
@media screen and (max-width: 767px) {
  .p-ds-company__dd {
    padding-top: var(--paddingTop);
  }
}
.p-ds-company__dd a {
  text-decoration: underline;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-company__dd a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-company__dd a:hover {
    opacity: 0.8;
  }
}

/*====================================================
p-ds-form
====================================================*/
.p-ds-form {
  overflow: clip;
  position: relative;
}

.p-ds-form__bg {
  --inlinePosition: 0px;
  z-index: 1;
  position: absolute;
  width: 177px;
}
@media screen and (max-width: 767px) {
  .p-ds-form__bg {
    --inlinePosition: -50px;
  }
}
.p-ds-form__bg.p-ds-form__bg1 {
  top: 0;
  left: var(--inlinePosition);
}
.p-ds-form__bg.p-ds-form__bg2 {
  top: 0;
  right: var(--inlinePosition);
}
.p-ds-form__bg.p-ds-form__bg3 {
  bottom: 0;
  left: var(--inlinePosition);
}
.p-ds-form__bg.p-ds-form__bg4 {
  bottom: 0;
  right: var(--inlinePosition);
}

.p-ds-form__inner {
  z-index: 2;
  position: relative;
}

.js-p-ds-form__head2 {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-ds-form__body {
    text-align: left;
  }
}

.p-ds-form__box {
  position: relative;
  width: min(100%, 720px);
  margin-top: 32px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ds-form__box {
    margin-top: 20px;
  }
}

.p-ds-form__img {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 100%;
  translate: 10px 13px;
  display: block;
  aspect-ratio: 1;
  width: 138px;
}
@media screen and (max-width: 767px) {
  .p-ds-form__img {
    display: none;
  }
}

.p-ds-form__form {
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 50px clamp(24px, 2.1164021164vw, 32px);
}
@media screen and (max-width: 767px) {
  .p-ds-form__form {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}
.p-ds-form__form .p-ds-form__row:not(:first-of-type) {
  margin-top: 20px;
}
.p-ds-form__form .p-ds-form__row--label {
  font-size: 16px;
  font-weight: bold;
}
.p-ds-form__form .p-ds-form__row--label[data-require]::after {
  content: "必須";
  line-height: 1;
  color: #ff0000;
  font-size: 12px;
  margin-left: 0.5em;
}
.p-ds-form__form .p-ds-form__row--wrap {
  margin-top: 6px;
}
.p-ds-form__form input[type=text],
.p-ds-form__form input[type=email],
.p-ds-form__form input[type=tel],
.p-ds-form__form textarea {
  background-color: #fafbfa;
  border: 1px solid #e2e6e3;
  border-radius: 9px;
  width: 100%;
  font-size: 16px;
  padding: 8px 15px;
}
@media screen and (max-width: 767px) {
  .p-ds-form__form input[type=text],
.p-ds-form__form input[type=email],
.p-ds-form__form input[type=tel],
.p-ds-form__form textarea {
    border-radius: 6px;
  }
}
.p-ds-form__form textarea {
  display: block flow;
  box-sizing: unset;
  inline-size: -webkit-fill-available;
  inline-size: -moz-available;
  inline-size: stretch;
  min-block-size: 5lh;
}
@supports (field-sizing: content) {
  .p-ds-form__form textarea {
    max-block-size: 20lh;
    resize: unset;
    field-sizing: content;
  }
}
.p-ds-form__form .p-ds-form__name {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-ds-form__form .p-ds-form__name {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.p-ds-form__form .p-ds-form__pp {
  display: flex;
  justify-content: center;
}
.p-ds-form__form .p-ds-form__pp > * {
  cursor: pointer;
}
.p-ds-form__form .p-ds-form__pp--link {
  text-decoration: underline;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: opacity;
}
.p-ds-form__form .p-ds-form__pp--link:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-ds-form__form .p-ds-form__pp--link:hover {
    opacity: 0.8;
  }
}

.p-ds-form__btns {
  margin-top: 32px;
}

.p-ds-form__btn {
  display: block;
  width: min(100%, 300px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  min-height: 60px;
  border-radius: 11px;
  background-color: #d98f4a;
  text-align: center;
  color: var(--color-white);
  font-weight: 900;
  font-size: 17px;
  transition: all var(--transition-second) var(--base-easing);
  transition-property: scale;
}
.p-ds-form__btn:focus-visible:not(:disabled) {
  scale: 1.05;
}
@media (any-hover: hover) {
  .p-ds-form__btn:hover:not(:disabled) {
    scale: 1.05;
  }
}
.p-ds-form__btn[type=button]:disabled, .p-ds-form__btn[type=submit]:disabled {
  background-color: #757575;
  cursor: not-allowed;
}
.p-ds-form__btn:not(:first-of-type) {
  margin-top: 20px;
}

.p-form-wrap.--confirm_area {
  display: none;
}

.p-form-wrap.--donfirm_area {
  display: none;
}

.p-ds-form__thanks {
  display: none;
  width: min(100%, 720px);
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 50px clamp(24px, 2.1164021164vw, 32px);
  margin-top: 32px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ds-form__thanks {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

.p-ds-form__thanks {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-ds-form__thanks {
    text-align: left;
    font-size: 14px;
  }
}

.wpcf7-list-item.first {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .wpcf7-form-control.wpcf7-radio {
    display: grid;
    row-gap: 12px;
  }
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item:not(.first) {
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:not(.first) {
    margin-left: 0;
  }
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */