@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2E2E2E;
}

@media screen and (max-width: 768px) {
  a,
  button {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#content.l-content {
  padding-top: 0;
  margin-bottom: 0;
}

.l-footer {
  padding-top: 4.5rem;
}
.l-footer .c-catchphrase.u-thin {
  font-size: clamp(11px, 0.6875rem, 0.6875rem);
}
.l-footer .c-headLogo {
  height: auto;
  margin-bottom: 0.75rem;
}

.l-footer__inner {
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-inline: 0;
  }
}

.l-footer__widgetArea {
  padding-block: 0;
}

.w-footer.l-container {
  padding-right: 0;
  padding-left: 0;
}

.l-footer .textwidget.custom-html-widget {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7.25rem;
     -moz-column-gap: 7.25rem;
          column-gap: 7.25rem;
}
@media screen and (max-width: 1024px) {
  .l-footer .textwidget.custom-html-widget {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .textwidget.custom-html-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.5rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.l-gaiheki__main {
  position: relative;
  z-index: -100;
}

.l-gaiheki__article {
  position: relative;
  z-index: -10;
}

/* =========================================================
   ヘッダーのグリッドレイアウト（PCのみ / SPはデザイン未定のため保留）
     1行目: [ ロゴ | CTA(.w-header) ]
     2行目: [ ナビ（2列ぶち抜き・中央） ]
   ・ロゴ/ナビ/CTA は .l-header__inner の子なので grid は __inner に付ける。
   ・SWELLのヘッダーレイアウト(.-parallel 等)に勝つよう #header で具体度を上げる。
   ========================================================= */
@media (min-width: 960px) {
  #header.l-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  #header .l-header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "logo cta" "nav  nav";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    max-width: 81.25rem;
    margin-inline: auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  #header .l-header__logo {
    grid-area: logo;
    justify-self: start;
  }
  #header .w-header.pc_ {
    grid-area: cta;
    justify-self: end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #header .l-header__gnav {
    grid-area: nav;
    justify-self: center;
    width: auto;
    margin: 0;
  }
  #header .l-header__gnav .c-gnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 960px) {
  #header.l-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
  }
}
#header .c-headLogo.-txt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 2.875rem;
}

#header .c-catchphrase.u-thin {
  font-weight: 400;
  font-size: clamp(11px, 0.6875rem, 0.6875rem);
  margin-top: 0;
}

#header .l-header__logo {
  padding-block: 0;
  height: auto;
}
#header .l-header__logo a {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#header .l-header__logo a:hover {
  opacity: 0.7;
}

#header .w-header.pc_ {
  margin-bottom: 0;
}

.c-gnav > .menu-item > a .ttl {
  display: block;
  font-size: 1.125rem;
  font-weight: bold;
}

@media (min-width: 960px) {
  #header .c-gnav > .menu-item.has-area-dropdown {
    position: relative;
  }
  #header .c-gnav > .menu-item.has-area-dropdown > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    min-width: 13.75rem;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, .12);
            box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 20;
  }
  #header .c-gnav > .menu-item.has-area-dropdown:hover > .sub-menu, #header .c-gnav > .menu-item.has-area-dropdown:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  #header .c-gnav > .menu-item.has-area-dropdown .sub-menu .menu-item {
    width: 100%;
  }
  #header .c-gnav > .menu-item.has-area-dropdown .sub-menu a {
    display: block;
    padding: 0.5625rem 1.25rem 0.5625rem 2.375rem;
    color: #2E2E2E;
    white-space: nowrap;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  #header .c-gnav > .menu-item.has-area-dropdown .sub-menu a::before {
    left: 1rem;
  }
  #header .c-gnav > .menu-item.has-area-dropdown .sub-menu a .ttl {
    font-size: 0.9375rem;
    font-weight: 700;
  }
  #header .c-gnav > .menu-item.has-area-dropdown .sub-menu a:hover {
    background-color: #F1F7F4;
    color: #1CCEC7;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1270px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.l-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .l-list {
    gap: 0.75rem;
  }
}

.l-list__item {
  width: calc(50% - 0.625rem);
  background-color: #F0FBF5;
  padding-block: 1.125rem;
  position: relative;
  padding-right: 1.5rem;
  padding-left: 5.5rem;
}
@media (max-width: 768px) {
  .l-list__item {
    width: 100%;
    padding-right: 0.5rem;
    padding-left: 3.25rem;
    padding-block: 0.75rem;
  }
}
.l-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  background: url(../images/icon/green-check.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .l-list__item::before {
    width: 1.5rem;
    height: 1.5rem;
    left: 0.75rem;
    top: 1rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 防水工事ページのお悩みリスト（Figma #86〜#89）
   緑チェックアイコンを実写真（丸トリミング）に差し替える。
   .l-list は5ページ共通のため、防水ページ専用の --photo で限定する。 */
.p-service-problem__list.--photo .l-list__item::before {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.p-service-problem__list.--photo .l-list__item:nth-child(1)::before {
  background-image: url(../images/bousui-worry1.webp);
}
.p-service-problem__list.--photo .l-list__item:nth-child(2)::before {
  background-image: url(../images/bousui-worry2.webp);
}
.p-service-problem__list.--photo .l-list__item:nth-child(3)::before {
  background-image: url(../images/bousui-worry3.webp);
}
.p-service-problem__list.--photo .l-list__item:nth-child(4)::before {
  background-image: url(../images/bousui-worry4.webp);
}

/* 内装リフォームページのお悩みリスト（Figma #125 ほか）
   緑チェックアイコンを実写真（丸トリミング）に差し替える。
   防水ページと同じ --photo 修飾で、画像だけページ別に指定する。 */
.p-service-problem__list.--photo-reform .l-list__item::before {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.p-service-problem__list.--photo-reform .l-list__item:nth-child(1)::before {
  background-image: url(../images/reform-worry1.webp);
}
.p-service-problem__list.--photo-reform .l-list__item:nth-child(2)::before {
  background-image: url(../images/reform-worry2.webp);
}
.p-service-problem__list.--photo-reform .l-list__item:nth-child(3)::before {
  background-image: url(../images/reform-worry3.webp);
}
.p-service-problem__list.--photo-reform .l-list__item:nth-child(4)::before {
  background-image: url(../images/reform-worry4.webp);
}

.l-list__header {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
}

.l-list__text {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  display: inline-block;
  margin-top: 0.5rem;
}

.l-list.--small {
  gap: 0.5rem;
}
.l-list.--small .l-list__item {
  padding-left: 3.375rem;
  padding-block: 0.75rem;
  padding-right: 0.75rem;
}
.l-list.--small .l-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  background: url(../images/icon/green-check.svg) no-repeat center center/contain;
}
.l-list.--small .l-list__item.--white {
  background-color: #fff;
}
.l-list.--small .l-list__item.--wide {
  width: 100%;
}

.l-page__main {
  position: relative;
  z-index: -100;
}

.l-page__article {
  position: relative;
  z-index: -10;
}

.l-section {
  padding-block: 6.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .l-section {
    padding-block: 3.75rem;
  }
}

.--bg-deco {
  padding-bottom: 14.25rem;
  padding-top: 6.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .--bg-deco {
    padding-bottom: 10rem;
    padding-top: 7.5rem;
  }
}
/* 背景装飾なのでクリックを受け取らせない。
   これが無いと ::after（高さ15rem）がセクション下部を覆い、
   最下段のボタン（TOPの「リフォームについて詳しく見る」等）が押せなくなる */
.--bg-deco::before,
.--bg-deco::after {
  pointer-events: none;
}

.--bg-deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 11.25rem;
  background: url(../images/bg-deco.webp) center bottom/cover no-repeat;
}
.--bg-deco::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 15rem;
  background: url(../images/bg-deco-bottom.webp) center top/cover no-repeat;
}

@media (max-width: 768px) {
  .--bg-deco.--pc-only::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .--bg-deco.--pc-only::after {
    display: none;
  }
}

.l-section.--bg-green {
  background-color: #F1F7F4;
}

.l-topTitleArea .l-topTitleArea__body {
  color: #2E2E2E;
  text-shadow: none;
}

.l-top__main {
  position: relative;
  z-index: -100;
}

.l-top__article {
  position: relative;
  z-index: -10;
}

.c-breadcrumb {
  padding-block: 0.875rem;
  background-color: #fff;
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    font-size: 0.75rem;
    padding-block: 0.625rem;
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-breadcrumb__item {
  color: #2E2E2E;
}
.c-breadcrumb__item a {
  color: #8C8C8C;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.c-breadcrumb__item a:hover {
  color: #1CCEC7;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "＞";
  color: #8C8C8C;
  font-size: 0.6875rem;
  margin-right: 0.5rem;
}

.c-button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FF7752;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 999px;
  width: 20.625rem;
  padding: 0.75rem;
  text-align: center;
  position: relative;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/icon/arrow-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-button:hover {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
  -webkit-box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .18);
          box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .18);
}

.c-card-layout.--gaina,
.c-card-layout.--why {
  background-color: #F1F7F4;
}

/* 見出しの段落ちを文節単位に（「なぜ必要な/の？」のような途中折れを防ぐ） */
.c-card-layout__title {
  word-break: auto-phrase;
  line-break: strict;
}

@media screen and (max-width: 768px) {
  .c-card-layout__lead {
    text-align: left;
  }
}

.c-card-layout__cards {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .c-card-layout__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.c-card-layout__card {
  padding-block: 1rem;
  padding-inline: 0.875rem;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.125rem 0.75rem rgba(46, 46, 46, .06);
          box-shadow: 0 0.125rem 0.75rem rgba(46, 46, 46, .06);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-card-layout__image img {
  display: block;
  width: 100%;
  aspect-ratio: 261/164;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .c-card-layout__image img {
    aspect-ratio: 16/10;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-card-layout__card-title {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1CCEC7;
}

.c-card-layout__card-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #555;
}

.c-card-layout__button {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-card-layout__button .c-button {
  width: auto;
  min-width: 20.625rem;
  padding-inline: 2rem 3rem;
}
@media (max-width: 768px) {
  .c-card-layout__button {
    margin-top: 2rem;
  }
}

.c-choose__body {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .c-choose__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.c-choose__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32.75rem;
}
@media screen and (max-width: 768px) {
  .c-choose__image {
    width: 100%;
  }
}
.c-choose__image img {
  display: block;
  width: 100%;
  height: 23.4375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .c-choose__image img {
    height: auto;
    aspect-ratio: 524/375;
  }
}

.c-choose__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-choose__text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #2E2E2E;
}
.c-choose__text p + p {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-choose__text p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .c-choose__text p + p {
    margin-top: 1rem;
  }
}

.c-contact__body {
  max-width: 43.75rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-contact__body {
    margin-top: 2rem;
  }
}

.c-contact__tel {
  display: block;
  max-width: 32.5rem;
  margin: 1.5rem auto 0;
  padding: 1.75rem 1.5rem;
  background-color: #F0FBF5;
  border-radius: 0.5rem;
  text-align: center;
  color: #2E2E2E;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c-contact__tel:hover {
  background-color: #E4F6EC;
}
.c-contact__tel > * {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-contact__tel {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }
}

.c-contact__tel-title {
  position: relative;
  isolation: isolate;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
}
.c-contact__tel-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.125rem;
  z-index: -1;
  width: 100%;
  height: 0.5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-contact__tel-title {
    font-size: 1rem;
  }
}

.c-contact__tel .c-cta-button.--tel {
  background-color: transparent;
  color: #2E2E2E;
  padding: 0;
  border-radius: 0;
}
.c-contact__tel .c-cta-button.--tel:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-contact__tel .c-cta-button.--tel .label {
  font-size: 1.5rem;
  color: #2E2E2E;
}
.c-contact__tel .c-cta-button.--tel .text {
  font-size: 2.25rem;
  color: #2E2E2E;
  padding-left: 3.25rem;
}
.c-contact__tel .c-cta-button.--tel .text::before {
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon/phone-blue.svg);
}
.c-contact__tel .c-cta-button.--tel .time {
  font-size: 1.25rem;
  color: #2E2E2E;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-contact__tel .c-cta-button.--tel .label {
    font-size: 1.125rem;
  }
  .c-contact__tel .c-cta-button.--tel .text {
    font-size: 1.75rem;
    padding-left: 2.25rem;
  }
  .c-contact__tel .c-cta-button.--tel .text::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .c-contact__tel .c-cta-button.--tel .time {
    font-size: 1rem;
  }
}

.c-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-contact__row + .c-contact__row {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-contact__row + .c-contact__row {
    margin-top: 1.5rem;
  }
}

.c-contact__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11.75rem;
  padding-top: 0.6875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .c-contact__label {
    width: 100%;
    padding-top: 0;
    margin-bottom: 0.5rem;
  }
}

.c-contact__req {
  margin-left: 0.375rem;
  font-size: 0.75rem;
  color: #911111;
  vertical-align: super;
}

.c-contact__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
}
.c-contact__field input,
.c-contact__field textarea,
.c-contact__field select {
  width: 100%;
  background-color: #F8F8F8;
  border: none;
  border-radius: 0.3125rem;
  padding: 0.6875rem 0.875rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #2E2E2E;
  font-family: inherit;
}
.c-contact__field input::-webkit-input-placeholder,
.c-contact__field textarea::-webkit-input-placeholder,
.c-contact__field select::-webkit-input-placeholder {
  color: #BABABA;
}
.c-contact__field input::-moz-placeholder,
.c-contact__field textarea::-moz-placeholder,
.c-contact__field select::-moz-placeholder {
  color: #BABABA;
}
.c-contact__field input::-ms-input-placeholder,
.c-contact__field textarea::-ms-input-placeholder,
.c-contact__field select::-ms-input-placeholder {
  color: #BABABA;
}
.c-contact__field input::placeholder,
.c-contact__field textarea::placeholder,
.c-contact__field select::placeholder {
  color: #BABABA;
}
.c-contact__field input:focus,
.c-contact__field textarea:focus,
.c-contact__field select:focus {
  outline: 0.125rem solid rgba(28, 206, 199, .5);
  outline-offset: 0;
}
.c-contact__field input,
.c-contact__field select {
  height: 2.875rem;
}
.c-contact__field select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
/* ▼はCSSで描く（arrow-down.svg は三角が円の中心からズレているため）。
   select 自身には疑似要素を置けないので、select を含む枠に重ねる。
   丸 1.25rem / 三角は 14:9 の比率（丸に対して 7/32 × 9/32）で中心を合わせる。
   ここはサイズがレスポンシブで変わらないため、セカンドビューのような
   カスタムプロパティは使わず直値で書く */
.c-contact__field:has(select) {
  position: relative;
}
.c-contact__field:has(select)::before,
.c-contact__field:has(select)::after {
  content: "";
  position: absolute;
  top: 50%;
  /* CF7 が select を包む span に position:relative を付けるため、
     これが無いと DOM 順で先にある ::before（白丸）だけが span の下に隠れる */
  z-index: 1;
  pointer-events: none;
}
.c-contact__field:has(select)::before {
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border-radius: 50%;
}
.c-contact__field:has(select)::after {
  right: 1.375rem;
  /* 下向き三角は重心が外接ボックスの中心より上にあり、そのままだと上寄りに見える。
     1px 下げて丸の中で光学的に中央へ置く */
  -webkit-transform: translate(50%, calc(-50% + 0.0625rem));
          transform: translate(50%, calc(-50% + 0.0625rem));
  width: 0;
  height: 0;
  border-left: 0.2734375rem solid transparent;
  border-right: 0.2734375rem solid transparent;
  border-top: 0.3515625rem solid #1CCEC7;
}
.c-contact__field textarea {
  height: 16.25rem;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .c-contact__field textarea {
    height: 12.5rem;
  }
}

.c-contact__foot {
  margin-top: 3rem;
  text-align: center;
}

.c-contact__privacy {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2E2E2E;
}
.c-contact__privacy a {
  color: #1CCEC7;
  text-decoration: underline;
}

.c-contact__submit {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-contact .wpcf7-submit {
  display: block;
  width: 20.625rem;
  max-width: 100%;
  /* 右は矢印のぶん広く取るが、左も同じ値にしないと文字がボタン中央からずれる */
  padding: 0.75rem 2.75rem;
  background-color: #FF7752;
  background-image: url(../images/icon/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-contact .wpcf7-submit:hover {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
  -webkit-box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .18);
          box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .18);
}

.c-contact .wpcf7-response-output {
  margin: 1.5rem auto 0;
  max-width: 32rem;
}

.c-contact .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
}

.c-cta-bottom__wrapper {
  padding-block: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  background-color: #F1F7F4;
}
@media screen and (max-width: 768px) {
  .c-cta-bottom__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding-block: 2rem;
  }
}

.c-cta-bottom__image {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .c-cta-bottom__image {
    width: 12.5rem;
  }
}

.c-cta-bottom__right {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-cta-bottom__text {
    font-size: 0.9375rem;
  }
}
.c-cta-bottom__text .orange {
  color: #FF7752;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta-bottom__text .orange {
    font-size: 1.25rem;
  }
}

.c-cta-bottom__button {
  margin-inline: auto;
  margin-top: 1rem;
}

.c-cta-button {
  display: inline-block;
  vertical-align: top;
  padding: 1rem 0.5rem;
  background-color: #1CCEC7;
  color: #fff;
  border-radius: 0.3125rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-cta-button:hover {
  -webkit-transform: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
  -webkit-box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .18);
          box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .18);
}
.c-cta-button .message {
  font-weight: 700;
  line-height: 1.5;
  font-size: 0.875rem;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #2E2E2E;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding-inline: 0.75rem;
}
.c-cta-button .message::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/icon/left-deco.svg) no-repeat center center/contain;
  height: 0.875rem;
  width: 0.5rem;
}
.c-cta-button .message::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/icon/right-deco.svg) no-repeat center center/contain;
  height: 0.875rem;
  width: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta-button .message.u-desktop {
    display: none;
  }
}
.c-cta-button .text {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta-button .text {
    font-size: 0.875rem;
  }
}
.c-cta-button .text::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-cta-button.--line {
  background-color: #06C755;
}
.c-cta-button.--line .text {
  padding-left: 2.625rem;
}
.c-cta-button.--line .text::before {
  width: 2.625rem;
  height: 2.625rem;
  background: url(../images/icon/line.svg) no-repeat center center/contain;
}

.c-cta-button.--mail .text {
  padding-left: 2.1875rem;
}
.c-cta-button.--mail .text::before {
  width: 1.6875rem;
  height: 1.6875rem;
  background: url(../images/icon/mail.svg) no-repeat center center/contain;
}

.c-cta-button.--tel {
  line-height: 1;
  padding-block: 0.5rem;
}
.c-cta-button.--tel .label {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  display: block;
  text-align: center;
}
.c-cta-button.--tel .text {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  padding-left: 1.75rem;
  display: inline-block;
}
.c-cta-button.--tel .text::before {
  width: 1.3125rem;
  height: 1.3125rem;
  background: url(../images/icon/phone.svg) no-repeat center center/contain;
}
.c-cta-button.--tel .time {
  display: block;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

.c-cta {
  padding-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding-top: 2.5rem;
  }
}

.c-cta.--mb {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .c-cta.--mb {
    margin-bottom: 2.5rem;
  }
}

.c-cta__wrapper {
  background: url(../images/cta-bg.webp) no-repeat center center/cover;
  padding-block: 3rem;
  padding-inline: 5.875rem;
}
@media screen and (max-width: 768px) {
  .c-cta__wrapper {
    padding-block: 1.5rem;
    padding-inline: 1rem;
  }
}

.c-cta__content {
  background-color: rgba(255, 255, 255, .72);
  padding-block: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta__content {
    padding: 1rem 1rem;
  }
}

.c-cta__lead {
  font-size: 2.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-cta__lead {
    font-size: 1.375rem;
    text-align: center;
    line-height: 1.5;
  }
}
.c-cta__lead .--orange {
  background-color: #FF7752;
  color: #fff;
  padding-inline: 0.5rem;
  margin-left: 0.5rem;
}
.c-cta__lead .--dot {
  position: relative;
}
.c-cta__lead .--dot::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #FFD94D;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-cta__lead .--dot::before {
    width: 0.375rem;
    height: 0.375rem;
    top: -0.2rem;
  }
}

.c-cta__lead-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-cta__lead-text {
    font-size: 0.875rem;
    margin-top: 1rem;
    font-weight: 500;
  }
}

.c-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    width: 100%;
  }
}

.c-cta__button {
  width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button {
    width: 100%;
    max-width: 20rem;
  }
}

.c-difference {
  background-color: #F1F7F4;
}

.c-difference__scroll {
  margin-top: 3rem;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .c-difference__scroll {
    margin-top: 2rem;
  }
}

.c-difference__table {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
  .c-difference__table {
    min-width: 53.75rem;
  }
}

.c-difference__row {
  display: contents;
}

.c-difference__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border-left: 1px solid #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-difference__cell {
    padding: 0.75rem 0.75rem;
  }
}

.c-difference__row:nth-child(even):not(.c-difference__row--head) .c-difference__cell {
  background-color: #E1F1F0;
}

.c-difference__row:nth-child(odd):not(.c-difference__row--head) .c-difference__cell {
  background-color: #D2EAE9;
}

.c-difference__col-head {
  min-height: 3.25rem;
  background-color: #6EABA9;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
}
.c-difference__col-head.--primary {
  background-color: #1CCEC7;
}

.c-difference__corner {
  background-color: transparent;
  border-left: none;
}

.c-difference__row-head {
  font-size: 1.0625rem;
  font-weight: 700;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .c-difference__row-head {
    font-size: 0.9375rem;
  }
}

.c-difference__data {
  min-height: 8.5rem;
}

.c-difference__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #2E2E2E;
}

.c-difference__mark {
  display: block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-difference__mark.--best {
  background-image: url(../images/icon/diff-double.svg);
}
.c-difference__mark.--good {
  background-image: url(../images/icon/diff-circle.svg);
}
.c-difference__mark.--fair {
  background-image: url(../images/icon/diff-triangle.svg);
}
.c-difference__mark.--bad {
  background-image: url(../images/icon/diff-cross.svg);
}

.c-difference__highlight {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20%;
  width: 20%;
  border: 0.1875rem solid #1CCEC7;
  pointer-events: none;
}

/* 表が横スクロールになるSPだけに出す案内（PCは u-mobile で非表示） */
.c-difference__scroll-note {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #777;
  text-align: right;
}

.c-difference__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2E2E2E;
}

.c-fixed-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-fixed-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
  }
}

.c-fixed-cta__button {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.c-fixed-cta__button::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-fixed-cta__button.--line {
  background-color: #06C755;
}
.c-fixed-cta__button.--line::before {
  width: 1.375rem;
  height: 1.375rem;
  background: url(../images/icon/line.svg) no-repeat center center/contain;
}

.c-fixed-cta__button.--mail {
  background-color: #1CCEC7;
}
.c-fixed-cta__button.--mail::before {
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/icon/mail-white.svg) no-repeat center center/contain;
}

@media screen and (max-width: 768px) {
  body {
    padding-bottom: 3rem;
  }
  /* SWELLの「トップへ戻る」ボタンが固定CTA（高さ48px）に重なるため、その上へ逃がす */
  .p-fixBtnWrap {
    bottom: 4rem;
  }
}
.c-point + .c-flow {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .c-point + .c-flow {
    margin-top: 3.75rem;
  }
}

.c-flow__lead {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-flow__lead {
    font-size: 0.875rem;
    text-align: left;
  }
}

.c-flow__steps {
  position: relative;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.8125rem;
  list-style: none;
  padding: 0;
}
.c-flow__steps::before {
  content: "";
  position: absolute;
  top: 2.5625rem;
  left: 8.3333333333%;
  right: 8.3333333333%;
  height: 0.1875rem;
  background-color: #1CCEC7;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-flow__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 25rem;
    margin-inline: auto;
  }
  .c-flow__steps::before {
    display: none;
  }
}

.c-flow__step {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-flow__step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    gap: 0.25rem 0.5rem;
  }
}

/* タイトル＋期間タグのまとまり。
   PCは display:contents で従来の縦積みに溶かし、
   SPだけアイコン右の枠として振る舞わせる（タグが折り返してもアイコンの下に回らない） */
.c-flow__step-head {
  display: contents;
}
@media screen and (max-width: 768px) {
  .c-flow__step-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.25rem 0.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.c-flow__icon {
  width: 5.125rem;
  height: 5.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: #1CCEC7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-flow__icon img {
  width: 2.875rem;
  height: 2.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 6つのステップの写真表示（Figma #97〜#102）
   アイコン（SVG・枠内に小さく配置）を実写真に置き換える。
   .c-flow__icon は他ページ共通のため、--photo を付けた要素だけに効かせる。 */
.c-flow__icon.--photo {
  overflow: hidden;
  background-color: transparent;
}
.c-flow__icon.--photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-flow__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  .c-flow__icon img {
    width: 1.925rem;
    height: 1.925rem;
  }
}

.c-flow__step-title {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .c-flow__step-title {
    margin-top: 0;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
  }
}

.c-flow__step-time {
  margin-top: 0.5rem;
  background-color: #1CCEC7;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 9999px;
  padding: 0.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-flow__step-time {
    margin-top: 0;
  }
}

.c-flow__step-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #2E2E2E;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-flow__step-text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 0.25rem;
  }
}

.c-message.l-section {
  padding-top: 2.5rem;
  padding-bottom: 6.625rem;
}

.c-message.--bg-yellow {
  background: url(../images/rich-cta-bg.webp) no-repeat center center/cover;
}

.c-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.c-message__image {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 27.5rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .c-message__image {
    width: 12.5rem;
  }
}
.c-message__image img {
  display: block;
  width: 100%;
  border-radius: 0.1875rem;
}

.c-message__name {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, .45);
}
@media screen and (max-width: 768px) {
  .c-message__name {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

.c-message__name-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
}

.c-message__name-main {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-message__name-main {
    font-size: 1.25rem;
  }
}

.c-message__name-sub {
  margin-left: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.c-message__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .c-message__body {
    margin-top: 0;
  }
}

.c-message__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .c-message__title {
    font-size: 1.25rem;
    text-align: center;
  }
}

.c-message__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .c-message__text {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.c-page-title {
  padding-top: 11.5rem;
  padding-bottom: 12.75rem;
  position: relative;
}
@media (max-width: 768px) {
  .c-page-title {
    padding-top: 3.75rem;
    padding-bottom: 17.5rem;
    margin-bottom: 3.75rem;
    background: url(../images/top-title-sp.webp) no-repeat center bottom/contain;
  }
}

.c-page-title.--service {
  padding-top: 15.125rem;
  padding-bottom: 12.25rem;
}
@media (max-width: 768px) {
  .c-page-title.--service {
    padding-top: 3.75rem;
    padding-bottom: 17.5rem;
  }
}

.c-page-title__wrapper {
  width: 45.625rem;
  max-width: 100%;
  margin-inline: auto;
}
/* 防水工事ページのみ、h1に「・シーリング」が加わって1行に収まらないため
   タイトル枠を広げる。他5ページのバランスを崩さないよう --wide で限定する。
   （2026-07-30 山本さん指示のシーリング追記に伴う調整） */
.c-page-title.--wide .c-page-title__wrapper {
  width: 49.625rem;
}
@media (max-width: 768px) {
  .c-page-title__wrapper {
    padding-inline: 0.9375rem;
  }
}

.c-page-title__title {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  position: relative;
  z-index: 10;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .c-page-title__title {
    font-size: 1.25rem;
    color: #1CCEC7;
  }
}
.c-page-title__title span {
  position: relative;
  display: inline-block;
  padding-inline: 0.5rem;
}
@media (max-width: 768px) {
  .c-page-title__title span {
    width: 100%;
  }
}
.c-page-title__title span:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .c-page-title__title span:nth-child(n+2) {
    margin-top: 0;
  }
}
.c-page-title__title span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1CCEC7;
  z-index: -1;
}
@media (max-width: 768px) {
  .c-page-title__title span::after {
    display: none;
  }
}

.c-page-title__text-block {
  margin-top: 1.5rem;
  position: relative;
}
.c-page-title__text-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -17.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22.375rem;
  height: 34.25rem;
  background: url(../images/page-top-left.webp) no-repeat center center/contain;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-page-title__text-block::before {
    display: none;
  }
}
.c-page-title__text-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: -17.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22.375rem;
  height: 34.25rem;
  background: url(../images/page-top-right.webp) no-repeat center center/contain;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-page-title__text-block::after {
    display: none;
  }
}

.c-page-title__text {
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}
.c-page-title__text + .c-page-title__text {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .c-page-title__text {
    font-size: 0.9375rem;
    text-align: left;
  }
}

.c-page-title.--service .c-page-title__text-block {
  width: 39.625rem;
  max-width: 100%;
  margin-inline: auto;
}

.c-page-title.--left .c-page-title__text {
  text-align: left;
}

.c-plan__lead {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-plan__lead {
    margin-top: 1rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.c-plan__cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .c-plan__cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 25rem;
    margin-inline: auto;
    margin-top: 2rem;
  }
}

.c-plan__card {
  position: relative;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 0.5rem;
  z-index: 10;
}

.c-plan__card.--recommend {
  border: 0.1875rem solid #1CCEC7;
}

.c-plan__card-head {
  background-color: #EDF4F2;
  text-align: center;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .c-plan__card-head {
    padding: 0.75rem 0.75rem;
  }
}

.c-plan__card.--recommend .c-plan__card-head {
  background-color: #1CCEC7;
  color: #fff;
}

.c-plan__name {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c-plan__name {
    font-size: 1.125rem;
  }
}

.c-plan__sub {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-plan__sub {
    font-size: 0.875rem;
  }
}

.c-plan__badge {
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  z-index: 100;
  width: 5.625rem;
  height: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  background: url(../images/icon/recommendation.svg) no-repeat center center/contain;
}

.c-plan__card-body {
  padding: 1.75rem 1.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-plan__card-body {
    padding: 1rem 0.75rem;
  }
}

.c-plan__price {
  text-align: center;
  font-weight: 700;
  color: #2E2E2E;
  line-height: 1;
}

.c-plan__price-num {
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .c-plan__price-num {
    font-size: 2rem;
  }
}

.c-plan__price-unit {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .c-plan__price-unit {
    font-size: 1rem;
  }
}

.c-plan__price-note {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}

.c-plan__specs {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-plan__specs {
    margin-top: 1rem;
    padding-top: 0.75rem;
  }
}

.c-plan__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.c-plan__spec-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #1CCEC7;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
}

.c-plan__spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: #2E2E2E;
}

.c-plan__features {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-plan__features {
    margin-top: 1rem;
  }
}

.c-plan__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  background-color: #F7F7F7;
  border-radius: 0.375rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}
.c-plan__feature::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: url(../images/icon/green-check.svg) no-repeat center center/contain;
}

@media (max-width: 768px) {
  .c-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .c-point__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.c-point__lead {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-point__lead {
    font-size: 0.875rem;
    text-align: left;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-point__photos {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-point__photos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.c-point__photo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  .c-point__photo {
    max-width: 100%;
  }
}
.c-point__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 480/320;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}

.c-point__cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-point__cards {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.c-point__card {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 1.75rem 1.25rem;
  -webkit-box-shadow: 0 0.125rem 0.75rem rgba(46, 46, 46, .05);
          box-shadow: 0 0.125rem 0.75rem rgba(46, 46, 46, .05);
}
@media screen and (max-width: 1024px) {
  .c-point__card {
    padding: 1rem 0.75rem;
  }
}

.c-point__card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
}

.c-point__card-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #2E2E2E;
}

.c-rich-cta {
  padding-block: 5rem;
}
@media (max-width: 768px) {
  .c-rich-cta {
    padding-block: 3rem;
  }
}

.c-rich-cta.--bg-yellow {
  background: url(../images/rich-cta-bg.webp) no-repeat center center/cover;
}

.c-rich-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .c-rich-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.c-rich-cta__image {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 27.5rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .c-rich-cta__image {
    width: 10rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.c-rich-cta__image img {
  display: block;
  width: 100%;
  border-radius: 0.1875rem;
}

.c-rich-cta__name {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, .45);
}
@media (max-width: 768px) {
  .c-rich-cta__name {
    left: 0.625rem;
    bottom: 0.625rem;
  }
}

.c-rich-cta__name-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
}

.c-rich-cta__name-main {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-rich-cta__name-main {
    font-size: 1.125rem;
  }
}

.c-rich-cta__name-sub {
  font-size: 0.8125rem;
  font-weight: 500;
}

.c-rich-cta__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .c-rich-cta__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .c-rich-cta__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-rich-cta__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .c-rich-cta__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1.5rem;
  }
}

.c-rich-cta__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* 行数が違うカードでもテキストを上下中央に置く */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 0.25rem;
  padding-block: 1rem;
  background-color: rgba(255, 255, 255, .7);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.c-rich-cta__item::before {
  content: "";
  position: absolute;
  top: -0.875rem;
  left: -1rem;
  width: 2.5rem;
  height: 2rem;
  background: url(../images/worry.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .c-rich-cta__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 0.3125rem);
            flex: 1 1 calc(50% - 0.3125rem);
    font-size: 0.875rem;
  }
}

.c-rich-cta__header {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .c-rich-cta__header {
    font-size: 1.5rem;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.c-rich-cta__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 768px) {
  .c-rich-cta__text {
    font-size: 0.875rem;
    text-align: left;
    margin-top: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    letter-spacing: -0.1em;
  }
}

.c-rich-cta__cards {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .c-rich-cta__cards {
    width: 100%;
    max-width: min(22.5rem, 100%);
    margin-inline: auto;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.c-rich-cta__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .c-rich-cta__card {
    width: 11.25rem;
  }
}

.c-rich-cta__card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}

.c-rich-cta__card-text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}
.c-rich-cta__card-text span {
  color: #1CCEC7;
}

.c-rich-cta__buttons {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-rich-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.75rem;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.c-rich-cta__buttons .c-cta-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 21.25rem;
  width: 100%;
}

.c-safety__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  background-color: #1CCEC7;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 0.25rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-safety__title {
    font-size: 1.375rem;
  }
}

.c-safety__lead {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-safety__lead {
    font-size: 0.875rem;
    text-align: left;
  }
}

.c-safety__cards {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}
/* 5列ぶんの幅を基準にしつつ、枚数が4枚以下でも中央に寄るようにする
   （屋根工事ページは山本さんの統合で4枚になったため、5列gridだと右が空いた） */
.c-safety__cards > .c-safety__card {
  flex: 0 1 calc((100% - 1.25rem * 4) / 5);
  min-width: 11.25rem;
}
@media screen and (max-width: 768px) {
  .c-safety__cards {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  /* 1列だとカードが細長くなるため2列で並べる */
  .c-safety__cards > .c-safety__card {
    flex: 0 1 calc((100% - 1rem) / 2);
    min-width: 0;
  }
  /* 2列幅でタイトルが3行になっても本文に重ならないよう固定高を解除 */
  .c-safety__card-title {
    height: auto;
    min-height: 2.5rem;
    margin-bottom: 0.5rem;
    word-break: auto-phrase;
    line-break: strict;
  }
}

.c-safety__card {
  background-color: #F0FBF5;
  border-radius: 0.3125rem;
  padding: 1.75rem 0.875rem;
}
@media screen and (max-width: 768px) {
  .c-safety__card {
    padding: 1rem 0.75rem;
  }
}

.c-safety__card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
  text-align: center;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-safety__card-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .c-safety__card-text {
    margin-top: 0;
  }
}

.c-section-lead {
  font-weight: 400;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-section-lead {
    text-align: left;
  }
}

.c-section-title {
  font-size: 2rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
@media (max-width: 768px) {
  .c-section-title {
    font-size: 1.5rem;
  }
}
.c-section-title::before {
  content: "";
  position: absolute;
  top: -1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1CCEC7;
  font-size: 1rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.c-section-title span {
  display: block;
  margin-top: 0.25rem;
  display: inline-block;
  padding-inline: 0.5rem;
  color: #fff;
  background-color: #1CCEC7;
  margin-inline: 0.5rem;
}
@media (max-width: 768px) {
  .c-section-title span {
    display: block;
  }
}
.c-section-title span.inline-block {
  display: inline-block;
}

.c-section-title.--problem::before {
  content: "Problem";
}

.c-section-title.--staff::before {
  content: "Staff";
}

.c-section-title.--recommend::before {
  content: "Recommend";
}

.c-section-title.--why::before {
  content: "Why";
}

.c-section-title.--faq::before {
  content: "FAQ";
}

.c-section-title.--orange {
  color: #fff;
  background-color: #FF7752;
  padding-inline: 0.5rem;
}
@media (max-width: 768px) {
  .c-section-title.--orange {
    width: 100%;
  }
}

.c-section-title.--area {
  color: #fff;
  background-color: #1CCEC7;
  padding-inline: 0.5rem;
}
.c-section-title.--area::before {
  content: "Area";
}

.c-section-title.--area-inline::before {
  content: "Area";
}

.c-section-title.--review::before {
  content: "Customer voice";
}

.c-section-title.--reason::before {
  content: "Reason";
}

.c-section-title.--number::before {
  content: "Number";
}

.c-section-title.--flow::before {
  content: "Flow";
}

.c-section-title.--point::before {
  content: "Point";
}

.c-section-title.--difference::before {
  content: "Difference";
}

.c-section-title.--howto::before {
  content: "How to Choose";
}

.c-section-title.--plan::before {
  content: "Plan";
}

.c-section-title.--gaina::before {
  content: "GAINA";
}

.c-section-title.--column::before {
  content: "Work";
}

.c-section-title.--voice::before {
  content: "Customer voice";
}

.c-section-title.--case::before {
  content: "Work";
}

.c-section-title.--contact::before {
  content: "Contact";
}

.c-section-title.--service::before {
  content: "Service";
}

.c-section-title.--company::before {
  content: "Company";
}

.c-section-title.--history::before {
  content: "History";
}

.c-section-title.--access::before {
  content: "Access";
}

.c-section-title.--showroom::before {
  content: "Showroom";
}

.c-section-title.--message::before {
  content: "Message";
}

.c-section-title.--promise::before {
  content: "Promise";
}

.c-section-title.--achievement::before {
  content: "Achievement";
}

.c-sub-mv {
  position: relative;
  display: grid;
  place-items: center;
  height: 12.5rem;
  padding-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-sub-mv {
    height: 11.25rem;
    padding-top: 0;
  }
}

.c-sub-mv.--archive {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .c-sub-mv.--archive {
    margin-bottom: 2rem;
  }
}

.c-sub-mv__bg {
  position: absolute;
  inset: 0;
}
.c-sub-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sub-mv__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.c-sub-mv__label {
  color: #1CCEC7;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-sub-mv__label {
    font-size: 0.875rem;
  }
}

.c-sub-mv__title {
  color: #2E2E2E;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c-sub-mv__title {
    font-size: 1.5rem;
  }
}

.c-tag {
  display: inline-block;
  background-color: #1CCEC7;
  color: #fff;
  font-weight: 500;
  padding-inline: 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid #1CCEC7;
}

.c-tag.--outline {
  background-color: #fff;
  color: #1CCEC7;
}

.p-company-info__table {
  max-width: 62.5rem;
  margin-inline: auto;
  margin-top: 3rem;
  border-top: 0.0625rem solid #D6D6D6;
}
@media screen and (max-width: 768px) {
  .p-company-info__table {
    margin-top: 2rem;
  }
}

.p-company-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.0625rem solid #D6D6D6;
}
@media screen and (max-width: 768px) {
  .p-company-info__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-company-info__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.25rem;
          flex: 0 0 16.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.5rem;
  background-color: #F1F7F4;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-company-info__label {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

.p-company-info__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-company-info__value {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

.p-history__list {
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-history__list {
    margin-top: 2rem;
  }
}

.p-history__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-history__row {
    gap: 1.25rem;
    padding-bottom: 1.5rem;
  }
}
.p-history__row::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 9.125rem;
  bottom: -0.625rem;
  width: 0.125rem;
  background-color: rgba(28, 206, 199, .3);
}
@media screen and (max-width: 768px) {
  .p-history__row::before {
    left: 6rem;
  }
}
.p-history__row:last-child {
  padding-bottom: 0;
}
.p-history__row:last-child::before {
  display: none;
}
.p-history__row::after {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 8.8125rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #1CCEC7;
}
@media screen and (max-width: 768px) {
  .p-history__row::after {
    left: 5.6875rem;
  }
}

.p-history__year {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7.5rem;
          flex: 0 0 7.5rem;
  color: #1CCEC7;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-history__year {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
    font-size: 0.9375rem;
  }
}

.p-history__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-history__text {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
}

.p-access__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-access__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-access__card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .08);
          box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .08);
}

.p-access__map {
  aspect-ratio: 16/9;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-access__body {
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-access__body {
    padding: 1rem;
  }
}

.p-access__name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-access__name {
    font-size: 1rem;
  }
}

.p-access__address {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-access__address {
    font-size: 0.875rem;
  }
}

.p-access__note {
  margin-top: 0.5rem;
  color: #2E2E2E;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}

.p-showroom__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-showroom__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.p-showroom__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-showroom__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-showroom__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-showroom__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-showroom__title {
    font-size: 1.25rem;
  }
}

.p-showroom__text {
  margin-top: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-showroom__text {
    font-size: 0.875rem;
  }
}

.p-showroom__checks {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
}

.p-showroom__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-showroom__check {
    font-size: 0.875rem;
  }
}
.p-showroom__check::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.125rem;
  height: 0.625rem;
  margin-top: 0.4375rem;
  border-left: 0.1875rem solid #1CCEC7;
  border-bottom: 0.1875rem solid #1CCEC7;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
}

.p-showroom__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-showroom__photos {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.p-showroom__sub-photo {
  border-radius: 0.3125rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.p-showroom__sub-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-showroom__sub-photo.--placeholder {
  display: grid;
  place-items: center;
  background-color: #E2E8E5;
  color: #8C8C8C;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-greeting__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  max-width: 62.5rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.p-greeting__photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-greeting__photo img {
  width: 13.75rem;
  height: 13.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__photo img {
    width: 11.25rem;
    height: 11.25rem;
  }
}

.p-greeting__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-greeting__headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-greeting__headline {
    font-size: 1.25rem;
    text-align: center;
  }
}

.p-greeting__text {
  margin-top: 1rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-greeting__text {
    font-size: 0.875rem;
  }
}

.p-greeting__sign {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.75rem;
}

.p-greeting__sign-role {
  font-size: 0.875rem;
}

.p-greeting__sign-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.p-staff-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-staff-intro__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.p-staff-intro__card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .06);
          box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .06);
  text-align: center;
}

.p-staff-intro__photo {
  border-radius: 0.3125rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.p-staff-intro__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-staff-intro__photo.--placeholder {
  display: grid;
  place-items: center;
  background-color: #E2E8E5;
  color: #8C8C8C;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-staff-intro__name {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-staff-intro__role {
  margin-top: 0.25rem;
  color: #1CCEC7;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-staff-intro__comment {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: left;
}

.p-promise__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .p-promise__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-promise__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.p-promise__card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  -webkit-box-shadow: 0 0.125rem 0.75rem rgba(46, 46, 46, .08);
          box-shadow: 0 0.125rem 0.75rem rgba(46, 46, 46, .08);
  text-align: center;
}

.p-promise__num {
  display: block;
  color: #1CCEC7;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.p-promise__title {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-promise__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: left;
}

.p-achievement__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .p-achievement__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-achievement__stats {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.p-achievement__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .06);
          box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .06);
  text-align: center;
}

.p-achievement__num {
  color: #1CCEC7;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-achievement__num {
    font-size: 1.75rem;
  }
}

.p-achievement__unit {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-achievement__unit {
    font-size: 1rem;
  }
}

.p-achievement__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-achievement__label {
    font-size: 0.8125rem;
  }
}

.p-achievement__chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-achievement__chips {
    gap: 0.5rem;
    margin-top: 2rem;
  }
}

.p-achievement__chip {
  padding: 0.5rem 1.25rem;
  background-color: #fff;
  border: 0.0625rem solid #1CCEC7;
  border-radius: 9999px;
  color: #1CCEC7;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-achievement__chip {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
  }
}

.p-achievement__evidences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-achievement__evidences {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.p-achievement__evidence {
  border-radius: 0.3125rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #fff;
}
.p-achievement__evidence img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-achievement__evidence.--placeholder {
  display: grid;
  place-items: center;
  background-color: #E2E8E5;
  color: #8C8C8C;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.p-area-section {
  position: relative;
  padding-top: 7.75rem;
  padding-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .p-area-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.p-area-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/area-map.webp) no-repeat center top/contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  height: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .p-area-section::before {
    background: url(../images/area-map.webp) no-repeat center center/contain;
  }
}

.p-area-section__inner {
  position: relative;
  z-index: 1;
}

.p-area-section__list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .p-area-section__list {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.p-area-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 0.75rem);
          flex: 0 0 calc(25% - 0.75rem);
  padding-block: 1.25rem;
  background-color: #1CCEC7;
  border-radius: 0.3125rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .08);
          box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .08);
}
@media (max-width: 768px) {
  .p-area-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.375rem);
            flex: 0 0 calc(50% - 0.375rem);
    font-size: 1rem;
    padding-block: 1rem;
  }
}

.p-case__slider {
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-case__slider {
    margin-top: 2rem;
  }
}

.p-case__slider .swiper {
  overflow: hidden;
}

.p-case__card {
  height: auto;
  background-color: #F1F7F4;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-case__card {
    padding: 1rem;
  }
}

.p-case__link {
  display: block;
  color: #2E2E2E;
}
.p-case__link:hover .p-case__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-case__link:hover .p-case__title {
  color: #1CCEC7;
}

.p-case__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-case__image {
  position: relative;
  border-radius: 0.1875rem;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.p-case__image img,
.p-case__image .p-case__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-case__image-placeholder {
  background-color: #888;
}

.p-case__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.25rem 1.25rem;
  background-color: #1CCEC7;
  color: #fff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-case__label {
    font-size: 0.9375rem;
    padding: 0.125rem 0.875rem;
  }
}

.p-case__connector {
  display: block;
  width: 3.5rem;
  height: 1.25rem;
  margin: 0.5rem auto;
  background-color: #FF7752;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.p-case__tags {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.p-case__title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-case__title {
    font-size: 1rem;
  }
}

.p-case__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background-color: #1CCEC7;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-case__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
}
.p-case__arrow.--prev {
  left: -1.5rem;
}
.p-case__arrow.--prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.p-case__arrow.--next {
  right: -1.5rem;
}
.p-case__arrow.--next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.p-case__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
@media screen and (max-width: 768px) {
  .p-case__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-case__arrow.--prev {
    left: -0.5rem;
  }
  .p-case__arrow.--next {
    right: -0.5rem;
  }
}

.p-case__more {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-case__more {
    margin-top: 2rem;
  }
}

.p-column__cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-column__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-column__link {
  display: block;
  color: #2E2E2E;
}
.p-column__link:hover .p-column__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-column__link:hover .p-column__title {
  color: #1CCEC7;
}

.p-column__image {
  border-radius: 0.1875rem;
  overflow: hidden;
}
.p-column__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  aspect-ratio: 380/240;
}

.p-column__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F1F7F4;
}

.p-column__cat {
  margin-top: 1rem;
}

.p-column__date {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #999;
}

.p-column__title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-column__title {
    font-size: 1rem;
  }
}

.p-column__more {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-column__more {
    margin-top: 2rem;
  }
}

.p-cta-box {
  width: 45.8125rem;
  max-width: 100%;
  padding: 2.5rem 3.25rem;
  background-color: rgba(255, 255, 255, .82);
  border-radius: 1.25rem;
  text-align: center;
  position: absolute;
  bottom: 4.75rem; /* トップもServiceページと同位置に（2026-07-30 山本さん指示） */
  left: 0;
}
.p-cta-box.--service {
  width: 47rem;
  padding-inline: 1.875rem;
  bottom: 4.75rem;
}
@media screen and (max-width: 768px) {
  .p-cta-box.--service {
    width: 100%;
    padding-inline: 1rem;
    bottom: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .p-cta-box {
    padding: 1.25rem 1.25rem;
    bottom: 3.75rem;
  }
}

.p-cta-box__bar {
  background-color: #FF7752;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-radius: 0.1875rem;
  padding: 0.875rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-cta-box__bar {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    text-align: center;
  }
}

.p-cta-box__title {
  margin-top: 0.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .p-cta-box__title {
    font-size: 1.5rem;
  }
}

.p-cta-box__text {
  line-height: 1.4;
  text-align: center;
  margin-top: 0.5rem;
}

.p-cta-box__badges {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-cta-box__badges {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.75rem 0.5rem;
    margin-top: 0.625rem;
  }
}

.p-cta-box__badge {
  position: relative;
  padding-inline: 1.75rem;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .p-cta-box__badge {
    padding-inline: 1.625rem;
  }
}
.p-cta-box__badge::before, .p-cta-box__badge::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4375rem;
  height: 3rem;
}
.p-cta-box__badge::before {
  left: 0;
  background: url(../images/icon/bracket-left.svg) no-repeat center center/contain;
}
.p-cta-box__badge::after {
  right: 0;
  background: url(../images/icon/bracket-right.svg) no-repeat center center/contain;
}

.p-cta-box__badge-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.p-cta-box__badge-text {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  /* 文節の切れ目で折り返す（「在籍」だけ落ちる等の不自然な改行を防ぐ）。
     overflow-wrap: anywhere は付けない（「★4.7」が数値の途中で割れるため） */
  word-break: auto-phrase;
}
.p-cta-box__badge-text.--sm {
  font-size: 0.875rem;
  line-height: 1.4;
}

.p-cta-box__buttons {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-cta-box__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
.p-cta-box__buttons .c-cta-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-cta-box__buttons .c-cta-button {
    width: 100%;
    max-width: 20rem;
  }
}

.p-mainVisual__textLayer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-error {
  text-align: center;
}

.p-error__inner {
  max-width: 45rem;
}

.p-error__code {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  color: #1CCEC7;
}
@media screen and (max-width: 768px) {
  .p-error__code {
    font-size: 3.5rem;
  }
}
.p-error__code.--thanks {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-error__code.--thanks {
    font-size: 2rem;
  }
}

.p-error__title {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .p-error__title {
    font-size: 1.375rem;
  }
}

.p-error__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2E2E2E;
}

.p-error__button {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-flow__steps {
  position: relative;
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.p-flow__steps::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: 8%;
  right: 8%;
  height: 0.125rem;
  background-color: #1CCEC7;
  z-index: 0;
}
@media (max-width: 768px) {
  .p-flow__steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.75rem 0.5rem;
    width: 20rem;
    margin-inline: auto;
    margin-top: 2.5rem;
  }
  .p-flow__steps::before {
    display: none;
  }
}

.p-flow__step {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    text-align: left;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-flow__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.125rem;
  height: 5.125rem;
  margin-inline: auto;
  border-radius: 50%;
  background-color: #1CCEC7;
}
@media screen and (max-width: 768px) {
  .p-flow__icon {
    width: 4.125rem;
    height: 4.125rem;
  }
}
.p-flow__icon img {
  width: 2.125rem;
  height: 2.125rem;
}

@media screen and (max-width: 768px) {
  .p-flow__step-bottom {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-flow__step-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}
/* タイトル内リンク（お問合せ→/contact/）。
   テーマ標準のリンク色(#555)だと他タイトルと色がズレるため見出し色を継承する */
.p-flow__step-title a {
  color: inherit;
}
@media screen and (max-width: 768px) {
  .p-flow__step-title {
    margin-top: 0;
  }
}

.p-flow__step-text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #555;
}
@media screen and (max-width: 768px) {
  .p-flow__step-text {
    margin-top: 0.25rem;
  }
}

.p-flow__report {
  margin-top: 6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-flow__report {
    margin-top: 4rem;
  }
}

.p-flow__report-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-flow__report-title .--hl {
  display: inline-block;
  padding-inline: 0.5rem;
  color: #fff;
  background-color: #1CCEC7;
  margin-bottom: 0.25rem;
}
.p-flow__report-title .--ul {
  position: relative;
}
.p-flow__report-title .--ul::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #1CCEC7;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-flow__report-title {
    font-size: 1.375rem;
  }
}

.p-flow__report-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .p-flow__report-text {
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-flow__report-badges {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .p-flow__report-badges {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
  }
}

.p-flow__report-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #F0FBF5;
  border-radius: 0.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-flow__report-badge {
    width: 100%;
  }
}
.p-flow__report-badge::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: url(../images/icon/green-check.svg) no-repeat center center/contain;
}

.p-flow__report-images {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .p-flow__report-images {
    grid-template-columns: 1fr;
    max-width: 22.5rem;
    margin-inline: auto;
    margin-top: 1rem;
  }
}
.p-flow__report-images img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}

.p-footer__left {
  width: auto;
}

.p-footer__info {
  padding-bottom: 1.5rem;
}

.p-footer__info-area {
  margin-top: 2rem;
  border-bottom: 1px solid #D6D6D6;
}

.p-footer__info-term {
  width: 4.75rem;
  background-color: #1CCEC7;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 700;
  padding-block: 0.0625rem;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.p-footer__contact-area {
  margin-top: 1.5rem;
}

.p-footer__contact-link {
  display: block;
  font-weight: 700;
}

.p-footer__tel,
.p-footer__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.25rem;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__tel,
  .p-footer__mail {
    font-size: 0.875rem;
  }
}

.p-footer__tel::before {
  content: "";
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../images/icon/phone-blue.svg) center center/contain no-repeat;
}

.p-footer__mail::before {
  content: "";
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../images/icon/mail-blue.svg) center center/contain no-repeat;
}

.p-footer__line-link {
  margin-top: 0.75rem;
}

.p-footer__line-link.c-cta-button {
  padding-block: 0.75rem;
  padding-inline: 0.875rem;
}
.p-footer__line-link.c-cta-button .text {
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__line-link.c-cta-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-footer__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__right {
    margin-top: 2.5rem;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-footer__nav {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 2rem;
  }
}

.p-footer__nav-link {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 1.125rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1CCEC7), to(#1CCEC7));
  background-image: linear-gradient(#1CCEC7, #1CCEC7);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: left 100%;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s ease;
  transition: background-size 0.3s ease;
}
.p-footer__nav-link:hover {
  background-size: 100% 1px;
}
@media screen and (max-width: 1024px) {
  .p-footer__nav-link {
    padding-right: 0;
    padding-left: 0;
    font-size: 0.9375rem;
    /* 100% だと hover の下線が列幅いっぱいに伸びるため、文字幅に合わせる */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-footer__nav-link::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.75rem;
  background: url(../images/icon/arrow-right-blue.svg) center center/contain no-repeat;
  margin-right: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-link::before {
    width: 0.25rem;
    margin-right: 0.3rem;
  }
}

.p-footer__nav-item.--top .p-footer__nav-link {
  padding-left: 0;
  font-weight: 700;
  background-image: none;
  cursor: default;
}
.p-footer__nav-item.--top .p-footer__nav-link::before {
  display: none;
}

.w-footer__box {
  padding-block: 0;
  padding-inline: 0;
}

@media screen and (max-width: 768px) {
  .l-footer .textwidget.custom-html-widget {
    row-gap: 1rem;
  }
}

.p-fv {
  position: relative;
  overflow: hidden;
  height: 53.75rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-fv {
    height: 100vh;
    padding-inline: 0.9375rem;
  }
}
/* FVのSP表示: 100vh固定だと376〜768pxの帯でCTAボックス（コンテンツ）が
   入り切らず上端が切れるため、高さをコンテンツに合わせる。
   背景スライダーは inset:0 の全面配置なので伸びた高さに追従する。
   （2026-07-30 山本さん指示「768px時点のFVを調整」） */
@media screen and (max-width: 768px) {
  .p-fv {
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* 背景写真が必ず一筋見えるよう、上部に最低6remの写真帯を確保
       （余白が十分ある幅では min-height が支配するため影響しない） */
    padding-top: 6rem;
  }
  .p-fv .p-cta-box {
    position: static;
    margin: 1.25rem auto 3.75rem;
  }
}

.p-fv .p-fv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv .p-fv__slider,
.p-fv .p-fv__slider .swiper-wrapper,
.p-fv .p-fv__slider .swiper-slide,
.p-fv .p-fv__slider picture {
  height: 100%;
}
.p-fv .p-fv__slider picture {
  display: block;
}
.p-fv .p-fv__slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__inner {
  position: relative;
  z-index: 1;
  padding-block: 4.5rem;
  height: inherit;
  width: 90rem;
  margin-inline: auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    width: 100%;
    padding-block: 0;
  }
}

.swiper-slide.--deco {
  position: relative;
}
.swiper-slide.--deco::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 14.625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/fv-bottom.webp) no-repeat center top/cover;
  z-index: 1;
}

.p-header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header-buttons .c-cta-button.--tel {
  background-color: transparent;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-header-buttons .c-cta-button.--tel:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.7;
}
.p-header-buttons .c-cta-button.--tel .label,
.p-header-buttons .c-cta-button.--tel .text,
.p-header-buttons .c-cta-button.--tel .time {
  color: #2E2E2E;
}
.p-header-buttons .c-cta-button.--tel .label {
  font-size: 0.75rem;
}
.p-header-buttons .c-cta-button.--tel .time {
  font-size: 0.6875rem;
}
.p-header-buttons .c-cta-button.--tel .text {
  font-size: 1.5rem;
}
.p-header-buttons .c-cta-button.--tel .text::before {
  background: url(../images/icon/phone-blue.svg) no-repeat center center/contain;
}
.p-header-buttons .c-cta-button.--line,
.p-header-buttons .c-cta-button.--mail {
  padding-block: 0.75rem;
}
.p-header-buttons .c-cta-button.--line .text,
.p-header-buttons .c-cta-button.--mail .text {
  font-size: 0.875rem;
}

@media (min-width: 960px) {
  #header .c-gnav > .menu-item.has-mega-menu {
    position: static;
  }
  #header .c-gnav > .menu-item.has-mega-menu > a {
    cursor: default;
  }
  #header .c-gnav > .menu-item.has-mega-menu > .sub-menu {
    display: none;
  }
  .p-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, .8);
    padding: 1.25rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  #header .c-gnav > .menu-item.has-mega-menu:hover .p-mega-menu,
  #header .c-gnav > .menu-item.has-mega-menu:focus-within .p-mega-menu {
    opacity: 1;
    visibility: visible;
  }
  .p-mega-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
  .p-mega-menu__item {
    width: 13.125rem;
  }
  .p-mega-menu__link {
    display: block;
    color: #2E2E2E;
  }
  .p-mega-menu__link:hover .p-mega-menu__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-mega-menu__link:hover .p-mega-menu__label {
    color: #1CCEC7;
  }
  .p-mega-menu__image {
    border-radius: 0.1875rem;
    overflow: hidden;
    aspect-ratio: 210/130;
  }
  .p-mega-menu__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .p-mega-menu__label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
}
@media (max-width: 959px) {
  .p-mega-menu {
    display: none;
  }
}
.p-number {
  background-color: #f2f5f4;
}

.p-number__cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .p-number__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
}

.p-number__card {
  padding: 1.75rem 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .p-number__card {
    padding: 1.25rem 1rem;
  }
}

.p-number__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1CCEC7;
  text-align: center;
}
@media (max-width: 768px) {
  .p-number__label {
    font-size: 0.875rem;
  }
}

.p-number__value {
  margin-top: 0.5rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #2E2E2E;
  text-align: center;
}

.p-number__num {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-number__num {
    font-size: 2.5rem;
  }
}

.p-number__unit {
  margin-left: 0.125rem;
  font-size: 1.25rem;
}

.p-number__star {
  margin-left: 0.125rem;
  font-size: 1.75rem;
  color: #fab005;
}

.p-number__text {
  margin-top: 1rem;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #555;
}
@media (max-width: 768px) {
  .p-number__text {
    margin-top: 0.75rem;
  }
}

.p-policy__inner {
  max-width: 52.5rem;
}
.p-policy .post_content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E2E2E;
}
.p-policy .post_content h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-policy .post_content h2 {
    margin-top: 2.25rem;
    font-size: 1.25rem;
  }
}
.p-policy .post_content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
}
.p-policy .post_content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2E2E2E;
}
.p-policy .post_content ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.p-policy .post_content ul li {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #2E2E2E;
}
.p-policy .post_content a {
  color: #1CCEC7;
  text-decoration: underline;
}

.is-policy-page .post_content h2 {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 1em;
}
.is-policy-page .post_content h2::before, .is-policy-page .post_content h2::after {
  content: none;
  display: none;
}

.p-reason__cards {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .p-reason__cards {
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.p-reason__cards.--sub {
  margin-top: 2.5rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .p-reason__cards.--sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}
.p-reason__cards.--sub .p-reason__card {
  width: 18.125rem;
}
@media screen and (max-width: 768px) {
  .p-reason__cards.--sub .p-reason__card {
    width: 100%;
  }
}

.p-reason__card {
  position: relative;
  padding: 1.5rem;
  background-color: #f4f6f5;
  border-radius: 0.5rem;
  width: 36.25rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-reason__card {
    padding: 1rem;
  }
}

.p-reason__badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background-color: #fbe6a2;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-reason__badge {
    top: -0.75rem;
    left: -0.75rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}

.p-reason__badge-label {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #2E2E2E;
}

.p-reason__badge-num {
  margin-top: 0.125rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .p-reason__badge-num {
    font-size: 2rem;
  }
}

.p-reason__image img {
  display: block;
  width: 100%;
  aspect-ratio: 548/300;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}

.p-reason__card-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2E2E2E;
}
@media (max-width: 768px) {
  .p-reason__card-title {
    font-size: 1.125rem;
  }
}

.p-reason__card-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #555;
}

.p-reason__card-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.75rem;
  margin-left: auto;
  color: #1CCEC7;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-reason__card-link::after {
  content: " →";
}
.p-reason__card-link:hover {
  opacity: 0.7;
}

.p-reason__card.--sub {
  padding: 1rem;
}
.p-reason__card.--sub .p-reason__badge {
  top: -0.75rem;
  left: -0.75rem;
  width: 4.5rem;
  height: 4.5rem;
}
.p-reason__card.--sub .p-reason__badge-num {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-reason__card.--sub .p-reason__badge-num {
    font-size: 2rem;
  }
}
.p-reason__card.--sub .p-reason__image img {
  aspect-ratio: 261/143;
}
.p-reason__card.--sub .p-reason__card-title {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
}

.p-review__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.5rem;
  background-color: #F1F7F4;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-review__lead {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

.p-review__slider {
  position: relative;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .p-review__slider {
    margin-top: 1rem;
    margin-inline: -0.9375rem;
  }
}

.p-review__card {
  height: auto;
  padding: 2rem;
  background-color: #f7f7f7;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .p-review__card {
    padding: 1.5rem;
  }
}

.p-review__stars {
  color: #fab005;
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  line-height: 1;
}

.p-review__text {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #2E2E2E;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.is-open .p-review__text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.p-review__toggle {
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: none;
  color: #1CCEC7;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.p-review__toggle[hidden] {
  display: none;
}

.p-review__user {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.p-review__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fab005;
  overflow: hidden;
}

.p-review__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-review__avatar.--initial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-review__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
}

.p-review__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #2E2E2E;
}

.p-review__date {
  font-size: 0.8125rem;
  color: #999;
}

.p-review__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background-color: #1CCEC7;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-review__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
}
.p-review__arrow.--prev {
  left: -1.5rem;
}
.p-review__arrow.--prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.p-review__arrow.--next {
  right: -1.5rem;
}
.p-review__arrow.--next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.p-review__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 768px) {
  .p-review__arrow {
    width: 2.2rem;
    height: 2.2rem;
  }
  .p-review__arrow.--prev {
    left: 0.25rem;
  }
  .p-review__arrow.--next {
    right: 0.25rem;
  }
}

.p-review__more {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-review__more .c-button {
  width: auto;
  min-width: 20.625rem;
  padding-inline: 2rem 3rem;
}
@media (max-width: 768px) {
  .p-review__more {
    margin-top: 2rem;
  }
}

.p-second-view {
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-second-view {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.p-second-view__row + .p-second-view__row {
  margin-top: 2.875rem;
}

.p-second-view__menu {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1CCEC7;
  margin-bottom: 1rem;
}

.p-second-view__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}

.p-second-view__item {
  background-color: #F0FBF5;
  border: 0.0625rem solid #1CCEC7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 0.125rem;
}

/* サービスアイコンは要素自身の背景に描く（::before は矢印の白丸に使うため） */
.p-second-view__item-link {
  --sv-arrow-offset: 0.75rem;
  --sv-circle: 2rem;
  font-weight: 700;
  width: 100%;
  display: inline-block;
  height: 100%;
  padding-block: 1.75rem;
  padding-left: 3.75rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 2.3125rem 2.3125rem;
}
/* 下向き矢印の白丸。arrow-down.svg は三角が円の中心から右1.5px・下0.5pxずれていたためCSSで描く */
.p-second-view__item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: var(--sv-arrow-offset);
  width: var(--sv-circle);
  height: var(--sv-circle);
  background-color: #fff;
  border-radius: 50%;
}
/* 三角。円の中心にぴったり合わせる（元画像より少し大きめの 14/32 × 9/32） */
.p-second-view__item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(var(--sv-arrow-offset) + var(--sv-circle) / 2);
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 0;
  height: 0;
  border-left: calc(var(--sv-circle) * 7 / 32) solid transparent;
  border-right: calc(var(--sv-circle) * 7 / 32) solid transparent;
  border-top: calc(var(--sv-circle) * 9 / 32) solid #1CCEC7;
}

.p-second-view__item-link.--gaiheki {
  background-image: url("../images/icon/gaiheki.svg");
}

.p-second-view__item-link.--yane {
  background-image: url("../images/icon/yane.svg");
}

.p-second-view__item-link.--bousui {
  background-image: url("../images/icon/bousui.svg");
}

.p-second-view__item-link.--amamori {
  background-image: url("../images/icon/amamori.svg");
}

.p-second-view__item-link.--mizu {
  background-image: url("../images/icon/mizu.svg");
}

.p-second-view__item-link.--cloth {
  background-image: url("../images/icon/cloth.svg");
}

.p-second-view__item-link.--floor {
  background-image: url("../images/icon/floor.svg");
}

.p-second-view__item-link.--genkan {
  background-image: url("../images/icon/genkan.svg");
}

@media screen and (max-width: 1024px) {
  .p-second-view__items {
    gap: 0.75rem;
  }
  .p-second-view__item-link {
    --sv-arrow-offset: 0.5rem;
    --sv-circle: 1.5rem;
    padding-left: 3rem;
    padding-right: 2.5rem;
    background-position: left 0.5rem center;
    background-size: 1.875rem 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-second-view__row + .p-second-view__row {
    margin-top: 2rem;
  }
  .p-second-view__menu {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .p-second-view__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .p-second-view__item-link {
    --sv-arrow-offset: 0.5rem;
    --sv-circle: 1.25rem;
    padding-block: 1.125rem;
    padding-left: 2.75rem;
    padding-right: 2rem;
    font-size: 0.875rem;
    background-position: left 0.5rem center;
    background-size: 1.625rem 1.625rem;
  }
}
.p-service-problem__list {
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .p-service-problem__list {
    margin-top: 1.5rem;
  }
}

.p-service-problem__bottom {
  margin-top: 2rem;
  position: relative;
  padding-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-service-problem__bottom {
    padding-top: 3.75rem;
    margin-top: 1rem;
  }
}
.p-service-problem__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 31.625rem;
  height: 3.75rem;
  background: url(../images/icon/big-orange-arrow.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .p-service-problem__bottom::before {
    width: 17.5rem;
    height: 3.25rem;
  }
}

.p-service-problem__bottom-text {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service-problem__bottom-text {
    font-size: 1.375rem;
  }
}
.p-service-problem__bottom-text::before {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.p-service-problem__bottom-text .small {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}
.p-service-problem__bottom-text .small.worry-icon {
  position: relative;
}
.p-service-problem__bottom-text .small.worry-icon::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17.625rem;
  height: 3.25rem;
  background: url(../images/icon/worry-double-icon.svg) no-repeat center center/contain;
}
.p-service-problem__bottom-text .number {
  color: #1CCEC7;
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-service-problem__bottom-text .number {
    font-size: 2.5rem;
  }
}

.p-service-problem__bottom-hl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background-color: #1CCEC7;
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .p-service-problem__bottom-hl {
    font-size: 1.375rem;
    padding-inline: 0.5rem;
  }
}

.p-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .p-service__inner {
    gap: 2rem;
  }
}

.p-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .p-service__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.p-service__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
@media (max-width: 768px) {
  .p-service__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.375rem);
            flex: 0 0 calc(50% - 0.375rem);
  }
}

.p-service__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  height: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .06);
          box-shadow: 0 0.125rem 0.5rem rgba(46, 46, 46, .06);
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.p-service__card:hover {
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
  -webkit-box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .12);
          box-shadow: 0 0.375rem 1rem rgba(46, 46, 46, .12);
}

.p-service__image {
  width: 100%;
  aspect-ratio: 261/164;
  border-radius: 0.1875rem;
  overflow: hidden;
}
.p-service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-service__footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.25rem;
  }
}

.p-service__name {
  color: #2E2E2E;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-service__more {
  color: #1CCEC7;
  font-size: 0.875rem;
  line-height: 1.6;
  text-decoration: underline;
  white-space: nowrap;
}

@media (min-width: 960px) {
  /* #sidebar と .l-sidebar は同一要素（<aside id="sidebar" class="l-sidebar">）。
     親テーマが ID で position:relative を当てているため、クラスでは詳細度で負ける。
     同じ ID セレクタで sticky を上書きする */
  #sidebar.l-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 5rem;
    align-self: start;
  }
}

.p-side-contact {
  background-color: rgba(28, 206, 199, .07);
  border: 0.0625rem solid rgba(28, 206, 199, .2);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.p-side-contact__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E2E2E;
  text-align: center;
  margin-bottom: 0.875rem;
}
.p-side-contact__lead {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #2E2E2E;
  margin-bottom: 1rem;
}
.p-side-contact .c-contact__row {
  display: block;
}
.p-side-contact .c-contact__row + .c-contact__row {
  margin-top: 0.875rem;
}
.p-side-contact .c-contact__label {
  width: 100%;
  padding-top: 0;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
}
.p-side-contact .c-contact__req {
  font-size: 0.6875rem;
}
.p-side-contact .c-contact__field input,
.p-side-contact .c-contact__field textarea,
.p-side-contact .c-contact__field select {
  background-color: #fff;
  padding: 0.5625rem 0.75rem;
  font-size: 0.875rem;
}
.p-side-contact .c-contact__field input,
.p-side-contact .c-contact__field select {
  height: 2.5rem;
}
.p-side-contact .c-contact__field textarea {
  height: 7.5rem;
}
.p-side-contact .c-contact__foot {
  margin-top: 1rem;
  text-align: center;
}
.p-side-contact .c-contact__privacy {
  font-size: 0.75rem;
  margin-bottom: 0.625rem;
}
.p-side-contact .c-contact__privacy a {
  color: #2E2E2E;
}
.p-side-contact .c-contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-side-contact .wpcf7-submit {
  display: block;
  width: 100%;
  /* 右は矢印のぶん広く取るが、左も同じ値にしないと文字がボタン中央からずれる */
  padding: 0.6875rem 2.5rem;
  background-color: #1CCEC7;
  background-image: url(../images/icon/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.p-side-contact .wpcf7-submit:hover {
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(46, 46, 46, .18);
          box-shadow: 0 0.25rem 0.75rem rgba(46, 46, 46, .18);
}
.p-side-contact .wpcf7-response-output {
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
}
.p-side-contact .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.p-spMenu .c-spnav a::before {
  content: none;
}

.p-spMenu .c-spnav .has-mega-menu > a {
  position: relative;
  cursor: pointer;
}
.p-spMenu .c-spnav .has-mega-menu > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p-spMenu .c-spnav .has-mega-menu.is-open > a::after {
  -webkit-transform: translateY(-30%) rotate(-135deg);
          transform: translateY(-30%) rotate(-135deg);
}
.p-spMenu .c-spnav .has-mega-menu > .sub-menu {
  display: none;
}
.p-spMenu .c-spnav .has-mega-menu > .sub-menu a {
  padding-left: 1.25rem;
}

.p-target__body {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .p-target__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-target__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32.75rem;
}
@media (max-width: 768px) {
  .p-target__image {
    width: 100%;
  }
}
.p-target__image img {
  width: 100%;
  height: 23.4375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}
@media (max-width: 768px) {
  .p-target__image img {
    height: auto;
    aspect-ratio: 524/375;
  }
}

.p-target__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-target__item {
  position: relative;
  padding-left: 1.4375rem;
  padding-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: #2E2E2E;
  border-bottom: 0.0625rem dashed #1CCEC7;
}
.p-target__item:not(:first-child) {
  margin-top: 1rem;
}
.p-target__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #FF7752;
  border-radius: 0.0625rem;
}
@media (max-width: 768px) {
  .p-target__item {
    font-size: 1rem;
  }
}

.p-test {
  color: red;
  font-size: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

.p-faq__cat-head {
  margin-top: 0;
  padding-top: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2E2E2E;
}
@media (max-width: 768px) {
  .p-faq__cat-head {
    font-size: 1.25rem;
    padding-top: 2rem;
  }
}

.p-top-faq__list {
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .p-top-faq__list {
    margin-top: 2rem;
  }
}

.p-top-faq__item {
  background-color: #fff;
  border-radius: 0.3125rem;
  overflow: hidden;
}

.p-top-faq__q {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 4rem 1.25rem 2.875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #2E2E2E;
  cursor: pointer;
  list-style: none;
}
@media (max-width: 768px) {
  .p-top-faq__q {
    padding: 1.25rem 2.5rem 1rem 1.25rem;
  }
}
.p-top-faq__q .p-top-faq__q-title {
  margin: 0;
  font: inherit;
  color: inherit;
}
.p-top-faq__q::-webkit-details-marker {
  display: none;
}
.p-top-faq__q::before {
  content: "Q.";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #1CCEC7;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}
.p-top-faq__q::after {
  content: "";
  position: absolute;
  top: 2.375rem;
  right: 2.875rem;
  width: 0.6875rem;
  height: 0.6875rem;
  border-right: 0.125rem solid #1CCEC7;
  border-bottom: 0.125rem solid #1CCEC7;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 768px) {
  .p-top-faq__q::after {
    top: 1.625rem;
    right: 1.25rem;
  }
}

.p-top-faq__item[open] .p-top-faq__q::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.p-top-faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1.25rem 2.875rem 2rem;
  border-top: 0.0625rem solid #d6d6d6;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2E2E2E;
}
@media (max-width: 768px) {
  .p-top-faq__a {
    padding: 1.25rem 1.25rem 1.25rem;
  }
}
.p-top-faq__a::before {
  content: "A.";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FF7752;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

.p-top-feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .p-top-feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-top-feature__item + .p-top-feature__item {
  margin-top: 8.125rem;
}
@media (max-width: 768px) {
  .p-top-feature__item + .p-top-feature__item {
    margin-top: 3.75rem;
  }
}

.p-top-feature__item-image {
  width: 34.625rem;
  border-radius: 0.1875rem;
  overflow: hidden;
}
.p-top-feature__item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 554/350;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-top-feature__item-image {
    width: 100%;
  }
}

.p-top-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-top-feature__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.55;
  padding-left: 2.875rem;
  position: relative;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .p-top-feature__title {
    padding-left: 2rem;
    font-size: 1.5rem;
  }
}
.p-top-feature__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.375rem;
  height: 2.375rem;
  background-image: url(../images/icon/gaiheki.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-top-feature__title::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-top-feature__title.--yane::before {
  background-image: url(../images/icon/yane.svg);
}

.p-top-feature__title.--reform::before {
  background-image: url(../images/icon/reform.svg);
}

.p-top-feature__title.--amamori::before {
  background-image: url(../images/icon/amamori.svg);
}

.p-top-feature__title.--bousui::before {
  background-image: url(../images/icon/bousui.svg);
}

.p-top-feature__text {
  margin-top: 0.5rem;
}

.p-top-feature__list {
  margin-top: 1.5rem;
}

.p-top-feature__button {
  margin-top: 1rem;
  margin-inline: auto;
}

.p-top-problem__list {
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .p-top-problem__list {
    margin-top: 1.5rem;
  }
}

.p-top-staff__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-staff__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.5rem;
  }
}

.p-top-staff__card {
  width: calc(50% - 0.625rem);
  background-color: #F0FBF5;
  border-radius: 0.1875rem;
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-staff__card {
    width: 100%;
    padding: 1rem;
  }
}

.p-top-staff__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-staff__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-top-staff__image {
  width: 9.25rem;
  height: 9.25rem;
  border-radius: 0.1875rem;
  overflow: hidden;
  /* 資格タグの数が多いカード（梶川さん）で枠が横に押し潰され、
     写真が小さく見えていたため縮小を禁止する（2026-07-30） */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top-staff__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-staff__title {
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-top-staff__title {
    display: block;
    text-align: center;
  }
}

.p-top-staff__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-staff__name {
    text-align: center;
    font-size: 1.5rem;
  }
}

.p-top-staff__tags {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-staff__tags {
    text-align: center;
  }
}

.p-top-staff__message {
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #1CCEC7;
}

.p-top-staff__message-lead {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

.p-top-staff__message-lead-text {
  font-weight: 400;
  line-height: 1.85;
  display: inline-block;
  margin-top: 0.25rem;
}

.p-top-staff__qualifications {
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #1CCEC7;
}

.p-top-staff__qualifications-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-top-staff__qualifications-items {
  margin-top: 0.75rem;
}

.p-top-staff__history {
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}

.p-top-staff__history-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-top-staff__history-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  display: inline-block;
  margin-top: 0.25rem;
}

.p-voice__cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-voice__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-voice__card:only-child {
  grid-column: 1/-1;
  justify-self: center;
  width: 23.75rem;
}
@media screen and (max-width: 768px) {
  .p-voice__card:only-child {
    width: 100%;
  }
}

.p-voice__link {
  display: block;
  color: #2E2E2E;
}
.p-voice__link:hover .p-voice__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-voice__link:hover .p-voice__name {
  color: #1CCEC7;
}

.p-voice__image {
  border-radius: 0.1875rem;
  overflow: hidden;
  width: 23.75rem;
}
@media screen and (max-width: 768px) {
  .p-voice__image {
    width: 100%;
  }
}
.p-voice__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 380/240;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-voice__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F1F7F4;
}

.p-voice__tags {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.p-voice__name {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-voice__name {
    font-size: 1rem;
  }
}

.p-voice__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.p-voice__more {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-voice__more {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

/* 英字フォント（Montserrat）適用ユーティリティ。
   common/_reset.scss の `* { font-family: ...!important }` が全要素を
   Noto Sans JP に固定しているため、クラス＋!important で上書きする。
   使い方: <p class="u-font-en">2026</p> / 見出しや数字などに付与。 */
.u-font-en,
.font-en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif !important;
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */

/* Cloudflare Turnstile（CF7標準インテグレーション）の配置
   ウィジェットが左寄せで出るため、送信ボタンと同じく左右中央に揃える。
   （2026-07-30 代表指示。位置はフォーム側で [submit] の直前に配置） */
.wpcf7-form .wpcf7-turnstile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-form .wpcf7-turnstile {
    margin-block: 1.25rem;
  }
}
/* Turnstile の iframe は 300px 固定幅で縮まないため、
   幅の狭いサイドバーのフォーム内では縮小して収める */
.p-side-contact .wpcf7-turnstile {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transform-origin: center;
          transform-origin: center;
}
