@charset "UTF-8";
/* =================================
  Inc
================================= */
:root {
  --content-width: 1120px;
  --padding-sp: calc(15 / 375 * 100%);
  --padding-pc: calc(40 / 1440 * 100%);
}

:root {
  --main-color: #40B7B7;
  --text-color: #242424;
  --border-color: #B9BEC2;
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #F6F6F6;
  --orange-color: #FF8A45;
  --light-orange-color: #FCE6D9;
  --green-color: #58C477;
  --yellow-green-color: #91D226;
  --light-green-color: #EAF8F8;
  --blue-color: #2DA2C0;
  --light-blue-color: #3BB0FF;
  --red-color: #FF7073;
  --pink-color: #FF7AA9;
  --yellow-color: #F6C204;
  --baby-yellow-color: #FFF299;
  --purple-color: #8781E3;
  --gradient-color1: linear-gradient(90deg, #5968c2 0%, #599cc2 52.08%, #59c2b4 100%);
}

:root {
  --font-zenkaku-gothic: "Zen Kaku Gothic New", sans-serif;
  --font-barlow: "Barlow", sans-serif;
}

:root {
  --transition: all 0.3s ease-out;
}

:root {
  --header-height: calc(130 / 16 * 1rem);
  --header-height-sp: calc(62 / 16 * 1rem);
}

/* =================================
  Foundation
================================= */
/*
  Reset
  リセットCSS、プロジェクトの基本スタイルを定義
---------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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

blockquote,
q {
  quotes: none;
}

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

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

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* =================================
  Inc
================================= */
/*
  Base
---------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

:root {
  /* テキストの折り返し設定 */
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  -ms-hyphens: auto;
      hyphens: auto;
  /* ハイフンで単語を分割 */
  /* フォントサイズの調整 */
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* フォントサイズをユーザーの設定に合わせる */
  -webkit-text-size-adjust: 100%;
  /* フォントサイズをユーザーの設定に合わせる */
  /* タップ時のハイライト無効化 */
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;
}

@media (max-width: 1200px) {
  html {
    font-size: max(1.3333333333vw, 10px);
  }
}
@media (max-width: 767px) {
  html {
    font-size: revert;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: var(--font-zenkaku-gothic);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.4;
  text-align: left;
  color: var(--text-color);
  overflow-x: clip;
}

/* インタラクティブ要素のタッチ操作最適化 */
:where(a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea) {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.small {
  font-size: 1em;
}

/*画像の下余白対策*/
img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*リンク*/
:where(a) {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  :where(a[href*="tel:"]) {
    pointer-events: none;
    text-decoration: none;
  }
}

/* =================================
  Layout
================================= */
/* =================================
  Inc
================================= */
/*************************************************
全体のラッパーのスタイル
*************************************************/
.l-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 100vh;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .l-wrapper {
    grid-template-columns: initial;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
ヘッダー関連のスタイル
*************************************************/
.l-header {
  padding-top: 3rem;
  padding-bottom: 4.4375rem;
  padding-inline: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .l-header {
    display: none;
  }
}

.l-header__logo {
  display: grid;
  place-items: center;
  width: 11.0625rem;
  margin-inline: auto;
}

.l-header__logo-img {
  width: 100%;
  height: auto;
}

.l-header__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.l-header__sns {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 0.6875rem;
  margin-top: 2.125rem;
  padding-bottom: 1.5rem;
}

.l-header__sns-text {
  font-family: var(--font-barlow);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}

.l-header__sns-text::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 0.75rem;
  background-color: var(--text-color);
  left: -0.875rem;
  top: 50%;
  translate: 0 -50%;
  rotate: -30deg;
  border-radius: 999px;
}

.l-header__sns-text::after {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 0.75rem;
  background-color: var(--text-color);
  right: -0.875rem;
  top: 50%;
  translate: 0 -50%;
  rotate: 30deg;
  border-radius: 999px;
}

.l-header__sns-links {
  display: grid;
  grid-template-columns: repeat(2, 2.5rem);
  gap: 1rem;
}

.l-header__sns-link {
  display: block;
}

.l-header__cta {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

/* =================================
  Inc
================================= */
/*************************************************
SP用：ヘッダー関連のスタイル
*************************************************/
.l-sp-header {
  display: none;
}
@media (max-width: 767px) {
  .l-sp-header {
    display: grid;
    grid-template-columns: auto auto 3.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height-sp);
    -webkit-box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.3);
    padding-left: 0.8125rem;
    z-index: 1000;
    background-color: var(--white-color);
  }
}

.l-sp-header__logo {
  display: grid;
  justify-items: center;
  width: 5rem;
  gap: 0.125rem;
}

.l-sp-header__logo-img {
  width: 100%;
  height: auto;
}

.l-sp-header__logo-text {
  font-size: 0.4375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.l-sp-header__cta {
  display: grid;
  grid-template-columns: repeat(3, 3.875rem);
  height: 100%;
  margin-left: auto;
}

.l-sp-header__cta-link {
  display: grid;
  place-items: center;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0.375rem;
  height: 100%;
}
.l-sp-header__cta-link--tel {
  background-color: var(--main-color);
}
.l-sp-header__cta-link--contact {
  background-color: var(--orange-color);
}
.l-sp-header__cta-link--line {
  background-color: var(--green-color);
}

.l-sp-header__cta-text {
  color: var(--white-color);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  -ms-flex-item-align: end;
      align-self: end;
}

.l-sp-header__cta-icon {
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1;
  -ms-flex-item-align: start;
      align-self: start;
}

/* =================================
  Inc
================================= */
/*************************************************
SP用：ドロワーメニュー関連のスタイル
*************************************************/
.l-drawer__icon {
  height: 100%;
  display: grid;
  place-items: center;
  gap: 0.3125rem;
  background-color: var(--white-color);
}

.l-drawer__icon--bar {
  width: 1.5rem;
  display: grid;
  gap: 0.3125rem;
  align-self: end;
}

.l-drawer__icon--bar1,
.l-drawer__icon--bar2,
.l-drawer__icon--bar3 {
  height: 1px;
  scale: 1 1.5;
  background-color: var(--black-color);
  -webkit-transition: rotate 0.3s ease, translate 0.3s ease, opacity 0.3s ease;
  transition: rotate 0.3s ease, translate 0.3s ease, opacity 0.3s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar1 {
  rotate: 45deg;
  translate: 0 0.375rem;
}
.l-drawer__icon.js-show .l-drawer__icon--bar2 {
  opacity: 0;
  visibility: hidden;
}
.l-drawer__icon.js-show .l-drawer__icon--bar3 {
  rotate: -45deg;
  translate: 0 -0.375rem;
}

.l-drawer__icon-text {
  font-size: 0.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: var(--font-barlow);
  -ms-flex-item-align: start;
      align-self: start;
  color: var(--text-color);
}

.l-drawer {
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: -webkit-clip-path 1s ease;
  transition: -webkit-clip-path 1s ease;
  transition: clip-path 1s ease;
  transition: clip-path 1s ease, -webkit-clip-path 1s ease;
  padding-block: 2rem;
  padding-inline: 1.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow-y: auto;
  z-index: 1000;
  height: calc(100dvh - var(--header-height-sp));
}

.l-drawer.js-show {
  -webkit-clip-path: inset(0 0 0% 0);
          clip-path: inset(0 0 0% 0);
}

.l-drawer__inner {
  min-height: 120%;
}

.l-drawer .p-main-nav {
  width: 15rem;
  margin-inline: auto;
}

.l-drawer__cta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 10.375rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-drawer__cta-link {
  color: var(--white-color);
  border-radius: 0.75rem;
  height: 4.5rem;
  padding-inline: 0.5rem;
  padding-block: 0.8125rem;
  text-align: center;
}
.l-drawer__cta-link--tel {
  background-color: var(--main-color);
}
.l-drawer__cta-link--line {
  background-color: var(--green-color);
}
.l-drawer__cta-link--contact {
  background-color: var(--orange-color);
}
.l-drawer__cta-link--zoom {
  background-color: var(--blue-color);
}

.l-drawer__cta-link--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  gap: 0.25rem;
}

.l-drawer__cta-link--tel .l-drawer__cta-icon {
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 0.125rem;
}

.l-drawer__cta-num {
  font-size: 1.1875rem;
  font-weight: 600;
  font-family: var(--font-barlow);
  line-height: 1;
  letter-spacing: 0.0498421053em;
}

.l-drawer__cta-text--tel {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
}

.l-drawer__cta-link--line,
.l-drawer__cta-link--contact,
.l-drawer__cta-link--zoom {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1.25rem;
  padding-left: 0.875rem;
}
.l-drawer__cta-link--line .l-drawer__cta-icon,
.l-drawer__cta-link--contact .l-drawer__cta-icon,
.l-drawer__cta-link--zoom .l-drawer__cta-icon {
  width: 100%;
}

.l-drawer__cta-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.l-drawer__logo {
  margin-top: 1.5rem;
  width: 11.0625rem;
  margin-inline: auto;
}

.l-drawer__logo-img {
  width: 100%;
  height: auto;
}

.l-drawer__company {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.875rem;
}

.l-drawer__company-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.l-drawer__company-address,
.l-drawer__company-time {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.l-drawer__sns {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 2rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.l-drawer__bottom {
  margin-top: 1.375rem;
  padding-inline: 0.75rem;
}

.l-drawer__bottom-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.l-drawer__bottom-links {
  margin-top: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.l-drawer__bottom-link {
  position: relative;
}
.l-drawer__bottom-link:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0.5rem;
  background-color: var(--text-color);
  top: 55%;
  right: -0.4375rem;
  translate: -50% -50%;
}

/* =================================
  Inc
================================= */
/*************************************************
メインコンテンツエリアのスタイル
*************************************************/
.l-main {
  width: 100%;
  overflow-x: hidden;
}

/* =================================
  Inc
================================= */
/*************************************************
フッター関連のスタイル
*************************************************/
.l-footer {
  background-color: var(--main-color);
  padding-top: 3.5rem;
  padding-bottom: 3.75rem;
  overflow-x: hidden;
}

.l-footer__inner {
  max-width: calc(1340px + 5rem);
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media (max-width: 767px) {
  .l-footer__inner {
    padding-inline: 1.875rem;
  }
}
@media (max-width: 480px) {
  .l-footer__inner {
    padding-inline: 0;
  }
}

.l-footer__head {
  display: grid;
  gap: 2.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  justify-items: center;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-footer__head {
    gap: 1.625rem;
  }
}

.l-footer__microcopy {
  padding-inline: 1.5rem;
  padding-block: 0.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--white-color);
  border-radius: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-footer__microcopy {
    padding-block: 0.4375rem;
    width: 100%;
    max-width: 20.375rem;
    text-align: center;
    line-height: 1.2;
    font-size: 0.875rem;
    border-radius: 1.25rem;
  }
}

.l-footer__microcopy::after {
  position: absolute;
  content: "";
  bottom: 0.1875rem;
  left: 50%;
  translate: -50% 100%;
  width: 1.5rem;
  height: 1.4375rem;
  background-color: var(--white-color);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media (max-width: 767px) {
  .l-footer__microcopy::after {
    width: 0.9375rem;
    height: 0.875rem;
  }
}

.l-footer__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .l-footer__title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.l-footer__cta {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 1350px) {
  .l-footer__cta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .l-footer__cta {
    display: none;
  }
}

.l-footer__cta-item {
  background-color: var(--white-color);
  border-radius: 1rem;
  padding-block: 2.5rem;
  padding-inline: 1.75rem;
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0.75rem;
  max-width: 296px;
}

.l-footer__cta-item-title {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}

.l-footer__bottom {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 11.0625rem auto auto;
}
@media (max-width: 767px) {
  .l-footer__bottom {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    gap: 2rem;
  }
}

.l-footer__logo {
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .l-footer__logo {
    width: 11.0625rem;
    margin-inline: auto;
  }
}

.l-footer__logo-img {
  width: 100%;
  height: auto;
}

.l-footer__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.l-footer__company {
  margin-left: 1.375rem;
  display: grid;
  gap: 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .l-footer__company {
    margin-inline: auto;
  }
}

.l-footer__company-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.l-footer__company-address,
.l-footer__company-time {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

.l-footer__sns {
  display: grid;
  grid-template-columns: repeat(2, 2rem);
  gap: 1rem;
}
@media (max-width: 767px) {
  .l-footer__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__sns-item {
  aspect-ratio: 1;
}
.l-footer__sns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__nav-wrapper {
  display: grid;
  gap: 2rem;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .l-footer__nav-wrapper {
    display: none;
  }
}

.l-footer__nav {
  display: grid;
  gap: 0.875rem;
}

.l-footer__nav-head {
  font-weight: 700;
}

.l-footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.l-footer__nav-item {
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
  line-height: 1;
}

.l-footer__nav-item:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -0.5rem;
  translate: 50% -50%;
  width: 1px;
  height: 0.5rem;
  background-color: var(--text-color);
}

.l-footer__nav-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}
.l-footer__nav-link:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
  bottom: -0.25rem;
  left: 0;
  scale: 0 1;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    color: var(--white-color);
  }
  .l-footer__nav-link:hover::after {
    scale: 1 1;
  }
}
.l-footer__copyright {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 500;
}

/* =================================
  Inc
================================= */
/*************************************************
下層ページ：インナーのスタイル
*************************************************/
.l-lower-inner {
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .l-lower-inner {
    padding-right: 0;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
コンテンツヘッダー関連のスタイル
*************************************************/
.l-contents-header {
  padding-block: 1.125rem;
  padding-inline: 1.25rem;
}
@media (max-width: 767px) {
  .l-contents-header {
    display: none;
  }
}

.l-contents-header__cta {
  display: grid;
  grid-template-columns: 12.5rem 14.0625rem 10.3125rem 10.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1rem;
  margin-left: auto;
}

.l-contents-header__cta-call {
  line-height: 1;
}

.l-contents-header__cta-call-num {
  font-family: var(--font-barlow);
  font-size: 1.5rem;
  font-weight: 600;
}

.l-contents-header__cta-call-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  translate: 0 -50%;
}

/* =================================
  Inc
================================= */
/*************************************************
SP用：下部メニューのスタイル
*************************************************/
.l-sp-bottom-menu {
  display: none;
}
@media (max-width: 767px) {
  .l-sp-bottom-menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 500;
    overflow: hidden;
    -webkit-filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
  }
}

.l-sp-bottom-menu__summary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-auto-flow: column;
  gap: 0.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--main-color);
  margin-inline: auto;
  border-radius: 1.25rem 1.25rem 0 0;
  cursor: pointer;
  list-style: none;
  padding-inline: 0.8125rem;
  padding-block: 0.625rem 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-color);
}

.l-sp-bottom-menu__summary::-webkit-details-marker {
  display: none;
}

.l-sp-bottom-menu__summary-icon {
  width: 1.125rem;
  height: auto;
  aspect-ratio: 1;
  rotate: 180deg;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
  overflow: visible;
}

.l-sp-bottom-menu[open] .l-sp-bottom-menu__summary-icon {
  rotate: 0deg;
}

.l-sp-bottom-menu__items {
  background-color: var(--main-color);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.5rem;
  padding-inline: 1rem;
  padding-block: 1.1875rem 0.8125rem;
}

.l-sp-bottom-menu__item:nth-child(-n+4) {
  grid-column: span 3;
}

.l-sp-bottom-menu__item:nth-child(n+5) {
  grid-column: span 4;
}

.l-sp-bottom-menu__link {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  padding-block: 0.5rem;
  padding-inline: 0.375rem;
}

.l-sp-bottom-menu__link-text {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}

.l-sp-bottom-menu__link-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
}

/* =================================
  Inc
================================= */
/*************************************************
メインナビゲーション関連のスタイル
*************************************************/
.l-main-nav {
  width: 100%;
}

.l-main-nav__item {
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.l-main-nav__item:last-child {
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px), repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: 100% 1px, 100% 1px;
}

.l-main-nav__summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1rem;
}

.l-main-nav__summary::-webkit-details-marker {
  display: none;
}

.l-main-nav__details[open] .l-main-nav__summary::after {
  rotate: 180deg;
}

.l-main-nav__details.is-animating > .l-main-nav__summary {
  pointer-events: none;
}

.l-main-nav__summary::before,
.l-main-nav__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  width: 0.875rem;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
  translate: 0 -50%;
}

.l-main-nav__summary::after {
  rotate: 90deg;
}

.l-main-nav__sublist {
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out, opacity 0.3s ease-out;
  transition: height 0.3s ease-out, opacity 0.3s ease-out;
}

.l-main-nav__sublink {
  display: block;
  padding: 1rem;
  width: 60%;
  margin-inline: auto;
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 50px 1px;
}

.l-main-nav__link {
  display: block;
  padding: 1rem;
}

.l-main-nav__link-text {
  -webkit-transition: color 0.3s ease, scale 0.3s ease;
  transition: color 0.3s ease, scale 0.3s ease;
  position: relative;
  display: inline-block;
}

.l-main-nav__link-text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  bottom: -0.25rem;
  left: 0;
  scale: 0 1.5;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media (any-hover: hover) {
  .l-main-nav__summary:hover > .l-main-nav__link-text,
  .l-main-nav__link:hover .l-main-nav__link-text,
  .l-main-nav__sublink:hover .l-main-nav__link-text {
    color: var(--main-color);
  }
  .l-main-nav__summary:hover > .l-main-nav__link-text::after,
  .l-main-nav__sublink:hover .l-main-nav__link-text::after,
  .l-main-nav__link:hover .l-main-nav__link-text::after {
    scale: 1 1.5;
  }
}
/* =================================
  Object
================================= */
/* =================================
  Inc
================================= */
/*************************************************
CTAボタンのスタイル
*************************************************/
.c-cta-btn {
  width: 100%;
  max-width: 15rem;
  color: var(--white-color);
  border-radius: 1rem;
  min-height: 4.375rem;
  line-height: 1;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  padding-inline: 1.125rem 0.625rem;
  border-width: 2px;
  border-style: solid;
  text-align: center;
}

.c-cta-btn--call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--main-color);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0rem;
  padding-top: 0.8125rem;
  padding-bottom: 1rem;
  border-color: var(--main-color);
}
.c-cta-btn--call .c-cta-btn__icon {
  width: 1rem;
  height: auto;
  margin-right: 0.25rem;
}
.c-cta-btn--call .c-cta-btn__num {
  font-family: var(--font-barlow);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.c-cta-btn--call .c-cta-btn__text {
  font-size: 0.75rem;
  font-weight: 500;
}

.c-cta-btn--contact,
.c-cta-btn--line,
.c-cta-btn--zoom {
  display: grid;
  grid-template-columns: 1fr 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.c-cta-btn--contact .c-cta-btn__icon,
.c-cta-btn--line .c-cta-btn__icon,
.c-cta-btn--zoom .c-cta-btn__icon {
  width: 100%;
}

.c-cta-btn--contact {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
}

.c-cta-btn--line {
  background-color: var(--green-color);
  border-color: var(--green-color);
}

.c-cta-btn--zoom {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
}

.c-cta-btn.c-cta-btn--service {
  border-color: var(--white-color);
  max-width: 18.875rem;
  min-height: 5.5rem;
}
@media (max-width: 767px) {
  .c-cta-btn.c-cta-btn--service {
    height: 4.375rem;
    min-height: initial;
    padding-inline: 0.5rem;
    padding-block: 0.8125rem;
    width: 12.5rem;
  }
}
@media (max-width: 480px) {
  .c-cta-btn.c-cta-btn--service {
    width: 10.625rem;
  }
}
.c-cta-btn.c-cta-btn--service.c-cta-btn--call .c-cta-btn__icon {
  width: 1.1875rem;
}
@media (max-width: 767px) {
  .c-cta-btn.c-cta-btn--service.c-cta-btn--call .c-cta-btn__icon {
    -ms-flex-item-align: end;
        align-self: end;
    width: 0.75rem;
    margin-bottom: 0.125rem;
  }
}
.c-cta-btn.c-cta-btn--service.c-cta-btn--call .c-cta-btn__num {
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  .c-cta-btn.c-cta-btn--service.c-cta-btn--call .c-cta-btn__num {
    font-size: 1.1875rem;
  }
}
.c-cta-btn.c-cta-btn--service.c-cta-btn--call .c-cta-btn__text {
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .c-cta-btn.c-cta-btn--service.c-cta-btn--call .c-cta-btn__text {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}
.c-cta-btn.c-cta-btn--service.c-cta-btn--contact, .c-cta-btn.c-cta-btn--service.c-cta-btn--line, .c-cta-btn.c-cta-btn--service.c-cta-btn--zoom {
  font-size: 1.1875rem;
  grid-template-columns: 1fr 1.75rem;
  padding-right: 1.0625rem;
}
@media (max-width: 767px) {
  .c-cta-btn.c-cta-btn--service.c-cta-btn--contact, .c-cta-btn.c-cta-btn--service.c-cta-btn--line, .c-cta-btn.c-cta-btn--service.c-cta-btn--zoom {
    font-size: 1rem;
    grid-template-columns: 1fr 1.25rem;
    padding-right: 0.625rem;
    line-height: 1.25;
  }
}

@media (hover: hover) {
  .c-cta-btn:hover {
    background: var(--white-color);
  }
  .c-cta-btn--call:hover {
    color: var(--main-color);
    border-color: var(--main-color);
  }
  .c-cta-btn--contact:hover {
    color: var(--orange-color);
    border-color: var(--orange-color);
  }
  .c-cta-btn--contact:hover path {
    stroke: var(--white-color);
  }
  .c-cta-btn--line:hover {
    color: var(--green-color);
    border-color: var(--green-color);
  }
  .c-cta-btn--line:hover path {
    stroke: var(--white-color);
  }
  .c-cta-btn--zoom:hover {
    color: var(--blue-color);
    border-color: var(--blue-color);
  }
  .c-cta-btn--zoom:hover path {
    stroke: var(--white-color);
  }
}
.l-contents-header__cta .c-cta-btn {
  width: 100%;
}
.l-contents-header__cta .c-cta-btn--contact,
.l-contents-header__cta .c-cta-btn--line,
.l-contents-header__cta .c-cta-btn--zoom {
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  gap: 0.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  padding-inline: 1.1875rem 0.625rem;
  font-size: 0.875rem;
  min-height: 2.875rem;
}
.l-contents-header__cta .c-cta-btn__icon {
  width: 100%;
  height: auto;
}

/* =================================
  Inc
================================= */
/*************************************************
共通：ユーティリティリンクのスタイル
*************************************************/
.c-util-link {
  display: grid;
  grid-template-columns: 1fr 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 26.5rem;
  margin-inline: auto;
  padding-inline: 1.5rem 1rem;
  padding-block: 1.25rem;
  background-color: var(--main-color);
  border-radius: 2.1875rem;
  border: 3px solid var(--main-color);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .c-util-link {
    grid-template-columns: 1fr 1.5rem;
    width: 100%;
    max-width: 326px;
    padding-inline: 1.125rem;
    padding-block: 0.75rem;
    border-radius: 1.875rem;
  }
}

.c-util-link__text {
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-align: center;
}
@media (max-width: 767px) {
  .c-util-link__text {
    font-size: 1rem;
    line-height: 1.125;
  }
}

.c-util-link__icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
}
@media (max-width: 767px) {
  .c-util-link__icon {
    width: 1.5rem;
  }
}
.c-util-link__icon circle {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.c-util-link__icon path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

@media (any-hover: hover) {
  .c-util-link:hover {
    background-color: var(--white-color);
  }
  .c-util-link:hover .c-util-link__text {
    color: var(--main-color);
  }
  .c-util-link:hover .c-util-link__icon circle {
    fill: var(--main-color);
  }
  .c-util-link:hover .c-util-link__icon path {
    stroke: var(--white-color);
  }
}
/* =================================
  Inc
================================= */
/*************************************************
セクション共通テキストのスタイル
*************************************************/
.c-section-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .c-section-text {
    font-size: 1rem;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
セクション間に挿入する区切り装飾のスタイル
*************************************************/
section:has(.c-section-separator--top) {
  position: relative;
  margin-top: 4rem;
  background-color: var(--light-green-color);
}
@media (max-width: 480px) {
  section:has(.c-section-separator--top) {
    margin-top: 1.25rem;
  }
}

section:has(.c-section-separator--bottom) {
  position: relative;
  margin-bottom: 4rem;
  background-color: var(--light-green-color);
}
@media (max-width: 480px) {
  section:has(.c-section-separator--bottom) {
    margin-bottom: 1.25rem;
  }
}

.c-section-separator {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -1;
  left: 0;
}
.c-section-separator--top {
  top: 0;
  translate: 0 max(-3.9375rem, -98%);
}
@media (max-width: 480px) {
  .c-section-separator--top {
    translate: 0 -1.125rem;
  }
}
.c-section-separator--bottom {
  bottom: 0;
  rotate: 180deg;
  translate: 0 calc(-1 * max(-3.9375rem, -98%));
}
@media (max-width: 480px) {
  .c-section-separator--bottom {
    translate: 0 1.125rem;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
パンくずリストのスタイル
*************************************************/
.c-breadcrumbs {
  margin-top: 1.125rem;
  margin-inline: auto;
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
}
.c-breadcrumbs a {
  color: var(--main-color);
  text-decoration: underline;
}
@media (max-width: 767px) {
  .c-breadcrumbs {
    padding-right: 2rem;
  }
}
.c-breadcrumbs .post {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
}

/* =================================
  Inc
================================= */
/*************************************************
下層ページ：FVのスタイル
*************************************************/
.c-lower-fv {
  width: 100%;
  min-height: 8.75rem;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background-color: var(--light-green-color);
  border-radius: 1.75rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-lower-fv {
    margin-top: calc(var(--header-height-sp) + 1rem);
  }
}

.c-lower-fv__title-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.c-lower-fv__title {
  color: var(--main-color);
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-text-stroke: 0.2em var(--white-color);
  paint-order: stroke fill;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media (max-width: 480px) {
  .c-lower-fv__title {
    font-size: 1.625rem;
  }
}
@media (max-width: 480px) {
  .c-lower-fv__title--error {
    font-size: 1.125rem;
  }
}

.c-lower-fv__illust {
  position: absolute;
  top: 50%;
  right: -1.3125rem;
  translate: 100% -50%;
  width: 8.75rem;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .c-lower-fv__illust {
    width: 6.25rem;
  }
}
@media (max-width: 480px) {
  .c-lower-fv__illust {
    width: 3.75rem;
    right: 0;
  }
}
.c-lower-fv__illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =================================
  Inc
================================= */
/*************************************************
カテゴリーのスタイル
*************************************************/
.c-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white-color);
  border-radius: 0.375rem;
}
@media (max-width: 767px) {
  .c-category {
    font-size: 0.75rem;
    padding-block: 0.375rem;
    padding-inline: 0.5rem;
  }
}
.c-category--gaiheki {
  background-color: var(--red-color);
}
.c-category--interior {
  background-color: var(--pink-color);
}
.c-category--plumbing {
  background-color: var(--orange-color);
}
.c-category--exterior {
  background-color: var(--yellow-color);
}
.c-category--yane {
  background-color: var(--yellow-green-color);
}
.c-category--drone {
  background-color: var(--light-blue-color);
}
.c-category--other {
  background-color: var(--purple-color);
}
.c-category--notice {
  background-color: var(--main-color);
}
.c-category--news {
  background-color: var(--main-color);
}
.c-category--estimate {
  background-color: var(--yellow-green-color);
}

/* =================================
  Inc
================================= */
/*************************************************
ページネーションのスタイル
*************************************************/
.c-pagination__list {
  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.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 480px) {
  .c-pagination__list {
    gap: 0.5rem;
  }
}

.c-pagination__item:not(:has(.dots)) .page-numbers {
  height: 3rem;
  background-color: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
  display: grid;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 480px) {
  .c-pagination__item:not(:has(.dots)) .page-numbers {
    height: 1.875rem;
    width: 1.875rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:not(:has(.dots)) .page-numbers:hover {
    background-color: var(--white-color);
    color: var(--main-color);
  }
}
.c-pagination__item:not(:has(.dots)) .page-numbers.current {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
  pointer-events: none;
}

.c-pagination__list .page-numbers.next,
.c-pagination__list .page-numbers.prev {
  aspect-ratio: initial;
  padding-inline: 0.75rem;
  width: 6.375rem;
  height: 3rem;
}
@media (max-width: 480px) {
  .c-pagination__list .page-numbers.next,
  .c-pagination__list .page-numbers.prev {
    width: 3.5rem;
    height: 1.875rem;
    padding-inline: 0.375rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__list .page-numbers.next:hover .c-pagination__arrow path,
  .c-pagination__list .page-numbers.prev:hover .c-pagination__arrow path {
    stroke: var(--white-color);
  }
  .c-pagination__list .page-numbers.next:hover .c-pagination__arrow circle,
  .c-pagination__list .page-numbers.prev:hover .c-pagination__arrow circle {
    fill: var(--main-color);
  }
}

.c-pagination__list .page-numbers.next {
  grid-template-columns: 1fr 1.25rem;
}
@media (max-width: 480px) {
  .c-pagination__list .page-numbers.next {
    grid-template-columns: 1fr 0.75rem;
  }
}

.c-pagination__list .page-numbers.prev {
  grid-template-columns: 1.25rem 1fr;
}
@media (max-width: 480px) {
  .c-pagination__list .page-numbers.prev {
    grid-template-columns: 0.75rem 1fr;
  }
}

.c-pagination__list .page-numbers.dots {
  pointer-events: none;
  color: transparent;
  font-size: 0;
  line-height: 0;
  width: 0.375rem;
  height: 0.375rem;
  position: relative;
  display: block;
  background-color: var(--border-color);
  border-radius: 50%;
  margin-inline: 0.75rem;
  -webkit-box-shadow: 0.875rem 0 0 0 var(--border-color), -0.875rem 0 0 0 var(--border-color);
          box-shadow: 0.875rem 0 0 0 var(--border-color), -0.875rem 0 0 0 var(--border-color);
}
@media (max-width: 480px) {
  .c-pagination__list .page-numbers.dots {
    margin-inline: 0.5rem;
    width: 0.25rem;
    height: 0.25rem;
    -webkit-box-shadow: 0.625rem 0 0 0 var(--border-color), -0.625rem 0 0 0 var(--border-color);
            box-shadow: 0.625rem 0 0 0 var(--border-color), -0.625rem 0 0 0 var(--border-color);
  }
}

.c-pagination__arrow {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =================================
  Inc
================================= */
/* =================================
  共通：一覧へ戻るボタン
================================= */
.c-back-link {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 26.5rem;
  padding-inline: 1.375rem;
  padding-block: 1.125rem;
  border-radius: 9999px;
  background-color: var(--main-color);
  color: var(--white-color);
  text-align: center;
  line-height: 1;
  border: 2px solid var(--main-color);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 480px) {
  .c-back-link {
    grid-template-columns: 1.5rem 1fr;
    padding-inline: 1.125rem;
    padding-block: 0.75rem;
  }
}

.c-back-link__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
  overflow: visible;
}

.c-back-link__text {
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .c-back-link__text {
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .c-back-link:hover {
    background-color: var(--white-color);
    color: var(--main-color);
  }
  .c-back-link:hover .c-back-link__icon circle {
    fill: var(--main-color);
  }
  .c-back-link:hover .c-back-link__icon path {
    stroke: var(--white-color);
  }
  .c-back-link:hover .c-back-link__text {
    color: var(--main-color);
  }
}
/* =================================
  Inc
================================= */
/*************************************************
共通の表のスタイル
*************************************************/
.c-data-list {
  border-radius: 1rem;
  border: 1px solid var(--main-color);
  overflow: hidden;
}

.c-data-list__item {
  display: grid;
  position: relative;
}

.c-data-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 92.3444976077%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.c-data-list__head {
  background-color: var(--light-green-color);
  -ms-flex-line-pack: center;
      align-content: center;
  height: 100%;
}

.c-data-list__body {
  -ms-flex-line-pack: center;
      align-content: center;
}

/* =================================
  Inc
================================= */
/*************************************************
アクセスセクションのスタイル
*************************************************/
.c-access {
  padding-block: 5rem;
}
@media (max-width: 767px) {
  .c-access {
    padding-block: 2.5rem;
  }
}

.c-access__map {
  margin-top: 2.5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 996/445;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 480px) {
  .c-access__map {
    margin-top: 1.75rem;
    aspect-ratio: 1;
  }
}
.c-access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.c-access__list {
  margin-top: 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .c-access__list {
    margin-top: 1.75rem;
  }
}

.c-access__list-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 1.25rem;
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 50px 1px;
}
@media (max-width: 480px) {
  .c-access__list-item {
    grid-template-columns: initial;
    gap: 1rem;
  }
}

.c-access__list-head {
  font-weight: 700;
}

.c-access__list-body {
  font-weight: 500;
}

.c-access__list-station {
  display: grid;
  gap: 1.25rem;
}

.c-access__list-station-row {
  padding-left: 0.875rem;
  position: relative;
}
.c-access__list-station-row:before {
  position: absolute;
  content: "";
  width: 0.375rem;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--main-color);
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 480px) {
  .c-access__list-station-row--narrow {
    letter-spacing: -0.08em;
    width: 105%;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
共通：カルーセル関連のスタイル
*************************************************/
.c-carousel__swiper-container {
  margin-top: 2.25rem;
}
@media (max-width: 767px) {
  .c-carousel__swiper-container {
    margin-top: 1.25rem;
  }
}

.c-carousel__swiper {
  position: relative;
}

.c-carousel__swiper-slide {
  width: 12.5rem;
}
@media (max-width: 767px) {
  .c-carousel__swiper-slide {
    width: 9.375rem;
  }
}

.c-carousel_item {
  width: 100%;
  display: grid;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .c-carousel_item {
    gap: 0.5rem;
  }
}

.c-carousel_item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}
.c-carousel_item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.c-carousel_item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ここで行数を指定 */
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .c-carousel_item-text {
    font-size: 0.75rem;
  }
}

@media (any-hover: hover) {
  .c-carousel_item:hover .c-carousel_item-text {
    color: var(--main-color);
  }
  .c-carousel_item:hover .c-carousel_item-img img {
    scale: 1.2;
  }
}
.c-carousel__swiper-button--prev,
.c-carousel__swiper-button--next {
  position: absolute;
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  top: 4.5rem;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-carousel__swiper-button--prev,
  .c-carousel__swiper-button--next {
    width: 2.25rem;
    top: 3.625rem;
  }
}

.c-carousel__swiper-button-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}
.c-carousel__swiper-button-icon circle {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.c-carousel__swiper-button-icon path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

@media (any-hover: hover) {
  .c-carousel__swiper-button-icon:hover circle {
    fill: var(--white-color);
  }
  .c-carousel__swiper-button-icon:hover path {
    stroke: var(--main-color);
  }
}
.c-carousel__swiper-button--prev {
  left: 5.25rem;
  rotate: 180deg;
}
@media (max-width: 767px) {
  .c-carousel__swiper-button--prev {
    left: 1rem;
  }
}

.c-carousel__swiper-button--next {
  right: 5.25rem;
}
@media (max-width: 767px) {
  .c-carousel__swiper-button--next {
    right: 1rem;
  }
}

/* =================================
  Inc
================================= */
.c-pickup-works {
  padding-block: 5rem 4.75rem;
}
@media (max-width: 767px) {
  .c-pickup-works {
    padding-block: 2.5rem;
  }
}

.c-pickup-works__top-text {
  margin-top: 2.125rem;
}
@media (max-width: 767px) {
  .c-pickup-works__top-text {
    margin-top: 1.25rem;
  }
}

.c-pickup-works__more-link {
  margin-top: 2.25rem;
}
@media (max-width: 767px) {
  .c-pickup-works__more-link {
    margin-top: 2rem;
  }
}

/* =================================
  Inc
================================= */
.c-pickup-voice {
  padding-block: 1rem;
}
.c-pickup-voice--service {
  padding-top: 5rem;
}
@media (max-width: 480px) {
  .c-pickup-voice--service {
    padding-top: 2.5rem;
  }
}

.c-pickup-voice__top-text {
  margin-top: 2.5rem;
}

.c-pickup-voice__more-link {
  margin-top: 3.25rem;
}
@media (max-width: 767px) {
  .c-pickup-voice__more-link {
    margin-top: 2rem;
  }
}

/* =================================
  Inc
================================= */
/* =================================
スタッフコメント（共通）
================================= */
.c-staff-comment {
  margin-top: 2.625rem;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--light-green-color);
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 480px) {
  .c-staff-comment {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }
}

.c-staff-comment__staff {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  height: auto;
}
@media (max-width: 480px) {
  .c-staff-comment__staff {
    width: 6.25rem;
    margin-inline: auto;
  }
}
.c-staff-comment__staff img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-staff-comment__text {
  margin-left: 2rem;
  padding: 1.5rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  position: relative;
}
@media (max-width: 480px) {
  .c-staff-comment__text {
    margin-left: 0;
    padding: 1rem;
    margin-top: 1.25rem;
  }
}

.c-staff-comment__text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  translate: -100% -50%;
  width: 2rem;
  height: auto;
  aspect-ratio: 32/27;
  background-color: var(--white-color);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media (max-width: 480px) {
  .c-staff-comment__text::before {
    width: 1.5rem;
    top: 0;
    left: 50%;
    translate: -50% -100%;
    -webkit-clip-path: polygon(0 100%, 50% 0%, 100% 100%);
            clip-path: polygon(0 100%, 50% 0%, 100% 100%);
  }
}

.c-staff-comment__text-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .c-staff-comment__text-title {
    font-size: 1rem;
    text-align: center;
  }
}

.c-staff-comment__text-content {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .c-staff-comment__text-content {
    margin-top: 0.75rem;
  }
}

/* =================================
  Inc
================================= */
/* =================================
  Inc
================================= */
/*************************************************
ブロックエディター関連のスタイル
*************************************************/
:where(.is-root-container) {
  color: var(--text-color);
  font-family: "Noto Sans JP";
  /* HTML5 display-role reset for older browsers */
  /* Add Hibiki */
}
:where(.is-root-container) html,
:where(.is-root-container) body,
:where(.is-root-container) div,
:where(.is-root-container) span,
:where(.is-root-container) applet,
:where(.is-root-container) object,
:where(.is-root-container) iframe,
:where(.is-root-container) h1,
:where(.is-root-container) h2,
:where(.is-root-container) h3,
:where(.is-root-container) h4,
:where(.is-root-container) h5,
:where(.is-root-container) h6,
:where(.is-root-container) p,
:where(.is-root-container) blockquote,
:where(.is-root-container) pre,
:where(.is-root-container) a,
:where(.is-root-container) abbr,
:where(.is-root-container) acronym,
:where(.is-root-container) address,
:where(.is-root-container) big,
:where(.is-root-container) cite,
:where(.is-root-container) code,
:where(.is-root-container) del,
:where(.is-root-container) dfn,
:where(.is-root-container) em,
:where(.is-root-container) img,
:where(.is-root-container) ins,
:where(.is-root-container) kbd,
:where(.is-root-container) q,
:where(.is-root-container) s,
:where(.is-root-container) samp,
:where(.is-root-container) small,
:where(.is-root-container) strike,
:where(.is-root-container) strong,
:where(.is-root-container) sub,
:where(.is-root-container) sup,
:where(.is-root-container) tt,
:where(.is-root-container) var,
:where(.is-root-container) b,
:where(.is-root-container) u,
:where(.is-root-container) i,
:where(.is-root-container) center,
:where(.is-root-container) dl,
:where(.is-root-container) dt,
:where(.is-root-container) dd,
:where(.is-root-container) ol,
:where(.is-root-container) ul,
:where(.is-root-container) li,
:where(.is-root-container) fieldset,
:where(.is-root-container) form,
:where(.is-root-container) label,
:where(.is-root-container) legend,
:where(.is-root-container) table,
:where(.is-root-container) caption,
:where(.is-root-container) tbody,
:where(.is-root-container) tfoot,
:where(.is-root-container) thead,
:where(.is-root-container) tr,
:where(.is-root-container) th,
:where(.is-root-container) td,
:where(.is-root-container) article,
:where(.is-root-container) aside,
:where(.is-root-container) canvas,
:where(.is-root-container) details,
:where(.is-root-container) embed,
:where(.is-root-container) figure,
:where(.is-root-container) figcaption,
:where(.is-root-container) footer,
:where(.is-root-container) header,
:where(.is-root-container) hgroup,
:where(.is-root-container) menu,
:where(.is-root-container) nav,
:where(.is-root-container) output,
:where(.is-root-container) ruby,
:where(.is-root-container) section,
:where(.is-root-container) summary,
:where(.is-root-container) time,
:where(.is-root-container) mark,
:where(.is-root-container) audio,
:where(.is-root-container) video,
:where(.is-root-container) textarea {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
:where(.is-root-container) article,
:where(.is-root-container) aside,
:where(.is-root-container) details,
:where(.is-root-container) figcaption,
:where(.is-root-container) figure,
:where(.is-root-container) footer,
:where(.is-root-container) header,
:where(.is-root-container) hgroup,
:where(.is-root-container) menu,
:where(.is-root-container) nav,
:where(.is-root-container) section {
  display: block;
}
:where(.is-root-container) body {
  line-height: 1;
}
:where(.is-root-container) ol,
:where(.is-root-container) ul {
  list-style: none;
  list-style-type: none;
}
:where(.is-root-container) blockquote,
:where(.is-root-container) q {
  quotes: none;
}
:where(.is-root-container) blockquote:before,
:where(.is-root-container) blockquote:after,
:where(.is-root-container) q:before,
:where(.is-root-container) q:after {
  content: "";
  content: none;
}
:where(.is-root-container) table {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(.is-root-container) img {
  width: 100%;
  height: auto;
}
:where(.is-root-container) a {
  text-decoration: none;
}
@media (pointer: fine), (hover: hover) {
  :where(.is-root-container) a:where([href^="tel:"]) {
    pointer-events: none;
  }
}
:where(.is-root-container) *,
:where(.is-root-container) *::before,
:where(.is-root-container) *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-editor.-column {
  margin-top: 2.5rem;
  padding: 2.5rem;
  border-radius: 0.5rem;
  background: var(--white-color);
}
@media (max-width: 767px) {
  .p-editor.-column {
    padding: 1.5rem 0.75rem;
    margin-top: 2rem;
  }
}

.p-editor {
  /* 2. カウンターの定義（ulごとにリセットすることで階層を作る） */
}
.p-editor div#ez-toc-container {
  max-width: 37.5rem;
  margin-inline: auto;
  padding: 1.5rem 2rem;
  position: relative;
  width: 100%;
  border-radius: 1rem;
}
@media (max-width: 480px) {
  .p-editor div#ez-toc-container {
    padding: 1rem 1.5rem;
  }
}
.p-editor div#ez-toc-container .ez-toc-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  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.375rem;
}
@media (max-width: 480px) {
  .p-editor div#ez-toc-container .ez-toc-title {
    font-size: 1rem;
  }
}
.p-editor div#ez-toc-container > nav {
  margin-top: 0.5rem;
}
.p-editor div#ez-toc-container .ez-toc-list {
  display: grid;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .p-editor div#ez-toc-container .ez-toc-list {
    gap: 0.5rem;
  }
}
.p-editor div#ez-toc-container .ez-toc-heading-1 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .p-editor div#ez-toc-container .ez-toc-heading-1 {
    font-size: 1rem;
  }
}
.p-editor div#ez-toc-container .ez-toc-heading-2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.75rem;
}
@media (max-width: 480px) {
  .p-editor div#ez-toc-container .ez-toc-heading-2 {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.p-editor div#ez-toc-container .ez-toc-heading-3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.75rem;
}
@media (max-width: 480px) {
  .p-editor div#ez-toc-container .ez-toc-heading-3 {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}
.p-editor div#ez-toc-container .ez-toc-title-toggle {
  display: none;
}
.p-editor #ez-toc-container ul,
.p-editor #ez-toc-container li {
  padding: 0;
  margin: 0;
}
.p-editor #ez-toc-container ul {
  counter-reset: my-toc-counter; /* カウンター名を定義 */
  padding-left: 1.5em; /* 階層ごとの左側の字下げ幅 */
}
.p-editor #ez-toc-container nav > ul {
  padding-left: 0; /* 一番左端は字下げなし */
}
.p-editor #ez-toc-container li {
  counter-increment: my-toc-counter;
  position: relative;
}
.p-editor #ez-toc-container li > a::before {
  content: counters(my-toc-counter, "-") ". ";
  white-space: nowrap;
  font-weight: 500;
  color: var(--main-color);
  margin-right: 0.25rem;
}

:is(.is-root-container, .p-editor) {
  --wp--preset--font-size--small: calc(14 / 16 * 1em);
  --wp--preset--font-size--medium: calc(16 / 16 * 1em);
  --wp--preset--font-size--large: calc(20 / 16 * 1em);
  --wp--preset--font-size--x-large: calc(24 / 16 * 1em);
}
:is(.is-root-container, .p-editor) > *:first-child {
  margin-top: 0;
}
:is(.is-root-container, .p-editor) > * {
  margin-bottom: 1.25rem;
}
:is(.is-root-container, .p-editor) > h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 1.25rem 0.875rem;
  background-color: var(--light-green-color);
  color: var(--main-color);
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > h2 {
    font-size: 1.25rem;
    padding: 0.375rem 1.125rem;
  }
}
:is(.is-root-container, .p-editor) > h2::before {
  content: "";
  position: absolute;
  top: -0.34375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-color);
}
:is(.is-root-container, .p-editor) > h2::after {
  content: "";
  position: absolute;
  bottom: -0.34375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-color);
}
:is(.is-root-container, .p-editor) > h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.875rem 1.25rem;
  background-color: var(--light-green-color);
  color: var(--main-color);
  position: relative;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > h3 {
    font-size: 1rem;
    padding: 0.375rem 1.125rem;
  }
}
:is(.is-root-container, .p-editor) > h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: url("../../assets/img/common/heading_border.svg") repeat-x left center;
}
:is(.is-root-container, .p-editor) > h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.875rem 1.25rem;
  position: relative;
  color: var(--main-color);
}
:is(.is-root-container, .p-editor) > h4::before {
  content: "";
  background: var(--main-color);
  width: 0.375rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
:is(.is-root-container, .p-editor) p {
  font-weight: 500;
  line-height: 1.8;
}
:is(.is-root-container, .p-editor) p:not([style*=font-size]):not([class*=has-][class*=-font-size]) {
  font-size: 1rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) p:not([style*=font-size]):not([class*=has-][class*=-font-size]) {
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-editor) a {
  color: var(--light-blue-color2);
  text-decoration: underline;
  font-weight: 700;
}
:is(.is-root-container, .p-editor) > ul,
:is(.is-root-container, .p-editor) > ol {
  padding: 1.5rem;
  background: var(--light-blue-color);
  line-height: 2;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > ul,
  :is(.is-root-container, .p-editor) > ol {
    padding: 1rem;
  }
}
:is(.is-root-container, .p-editor) > ul li {
  padding-left: 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > ul li {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-editor) > ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > ul li:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}
:is(.is-root-container, .p-editor) > ul li::before {
  position: absolute;
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: var(--text-color);
  left: 0.1875rem;
  top: 0.875rem;
  border-radius: 50%;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > ul li::before {
    width: 0.25rem;
    height: 0.25rem;
    left: 0.125rem;
    top: 0.75rem;
  }
}
:is(.is-root-container, .p-editor) > ol {
  counter-reset: list-counter;
}
:is(.is-root-container, .p-editor) > ol li {
  counter-increment: list-counter;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.375rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > ol li {
    gap: 0.25rem;
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-editor) > ol li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) > ol li:not(:last-child) {
    margin-bottom: 0.375rem;
  }
}
:is(.is-root-container, .p-editor) > ol li::before {
  left: 0;
  content: counter(list-counter) ".";
  color: var(--text-color);
  font-weight: 700;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) .wp-block-group {
    display: grid;
    gap: 1.25rem;
  }
  :is(.is-root-container, .p-editor) .wp-block-group img {
    width: 100%;
  }
}
:is(.is-root-container, .p-editor) .wp-block-columns {
  padding-bottom: 1.5rem;
}
:is(.is-root-container, .p-editor) strong {
  font-weight: 700;
}
:is(.is-root-container, .p-editor) em {
  font-style: italic;
}
:is(.is-root-container, .p-editor) blockquote {
  position: relative;
  border-radius: 0.25rem;
  background: var(--light-blue-color);
  padding: 2.25rem 3.125rem 3.25rem 4.125rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) blockquote {
    padding: 1.5rem 1.875rem 2rem 2.5rem;
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-editor) blockquote > *:first-child {
  margin-top: 0;
}
:is(.is-root-container, .p-editor) blockquote::before,
:is(.is-root-container, .p-editor) blockquote::after {
  position: absolute;
  color: var(--gray-color4);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) blockquote::before,
  :is(.is-root-container, .p-editor) blockquote::after {
    font-size: 2rem;
  }
}
:is(.is-root-container, .p-editor) blockquote::before {
  content: "“";
  top: 1.5rem;
  left: 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) blockquote::before {
    top: 0.5rem;
    left: 0.5rem;
  }
}
:is(.is-root-container, .p-editor) blockquote::after {
  content: "”";
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) blockquote::after {
    bottom: 0.5rem;
    right: 0.75rem;
  }
}
:is(.is-root-container, .p-editor) blockquote cite {
  font-size: 0.625rem;
  font-weight: 400;
  display: block;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) blockquote cite {
    margin-top: 0.5rem;
  }
}
:is(.is-root-container, .p-editor) .is-layout-flex .wp-block-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) .is-layout-flex .wp-block-image img {
    width: 100% !important;
  }
}
:is(.is-root-container, .p-editor) img {
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) figure.wp-block-gallery.has-nested-images {
    gap: 1.25rem;
  }
}
:is(.is-root-container, .p-editor) .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100%;
  }
}
:is(.is-root-container, .p-editor) .wp-block-image:has(figcaption) {
  display: grid;
  grid-template-columns: fit-content(100%);
  position: relative;
}
:is(.is-root-container, .p-editor) .wp-block-image:has(figcaption) img {
  width: 100%;
  grid-area: 1/1;
}
:is(.is-root-container, .p-editor) .wp-block-image:has(figcaption) figcaption {
  grid-area: 1/1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
  background-color: var(--white-color);
  padding: 0.5rem;
  border-radius: 0.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  place-self: center;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) .wp-block-media-text {
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) .wp-block-media-text__media img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) .wp-block-media-text__content {
    padding: 0;
  }
}
:is(.is-root-container, .p-editor) .wp-block-media-text.is-vertically-aligned-center > .wp-block-media-text__content,
:is(.is-root-container, .p-editor) .wp-block-media-text.is-vertically-aligned-center > .wp-block-media-text__media,
:is(.is-root-container, .p-editor) .wp-block-media-text > .wp-block-media-text__content,
:is(.is-root-container, .p-editor) .wp-block-media-text > .wp-block-media-text__media {
  -ms-flex-item-align: start;
      align-self: start;
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table,
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table {
  border-radius: 1rem;
  overflow: hidden;
  border-collapse: separate !important;
  border: 1px solid var(--main-color);
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table thead tr th,
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table thead tr th {
  border: none;
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: 700;
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table thead tr th:not(:last-child),
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table thead tr th:not(:last-child) {
  border-right: 1px solid var(--white-color);
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table tbody tr th,
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table tbody tr th {
  background-color: var(--light-green-color);
  border: none;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table tbody tr th:not(:last-child),
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table tbody tr th:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table tbody tr td,
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table tbody tr td {
  border: none;
  border-top: 1px solid var(--border-color);
  font-weight: 500;
}
:is(.is-root-container, .p-editor) .editor-styles-wrapper .wp-block-flexible-table-block-table > table tbody tr td:not(:last-child),
:is(.is-root-container, .p-editor) .wp-block-flexible-table-block-table > table tbody tr td:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
:is(.is-root-container, .p-editor) .wp-block-button .wp-block-button__link {
  background: var(--main-color);
  color: var(--white-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  padding-inline: 3.75rem;
  padding-block: 1.125rem;
  border-radius: 9999px;
  width: 26.5rem;
  position: relative;
  -webkit-transition: background-image 0.3s ease, color 0.3s ease;
  transition: background-image 0.3s ease, color 0.3s ease;
  display: block;
  text-decoration: none;
  border: 2px solid var(--main-color);
}
@media (max-width: 480px) {
  :is(.is-root-container, .p-editor) .wp-block-button .wp-block-button__link {
    width: 100%;
    padding-inline: 3.125rem;
    padding-block: 0.75rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  :is(.is-root-container, .p-editor) .wp-block-button .wp-block-button__link:hover {
    background-color: white;
    color: var(--main-color);
  }
  :is(.is-root-container, .p-editor) .wp-block-button .wp-block-button__link:hover::after {
    background-image: url("../../assets/img/common/icon_arrow_reverse.svg");
  }
}
:is(.is-root-container, .p-editor) .wp-block-button .wp-block-button__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1;
  background: url("../../assets/img/common/icon_arrow_white.svg") no-repeat center center/contain;
}
@media (max-width: 480px) {
  :is(.is-root-container, .p-editor) .wp-block-button .wp-block-button__link::after {
    right: 1.125rem;
    width: 1.5rem;
  }
}
:is(.is-root-container, .p-editor) pre.wp-block-verse {
  background-color: var(--light-blue-color);
  padding: 1.25rem 1.5rem;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) pre.wp-block-verse {
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-editor) .sigijh_animateMe {
  font-weight: 700;
}
@media (max-width: 767px) {
  :is(.is-root-container, .p-editor) p.has-background {
    font-size: 0.875rem;
  }
}
:is(.is-root-container, .p-editor) .has-main-color-color {
  color: var(--main-color);
}
:is(.is-root-container, .p-editor) .has-main-color-background-color {
  background-color: var(--main-color);
}
:is(.is-root-container, .p-editor) .has-white-color {
  color: var(--white-color);
}
:is(.is-root-container, .p-editor) .has-white-background-color {
  background-color: var(--white-color);
}
:is(.is-root-container, .p-editor) .has-black-color {
  color: var(--black-color);
}
:is(.is-root-container, .p-editor) .has-black-background-color {
  background-color: var(--black-color);
}
:is(.is-root-container, .p-editor) .has-red-color {
  color: var(--red-color);
}
:is(.is-root-container, .p-editor) .has-red-background-color {
  background-color: var(--red-color);
}
:is(.is-root-container, .p-editor) .has-blue-color {
  color: var(--blue-color);
}
:is(.is-root-container, .p-editor) .has-blue-background-color {
  background-color: var(--blue-color);
}
:is(.is-root-container, .p-editor) .has-green-color {
  color: var(--green-color);
}
:is(.is-root-container, .p-editor) .has-green-background-color {
  background-color: var(--green-color);
}
:is(.is-root-container, .p-editor) .has-light-green-color {
  color: var(--light-green-color);
}
:is(.is-root-container, .p-editor) .has-light-green-background-color {
  background-color: var(--light-green-color);
}
:is(.is-root-container, .p-editor) .has-purple-color {
  color: var(--purple-color);
}
:is(.is-root-container, .p-editor) .has-purple-background-color {
  background-color: var(--purple-color);
}
:is(.is-root-container, .p-editor) .has-blue-gray-color {
  color: var(--bluegray-color);
}
:is(.is-root-container, .p-editor) .has-blue-gray-background-color {
  background-color: var(--bluegray-color);
}
:is(.is-root-container, .p-editor) .has-light-red-color {
  color: var(--light-blue-color);
}
:is(.is-root-container, .p-editor) .has-light-red-background-color {
  background-color: var(--light-blue-color);
}
:is(.is-root-container, .p-editor) .has-brown-color {
  color: var(--brown-color);
}
:is(.is-root-container, .p-editor) .has-brown-background-color {
  background-color: var(--brown-color);
}
:is(.is-root-container, .p-editor) .has-gray-color {
  color: var(--gray-color4);
}
:is(.is-root-container, .p-editor) .has-gray-background-color {
  background-color: var(--gray-color4);
}
:is(.is-root-container, .p-editor) .has-cyan-color {
  color: var(--cyan-color);
}
:is(.is-root-container, .p-editor) .has-cyan-background-color {
  background-color: var(--cyan-color);
}
:is(.is-root-container, .p-editor) .has-yellow-color {
  color: var(--yellow-color);
}
:is(.is-root-container, .p-editor) .has-yellow-background-color {
  background-color: var(--yellow-color);
}

/* =================================
  Inc
================================= */
/*****************************************************
*  Top Page - FV
*****************************************************/
.p-top-fv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1120/540;
  overflow: hidden;
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-fv {
    aspect-ratio: 1120/800;
    margin-left: 1rem;
    margin-top: calc(var(--header-height-sp) + 1.25rem);
  }
}
@media (max-width: 480px) {
  .p-top-fv {
    aspect-ratio: 374/400;
  }
}

.p-top-fv__title {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  z-index: 10;
  display: grid;
  gap: 0.75rem;
  visibility: hidden;
}
@media (max-width: 767px) {
  .p-top-fv__title {
    left: 1rem;
    bottom: 1.9375rem;
    gap: 0.375rem;
  }
}

.p-top-fv__title span.char {
  display: inline-block;
  white-space: pre;
}

.p-top-fv__catchphrase,
.p-top-fv__brand {
  padding-inline: 0.5rem;
  padding-block: 0.25rem;
  background-color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.0444444444em;
}
@media (max-width: 767px) {
  .p-top-fv__catchphrase,
  .p-top-fv__brand {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .p-top-fv__catchphrase,
  .p-top-fv__brand {
    padding-inline: 0.25rem;
    border-radius: 0.25rem;
    font-size: 1.125rem;
  }
}

.p-top-fv__highlight {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .p-top-fv__highlight {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .p-top-fv__highlight {
    font-size: 1.5rem;
  }
}

.p-top-fv__highlight--accent {
  color: var(--main-color);
}

.p-top-fv__swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-top-fv__swiper {
  width: 100%;
  height: 100%;
}

.p-top-fv__swiper-wrapper {
  width: 100%;
  height: 100%;
}

.p-top-fv__swiper-slide {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}

.p-top-fv__img {
  width: 100%;
  height: 100%;
}

.p-top-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1;
}

.swiper-slide-active .p-top-fv__img img,
.swiper-slide-duplicate-active .p-top-fv__img img,
.swiper-slide-prev .p-top-fv__img img {
  -webkit-animation: zoom 10s linear 0s 1 normal forwards;
          animation: zoom 10s linear 0s 1 normal forwards;
}

@-webkit-keyframes zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.2;
  }
}

@keyframes zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.2;
  }
}
/*****************************************************
*  Top Page - 施⼯サービス内容
*****************************************************/
.p-top-service {
  padding-block: 3.5rem;
  padding-inline: 1.25rem;
  max-width: 1120px;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .p-top-service {
    padding-block: 2.5rem;
    padding-inline: 0;
  }
}

.c-section-title {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 480px) {
  .c-section-title {
    font-size: 1.625rem;
  }
}

.p-top-service__items {
  margin-top: 1.4375rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: auto;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .p-top-service__items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .p-top-service__items {
    margin-top: 1.3125rem;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border-color);
  }
}

.p-top-service__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 480px) {
  .p-top-service__item {
    grid-template-rows: initial;
    grid-row: initial;
  }
  .p-top-service__item--sp-change {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-top-service__link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  position: relative;
}
@media (max-width: 480px) {
  .p-top-service__link {
    grid-template-columns: 3.75rem 1fr;
    grid-template-rows: initial;
    grid-row: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 0.5625rem;
    border-bottom: 1px solid var(--border-color);
  }
}

@media (max-width: 480px) {
  .p-top-service__link:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }
}

.p-top-service__link:after {
  position: absolute;
  content: "";
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  scale: 0 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}
@media (max-width: 480px) {
  .p-top-service__link:after {
    display: none;
  }
}

.p-top-service__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (max-width: 480px) {
  .p-top-service__img {
    padding: 0.25rem;
  }
}
.p-top-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-service__text-wrapper {
  margin-inline: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .p-top-service__text-wrapper {
    gap: 0.25rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.p-top-service__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .p-top-service__text {
    text-align: left;
  }
  .p-top-service__text--lower {
    letter-spacing: -0.1388888889em;
  }
}

.p-top-service__icon {
  width: 1.125rem;
  height: auto;
  aspect-ratio: 1;
  outline: 1px solid var(--main-color);
  outline-offset: -1px;
  border-radius: 50%;
}
.p-top-service__icon circle {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.p-top-service__icon path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

@media (any-hover: hover) {
  .p-top-service__link:hover::after {
    scale: 1;
  }
  .p-top-service__link:hover .p-top-service__icon circle {
    fill: var(--white-color);
  }
  .p-top-service__link:hover .p-top-service__icon path {
    stroke: var(--main-color);
  }
  .p-top-service__link:hover .p-top-service__text {
    color: var(--main-color);
  }
}
/*****************************************************
*  Top Page - ストラリフォームからのお約束
*****************************************************/
.p-top-promise {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 480px) {
  .p-top-promise {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.l-inner {
  max-width: calc(996px + 5rem);
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media (max-width: 480px) {
  .l-inner {
    padding-inline: 2rem;
  }
}

.p-top-promise__items {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .p-top-promise__items {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 480px) {
  .p-top-promise__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-top-promise__item {
  background-color: var(--white-color);
  border-radius: 1rem;
  padding-block: 1.5rem;
  padding-inline: 2.25rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 767px) {
  .p-top-promise__item {
    padding-block: 1.25rem;
    padding-inline: 1.375rem;
  }
}

.p-top-promise__item-head {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  padding-bottom: 0.75rem;
  background-image: repeating-linear-gradient(90deg, #a2a2a2, #a2a2a2 2px, transparent 2px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media (max-width: 767px) {
  .p-top-promise__item-head {
    grid-template-columns: initial;
    justify-items: center;
    row-gap: 0.25rem;
  }
}

.p-top-promise__item-count {
  color: var(--main-color);
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-promise__item-count {
    font-size: 1.75rem;
  }
}

.p-top-promise__item-count::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -1.125rem;
  width: 1px;
  height: 3.125rem;
  background-color: var(--main-color);
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .p-top-promise__item-count::after {
    display: none;
  }
}

.p-top-promise__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-top-promise__item-title {
    text-align: center;
  }
}

.p-top-promise__item-body {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 136fr 264fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-top-promise__item-body {
    margin-top: 0.75rem;
    grid-template-columns: initial;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-top-promise__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 136/120;
}
@media (max-width: 767px) {
  .p-top-promise__item-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 11.25rem;
    margin-inline: auto;
  }
}
.p-top-promise__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-promise__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-top-promise__item-text {
    font-size: 1rem;
    max-width: 480px;
    margin-inline: auto;
  }
}

.p-top-promise__link {
  margin-top: 2.5rem;
}

/*****************************************************
*  Top Page - お知らせ・コラムのセクション
*****************************************************/
.p-top-news {
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .p-top-news {
    padding-top: 2.5rem;
  }
}

.p-top-news__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 6.6914498141%;
     -moz-column-gap: 6.6914498141%;
          column-gap: 6.6914498141%;
}
@media (max-width: 767px) {
  .p-top-news__wrapper {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 2.5rem;
  }
}

.p-top-news__contents {
  width: 100%;
  max-width: 424px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 3.25rem;
}
@media (max-width: 767px) {
  .p-top-news__contents {
    padding-bottom: 2.5rem;
    gap: 1.75rem;
  }
}

.p-top-news__item-date {
  font-family: var(--font-barlow);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  min-width: 5rem;
}

.p-top-news__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-news__categories .c-category {
  font-size: 0.75rem;
}

.p-top-news__item-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.p-top-news__contents--news {
  justify-self: end;
}
@media (max-width: 767px) {
  .p-top-news__contents--news {
    justify-self: center;
  }
}
.p-top-news__contents--news .p-top-news__items {
  display: grid;
  gap: 1.5rem;
}
.p-top-news__contents--news .p-top-news__item-link {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.25rem;
  padding-bottom: 1.25rem;
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 50px 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-news__contents--news .p-top-news__item-link:hover {
    color: var(--main-color);
  }
}
.p-top-news__contents--news .p-top-news__item-title {
  grid-column: span 2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-top-news__contents--column {
  justify-self: start;
}
@media (max-width: 767px) {
  .p-top-news__contents--column {
    justify-self: center;
  }
}
.p-top-news__contents--column .p-top-news__items {
  display: grid;
  gap: 2.5rem;
}
.p-top-news__contents--column .p-top-news__item-link {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-news__contents--column .p-top-news__item-link:hover {
    color: var(--main-color);
  }
}
@media (max-width: 767px) {
  .p-top-news__contents--column .p-top-news__item-link {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}
.p-top-news__contents--column .p-top-news__item-img {
  width: 8.25rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-news__contents--column .p-top-news__item-img {
    width: 7.75rem;
  }
}
.p-top-news__contents--column .p-top-news__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-news__contents--column .p-top-news__item-body {
  display: grid;
  gap: 1.125rem;
}
@media (max-width: 767px) {
  .p-top-news__contents--column .p-top-news__item-body {
    gap: 0.5rem;
  }
}
.p-top-news__contents--column .p-top-news__item-title {
  padding-bottom: 1.25rem;
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 50px 1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .p-top-news__contents--column .p-top-news__item-title {
    line-height: 1.4;
    padding-bottom: 0.5rem;
  }
}
.p-top-news__contents--column .p-top-news__item-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-top-news__contents--column .p-top-news__item-excerpt {
    font-size: 0.75rem;
  }
}

/* =================================
  Inc
================================= */
/****************************************************
サービスページに関するスタイル
****************************************************/
/* サービスページ：ファーストビュー */
.p-service-fv {
  border-radius: 2rem;
  overflow: hidden;
  margin-inline: auto;
  max-width: 1080px;
  position: relative;
}
@media (max-width: 767px) {
  .p-service-fv {
    margin-top: calc(var(--header-height-sp) + 1.25rem);
    margin-inline: 1rem;
  }
}

.p-service-fv__contents {
  padding-left: 2.5rem;
  padding-top: 3.875rem;
  padding-bottom: 2.75rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: clamp(18.75rem, 2.321rem + 34.23vw, 33.125rem);
  z-index: 10;
}
@media (max-width: 767px) {
  .p-service-fv__contents {
    padding-inline: 0.75rem;
    padding-block: 2rem 5rem;
    width: 100%;
    min-width: auto;
    background-color: var(--light-green-color);
  }
}
@media (max-width: 480px) {
  .p-service-fv__contents {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }
}

.p-service-fv__contents-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  min-width: clamp(18.75rem, 2.321rem + 34.23vw, 33.125rem);
  background-color: var(--light-green-color);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-service-fv__contents-bg {
    width: 100%;
  }
}

.p-service-fv__contents-bg::after {
  position: absolute;
  content: "";
  top: 0;
  right: 1px;
  translate: 100% 0;
  width: 24%;
  height: 100%;
  background-color: var(--light-green-color);
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
}
@media (max-width: 767px) {
  .p-service-fv__contents-bg::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 1px;
    translate: 0 100%;
    width: 100%;
    height: 4rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}

.p-service-fv__title {
  display: grid;
  color: var(--main-color);
  font-size: clamp(1.375rem, 1.265rem + 0.47vw, 1.688rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.2em var(--white-color);
  paint-order: stroke fill;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-service-fv__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .p-service-fv__title {
    font-size: 1.375rem;
  }
}

.p-service-fv__highlight {
  font-size: clamp(1.75rem, 1.42rem + 1.41vw, 2.688rem);
  font-weight: 700;
}
@media (max-width: 480px) {
  .p-service-fv__highlight {
    font-size: 1.75rem;
  }
}

.p-service-fv__highlight--accent {
  color: var(--orange-color);
}

.p-service-fv__brand {
  font-size: clamp(2rem, 1.67rem + 1.41vw, 2.938rem);
  letter-spacing: -0.0587234043em;
}
@media (max-width: 480px) {
  .p-service-fv__brand {
    font-size: 2rem;
  }
}

.p-service-fv__text {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-service-fv__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .p-service-fv__text {
    margin-top: 0.5rem;
  }
}

.p-service-fv__text-category {
  display: inline-block;
  padding-inline: 1rem;
  padding-block: 0.375rem;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: 2rem;
  margin-right: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-service-fv__text-category {
    font-size: 0.875rem;
    padding-inline: 0.75rem;
    padding-block: 0.25rem;
  }
}
@media (max-width: 480px) {
  .p-service-fv__text-category {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
    padding-block: 0.25rem;
    margin-right: 0.25rem;
  }
}

.p-service-fv__promise {
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: 1fr 7.0625rem;
  width: 100%;
  max-width: 26.875rem;
  background-color: var(--white-color);
  padding-block: 1.375rem 1.5625rem;
  padding-inline: 1.8125rem 1.625rem;
  border-radius: 1rem;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .p-service-fv__promise {
    margin-inline: auto;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 50%;
    translate: -50% 60%;
  }
}
@media (max-width: 480px) {
  .p-service-fv__promise {
    margin-top: 1rem;
    grid-template-columns: 1fr 4rem;
    padding-block: 0.75rem;
    padding-inline: 1rem;
    gap: 0.75rem;
    max-width: 18.75rem;
    translate: -50% 90%;
  }
}

.p-service-fv__promise-head {
  color: var(--main-color);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .p-service-fv__promise-head {
    font-size: 1rem;
    margin-inline: auto;
  }
}

.p-service-fv__promise-list {
  margin-top: 0.625rem;
  display: grid;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .p-service-fv__promise-list {
    margin-top: 0.5rem;
    gap: 0.375rem;
  }
}

.p-service-fv__promise-item {
  padding-left: 1.3125rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
}
@media (max-width: 480px) {
  .p-service-fv__promise-item {
    font-size: 0.75rem;
    line-height: 1.1666666667;
    padding-left: 1rem;
  }
}

.p-service-fv__promise-item::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: auto;
  aspect-ratio: 1;
  top: 0.5lh;
  left: 0;
  translate: 0 -50%;
  background: url("../../assets/img/service/icon_roller.svg") no-repeat center center/contain;
}
@media (max-width: 480px) {
  .p-service-fv__promise-item::before {
    width: 0.75rem;
  }
}

.p-service-promise__img {
  width: 100%;
  height: auto;
}
.p-service-promise__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-service-fv__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  min-width: 60%;
  aspect-ratio: 561/515;
}
@media (max-width: 767px) {
  .p-service-fv__img {
    position: relative;
    aspect-ratio: 2/1;
    width: 100%;
    height: auto;
    min-height: 283px;
  }
}
@media (max-width: 480px) {
  .p-service-fv__img {
    aspect-ratio: 3/2;
    min-height: auto;
  }
}

.p-service-fv__img-main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-fv__badge {
  position: absolute;
  bottom: 1.75rem;
  right: clamp(1.25rem, -11.25rem + 16.67vw, 3.75rem);
  width: clamp(18.75rem, -12.5rem + 41.67vw, 25rem);
  height: auto;
  z-index: 20;
}
@media (max-width: 767px) {
  .p-service-fv__badge {
    left: 50%;
    translate: -50% 0;
    bottom: 1.25rem;
    width: 18.75rem;
  }
}
@media (max-width: 480px) {
  .p-service-fv__badge {
    width: 15rem;
    bottom: 0rem;
  }
}

/* サービスページ：こんなお悩み有りませんか？のセクション */
.p-service-worries {
  padding-block: 2.875rem 3.125rem;
}
@media (max-width: 480px) {
  .p-service-worries {
    margin-top: 0;
    padding-block: 2.5rem;
  }
}

.p-service-section__title {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .p-service-section__title {
    font-size: 1rem;
  }
}
.p-service-section__title--black {
  color: var(--text-color);
}

.p-service-section__title-large {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 480px) {
  .p-service-section__title-large {
    font-size: 1.5rem;
  }
}

.p-service-worries__items {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .p-service-worries__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.p-service-worries__item {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  font-size: clamp(0.875rem, 0.25rem + 0.83vw, 1rem);
}
@media (max-width: 480px) {
  .p-service-worries__item {
    font-size: 0.625rem;
  }
}

.p-service-worries__item--left {
  width: 21.875rem;
  aspect-ratio: 350/230;
  height: auto;
  background: url("../../assets/img/service/worries_bg_left.svg") no-repeat center center/contain;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-service-worries__item--left {
    width: 21.25rem;
    margin-top: 0;
    background-image: url("../../assets/img/service/worries_bg_center.svg");
  }
}
@media (max-width: 480px) {
  .p-service-worries__item--left {
    width: 10.625rem;
  }
}

.p-service-worries__item--center {
  width: 19.375rem;
  aspect-ratio: 300/200;
  height: auto;
  background: url("../../assets/img/service/worries_bg_center.svg") no-repeat center center/contain;
}
@media (max-width: 480px) {
  .p-service-worries__item--center {
    width: 10.625rem;
  }
}

.p-service-worries__item--right {
  width: 20.0625rem;
  aspect-ratio: 321/216;
  height: auto;
  background: url("../../assets/img/service/worries_bg_right.svg") no-repeat center center/contain;
  margin-top: 3.625rem;
}
@media (max-width: 767px) {
  .p-service-worries__item--right {
    margin-top: 0;
    background-image: url("../../assets/img/service/worries_bg_center.svg");
  }
}
@media (max-width: 480px) {
  .p-service-worries__item--right {
    width: 10.625rem;
  }
}

.p-service-worries__items--wall-painting .p-service-worries__item--left {
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--wall-painting .p-service-worries__item--left {
    padding-right: 0.375rem;
  }
}
@media (max-width: 767px) {
  .p-service-worries__items--wall-painting .p-service-worries__item--left {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--wall-painting .p-service-worries__item--left {
    padding-bottom: 0.5rem;
  }
}
.p-service-worries__items--wall-painting .p-service-worries__item--center {
  padding-bottom: 1.625rem;
  padding-right: 0.5rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--wall-painting .p-service-worries__item--center {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--wall-painting .p-service-worries__item--center {
    padding-bottom: 0.5rem;
  }
}
.p-service-worries__items--wall-painting .p-service-worries__item--right {
  padding-bottom: 1rem;
}
@media (max-width: 480px) {
  .p-service-worries__items--wall-painting .p-service-worries__item--right {
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 1200px) {
  .p-service-worries__items--interior-reform .p-service-worries__item--left {
    padding-right: 0.375rem;
  }
}
@media (max-width: 767px) {
  .p-service-worries__items--interior-reform .p-service-worries__item--left {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--interior-reform .p-service-worries__item--left {
    padding-bottom: 0.5rem;
  }
}
.p-service-worries__items--interior-reform .p-service-worries__item--center {
  width: 23.75rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--interior-reform .p-service-worries__item--center {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--interior-reform .p-service-worries__item--center {
    width: 11.25rem;
  }
}
.p-service-worries__items--interior-reform .p-service-worries__item--right {
  padding-bottom: 1rem;
}
@media (max-width: 480px) {
  .p-service-worries__items--interior-reform .p-service-worries__item--right {
    padding-bottom: 0.5rem;
  }
}

.p-service-worries__items--exterior .p-service-worries__item--left {
  padding-bottom: 1.25rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--exterior .p-service-worries__item--left {
    padding-right: 0.375rem;
  }
}
@media (max-width: 767px) {
  .p-service-worries__items--exterior .p-service-worries__item--left {
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--exterior .p-service-worries__item--left {
    padding-bottom: 0.5rem;
  }
}
.p-service-worries__items--exterior .p-service-worries__item--center {
  width: 23.75rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--exterior .p-service-worries__item--center {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--exterior .p-service-worries__item--center {
    width: 11.25rem;
  }
}
.p-service-worries__items--exterior .p-service-worries__item--right {
  padding-left: 1.25rem;
  padding-bottom: 2rem;
}
@media (max-width: 480px) {
  .p-service-worries__items--exterior .p-service-worries__item--right {
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .p-service-worries__items--roof .p-service-worries__item--left {
    width: 10rem;
  }
}
.p-service-worries__items--roof .p-service-worries__item--center {
  width: 23.75rem;
  padding-left: 1.25rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--roof .p-service-worries__item--center {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .p-service-worries__items--roof .p-service-worries__item--center {
    width: 21.25rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--roof .p-service-worries__item--center {
    width: 10.625rem;
  }
}
.p-service-worries__items--roof .p-service-worries__item--right {
  width: 21.25rem;
  padding-left: 1.25rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-service-worries__items--roof .p-service-worries__item--right {
    width: 18.75rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--roof .p-service-worries__item--right {
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    width: 10.625rem;
  }
}

.p-service-worries__items--drone .p-service-worries__item--left {
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .p-service-worries__items--drone .p-service-worries__item--left {
    width: 16.25rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--drone .p-service-worries__item--left {
    width: 10rem;
  }
}
.p-service-worries__items--drone .p-service-worries__item--center {
  width: 23.75rem;
  padding-left: 1.25rem;
}
@media (max-width: 1200px) {
  .p-service-worries__items--drone .p-service-worries__item--center {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .p-service-worries__items--drone .p-service-worries__item--center {
    width: 16.875rem;
    padding-top: 0.75rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--drone .p-service-worries__item--center {
    width: 10.625rem;
    padding-left: 0.75rem;
  }
}
.p-service-worries__items--drone .p-service-worries__item--right {
  width: 21.25rem;
  padding-left: 1.25rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-service-worries__items--drone .p-service-worries__item--right {
    width: 16.25rem;
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--drone .p-service-worries__item--right {
    padding-left: 0.5rem;
    width: 10.625rem;
  }
}

.p-service-worries__items--other .p-service-worries__item--left {
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .p-service-worries__items--other .p-service-worries__item--left {
    width: 16.25rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--other .p-service-worries__item--left {
    width: 10rem;
  }
}
@media (max-width: 767px) {
  .p-service-worries__items--other .p-service-worries__item--center {
    width: 16.875rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--other .p-service-worries__item--center {
    width: 10.625rem;
  }
}
.p-service-worries__items--other .p-service-worries__item--right {
  width: 21.25rem;
  padding-left: 1.25rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-service-worries__items--other .p-service-worries__item--right {
    width: 16.25rem;
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .p-service-worries__items--other .p-service-worries__item--right {
    padding-left: 0.5rem;
    width: 10.625rem;
  }
}

.p-service-worries__item-large {
  font-size: clamp(1.25rem, -0.625rem + 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 1200px) {
  .p-service-worries__item-large {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .p-service-worries__item-large {
    font-size: 0.8125rem;
  }
}

.p-service-worries__illust {
  width: 11.625rem;
  height: auto;
  margin-inline: auto;
  margin-top: -5.75rem;
}
@media (max-width: 767px) {
  .p-service-worries__illust {
    margin-top: 0;
    width: 8.75rem;
  }
}
.p-service-worries__illust img {
  width: 100%;
  height: auto;
}
.p-service-worries__illust--interior-reform {
  margin-top: -2.125rem;
}
@media (max-width: 767px) {
  .p-service-worries__illust--interior-reform {
    margin-top: 0;
  }
}

/* サービスページ：選ばれる理由のセクション */
.p-service-reason {
  padding-bottom: 5rem;
}
@media (max-width: 480px) {
  .p-service-reason {
    padding-block: 2.5rem;
  }
}

.p-service-reason__items {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .p-service-reason__items {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 480px) {
  .p-service-reason__items {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-service-reason__item {
  background-color: var(--white-color);
  border-radius: 1rem;
  padding-block: 1.5rem;
  padding-inline: 2.25rem 2rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 767px) {
  .p-service-reason__item {
    padding-block: 1.25rem;
    padding-inline: 1.375rem;
  }
}

.p-service-reason__item-head {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  padding-bottom: 0.75rem;
  background-image: repeating-linear-gradient(90deg, #a2a2a2, #a2a2a2 2px, transparent 2px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media (max-width: 767px) {
  .p-service-reason__item-head {
    grid-template-columns: initial;
    justify-items: center;
    row-gap: 0.25rem;
  }
}

.p-service-reason__item-count {
  color: var(--main-color);
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 767px) {
  .p-service-reason__item-count {
    font-size: 1.75rem;
  }
}

.p-service-reason__item-count::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -0.5rem;
  width: 1px;
  height: 3.125rem;
  background-color: var(--border-color);
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .p-service-reason__item-count::after {
    display: none;
  }
}

.p-service-reason__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-service-reason__item-title {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .p-service-reason__item-title {
    font-size: 1.125rem;
  }
}

.p-service-reason__item-body {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 136fr 264fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media (max-width: 767px) {
  .p-service-reason__item-body {
    margin-top: 0.75rem;
    grid-template-columns: initial;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-service-reason__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 136/120;
}
@media (max-width: 767px) {
  .p-service-reason__item-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 11.25rem;
    margin-inline: auto;
  }
}
.p-service-reason__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-service-reason__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-top: 0.375rem;
}
@media (max-width: 767px) {
  .p-service-reason__item-text {
    font-size: 0.875rem;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* サービスページ：CTAセクション */
.p-service-cta {
  padding-block: 2rem 2rem;
  background: url("../../assets/img/service/cta_bg.jpg") no-repeat center center/cover;
}

.p-service-cta__items {
  margin-top: 1.375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-column-gap: 5.1875rem;
     -moz-column-gap: 5.1875rem;
          column-gap: 5.1875rem;
  row-gap: 1.75rem;
}
@media (max-width: 767px) {
  .p-service-cta__items {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    padding-inline: 1.25rem;
  }
}
@media (max-width: 600px) {
  .p-service-cta__items {
    row-gap: 1rem;
  }
}
@media (max-width: 480px) {
  .p-service-cta__items {
    gap: 0.5rem;
    padding-inline: 0.5rem;
  }
}

.p-service-cta__item {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.p-service-cta__text {
  line-height: 1;
  font-weight: 700;
  position: relative;
}
@media (max-width: 480px) {
  .p-service-cta__text {
    font-size: 0.75rem;
  }
}

.p-service-cta__text::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 90%;
  left: -0.625rem;
  top: 50%;
  translate: 0 -50%;
  rotate: -35deg;
  background-color: var(--text-color);
  border-radius: 999px;
}

.p-service-cta__text::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 90%;
  right: -0.625rem;
  top: 50%;
  translate: 0 -50%;
  rotate: 35deg;
  background-color: var(--text-color);
  border-radius: 999px;
}

/* サービスページ：施工の流れのセクション */
.p-service-flow {
  padding-block: 4rem 2rem;
}
@media (max-width: 480px) {
  .p-service-flow {
    padding-block: 2.5rem;
  }
}

.p-service-flow__items {
  margin-top: 2.125rem;
}
@media (max-width: 480px) {
  .p-service-flow__items {
    margin-top: 1.5rem;
  }
}

.p-service-flow__item {
  display: grid;
  grid-template-columns: 5.5rem 23.75rem 1fr;
  padding-bottom: 2.125rem;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media (max-width: 1200px) {
  .p-service-flow__item {
    grid-template-columns: 5.5rem 1fr;
    row-gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .p-service-flow__item {
    grid-template-columns: 3.75rem 1fr;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    padding-bottom: 1.5rem;
  }
}

.p-service-flow__item-step {
  position: relative;
}
@media (max-width: 1200px) {
  .p-service-flow__item-step {
    grid-row: span 2;
  }
}

.p-service-flow__item:not(:last-child) .p-service-flow__item-step::before {
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% + 1.875rem);
  top: 0;
  left: 50%;
  translate: -50% 0;
  background-color: var(--border-color);
  z-index: 1;
}
@media (max-width: 480px) {
  .p-service-flow__item:not(:last-child) .p-service-flow__item-step::before {
    height: calc(100% + 1rem);
  }
}

.p-service-flow__item:not(:last-child) .p-service-flow__item-step::after {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.625rem;
  bottom: -2.125rem;
  left: 50%;
  translate: -50% 0;
  background-color: var(--border-color);
  z-index: 2;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media (max-width: 480px) {
  .p-service-flow__item:not(:last-child) .p-service-flow__item-step::after {
    bottom: -1.5rem;
  }
}

.p-service-flow__item-num {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  place-items: center;
  font-family: var(--font-barlow);
  font-size: 3rem;
  font-weight: 600;
  color: var(--main-color);
  background-color: var(--light-green-color);
  border-radius: 50%;
  position: relative;
  z-index: 10;
  line-height: 1;
}
@media (max-width: 480px) {
  .p-service-flow__item-num {
    font-size: 2rem;
  }
}

.p-service-flow__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.125rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 480px) {
  .p-service-flow__item-title {
    font-size: 1.25rem;
  }
}

.p-service-flow__item-title-small {
  font-size: 1.125rem;
}
@media (max-width: 480px) {
  .p-service-flow__item-title-small {
    font-size: 0.875rem;
  }
}

.p-service-flow__text-wrapper {
  padding-left: 0rem;
  padding-right: 0.25rem;
  padding-top: 1.125rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}
@media (max-width: 1200px) {
  .p-service-flow__text-wrapper {
    padding-left: 0;
  }
}

.p-service-flow__item-text {
  -ms-flex-line-pack: start;
      align-content: start;
  margin-top: 1.375rem;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-service-flow__item-text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.p-service-flow__item-text .u-text-marker {
  font-weight: 700;
}
.p-service-flow__item-text .u-text-small {
  font-size: 0.75rem;
}

.p-service-flow__item-period {
  -ms-flex-line-pack: end;
      align-content: end;
  line-height: 1.3;
  font-weight: 700;
  padding-block: 0.25rem;
  padding-inline: 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 1.375rem;
  position: relative;
}
@media (max-width: 480px) {
  .p-service-flow__item-period {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

.p-service-flow__item-img {
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .p-service-flow__item-img {
    width: min(100%, 30rem);
  }
}
.p-service-flow__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-flow__item-period-note {
  position: absolute;
  top: 50%;
  right: -0.5rem;
  translate: 100% -50%;
  font-size: 0.625rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-service-flow__item-period-note {
    top: auto;
    bottom: -0.125rem;
    right: auto;
    left: 0;
    translate: 0 100%;
  }
}

/* サービスページ：品質へのこだわりセクション */
.p-service-quality {
  padding-bottom: 0.75rem;
}
@media (max-width: 480px) {
  .p-service-quality {
    padding-block: 2.5rem;
  }
}

.p-service-quality__items {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 19rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.625rem;
     -moz-column-gap: 2.625rem;
          column-gap: 2.625rem;
  row-gap: 2.25rem;
}

.p-service-quality__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.75rem;
}

.p-service-quality__img {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 304/240;
}
.p-service-quality__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-quality__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.375rem;
}
@media (max-width: 480px) {
  .p-service-quality__item-title {
    font-size: 1.25rem;
  }
}

.p-service-quality__text {
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .p-service-quality__text {
    font-size: 0.875rem;
  }
}

/* サービスページ：よくある質問セクション */
.p-service-faq {
  padding-top: 4rem;
}
@media (max-width: 480px) {
  .p-service-faq {
    padding-top: 2.5rem;
  }
}

.p-service-faq__items {
  margin-top: 1.875rem;
  display: grid;
  gap: 0.5rem;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 0.5rem;
}
@media (max-width: 480px) {
  .p-service-faq__items {
    margin-block: 1.5rem;
    gap: 0.375rem;
  }
}

.p-service-faq__item {
  background-image: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 50px 1px;
}

.p-service-faq__item:last-child {
  border-bottom: none;
  background: none;
}

.p-service-faq__summary {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1.875rem;
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  list-style: none;
}
.p-service-faq__summary::-webkit-details-marker {
  display: none;
}
@media (max-width: 480px) {
  .p-service-faq__summary {
    padding-block: 0.75rem;
    padding-right: 1rem;
    grid-template-columns: 1.5rem 1fr;
    gap: 0.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-service-faq__summary::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 2px;
  width: 0.875rem;
  background-color: var(--main-color);
  translate: 0 -50%;
  rotate: 90deg;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}

.p-service-faq__item[open] > .p-service-faq__summary::before {
  rotate: 0deg;
}

.p-service-faq__summary::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 2px;
  width: 0.875rem;
  background-color: var(--main-color);
  translate: 0 -50%;
}

.p-service-faq__summary-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--main-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 1.125rem;
  font-weight: 900;
}
@media (max-width: 480px) {
  .p-service-faq__summary-icon {
    font-size: 0.875rem;
  }
}

.p-service-faq__summary-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .p-service-faq__summary-text {
    font-size: 1rem;
  }
}

.p-service-faq__answer {
  padding-block: 0 1rem;
  padding-right: 1.875rem;
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .p-service-faq__answer {
    grid-template-columns: 1.5rem 1fr;
    gap: 0.5rem;
    padding-right: 1rem;
  }
}

.p-service-faq__answer-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--orange-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 1.125rem;
  font-weight: 900;
}
@media (max-width: 480px) {
  .p-service-faq__answer-icon {
    font-size: 0.875rem;
  }
}

.p-service-faq__answer-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .p-service-faq__answer-text {
    font-size: 0.875rem;
  }
}
.p-service-faq__answer-text .u-text-orange {
  font-weight: 700;
}

/* =================================
  Inc
================================= */
/*************************************************
会社概要ページのスタイル
*************************************************/
.p-company {
  max-width: 836px;
  margin-inline: auto;
  padding-bottom: 5rem;
}

.p-company-about {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 480px) {
  .p-company-about {
    padding-block: 2.5rem 1.25rem;
  }
}

.p-company-about__list {
  margin-top: 2.5rem;
}

.p-company-about__item {
  grid-template-columns: 15rem 1fr;
}
@media (max-width: 767px) {
  .p-company-about__item {
    grid-template-columns: 9.375rem 1fr;
  }
}
@media (max-width: 480px) {
  .p-company-about__item {
    grid-template-columns: 6.875rem 1fr;
  }
}

.p-company-about__item-head {
  font-weight: 700;
  font-size: 1.25rem;
  padding-inline: 2.5rem;
  padding-block: 1.5rem;
}
@media (max-width: 767px) {
  .p-company-about__item-head {
    font-size: 1.125rem;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 480px) {
  .p-company-about__item-head {
    font-size: 0.875rem;
    padding-inline: 1rem;
    padding-block: 0.75rem;
  }
}

.p-company-about__item-body {
  padding-inline: 1.5rem;
  padding-block: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-company-about__item-body {
    font-size: 1.125rem;
    padding-inline: 0.75rem;
  }
}
@media (max-width: 480px) {
  .p-company-about__item-body {
    font-size: 0.875rem;
    padding-inline: 0.5rem;
    padding-block: 0.75rem;
  }
}

.p-company-staff {
  padding-top: 2.5rem;
}
@media (max-width: 480px) {
  .p-company-staff {
    padding-top: 1.25rem;
  }
}

.p-company-staff__cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 3.5rem;
}
@media (max-width: 480px) {
  .p-company-staff__cards {
    margin-top: 1.75rem;
    gap: 1.75rem;
  }
}

.p-company-staff__card {
  display: grid;
  gap: 1.75rem;
}

.p-company-staff__card-head {
  display: grid;
  grid-template-columns: 320fr 484fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-company-staff__card-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-company-staff__card-info {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-company-staff__position {
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.1;
}

.p-company-staff__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1.1;
  font-weight: 700;
  margin-top: 0.125rem;
}

.p-company-staff__name-main {
  font-size: 1.75rem;
}
@media (max-width: 480px) {
  .p-company-staff__name-main {
    font-size: 1.25rem;
  }
}

.p-company-staff__name-sub {
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  .p-company-staff__name-sub {
    font-size: 0.625rem;
  }
}

.p-company-staff__copy {
  margin-top: 1.625rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
}
@media (max-width: 480px) {
  .p-company-staff__copy {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.p-company-staff__message {
  margin-top: 1.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
  display: grid;
  gap: 1.625rem;
}

.p-company-staff__img {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 320/240;
  height: auto;
}
@media (max-width: 767px) {
  .p-company-staff__img {
    width: 20rem;
    margin-inline: auto;
  }
}
@media (max-width: 480px) {
  .p-company-staff__img {
    width: 15rem;
  }
}
.p-company-staff__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company-staff__list-item {
  grid-template-columns: 20rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .p-company-staff__list-item {
    grid-template-columns: 10rem 1fr;
  }
}
@media (max-width: 480px) {
  .p-company-staff__list-item {
    grid-template-columns: 9.375rem 1fr;
  }
}

.p-company-staff__list-head {
  padding-block: 0.875rem;
  padding-inline: 2.5rem 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-company-staff__list-head {
    padding-inline: 0.75rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .p-company-staff__list-head {
    padding-inline: 0.75rem;
    font-size: 0.75rem;
  }
}

.p-company-staff__list-body {
  padding-block: 0.875rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-company-staff__list-body {
    padding-inline: 0.5rem;
    font-size: 0.75rem;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
施工費用ページ関連のスタイル
*************************************************/
.p-price {
  padding-block: 5rem;
  display: grid;
  gap: 5rem;
}
@media (max-width: 480px) {
  .p-price {
    padding-block: 2.5rem;
    gap: 2.5rem;
  }
}

.p-price__section {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .p-price__section {
    gap: 1.25rem;
  }
}

.p-price__table-wrapper {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .p-price__table-wrapper {
    gap: 1.25rem;
  }
}

.p-price__table {
  width: 100%;
  border-collapse: separate;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--main-color);
}

.p-price__table-head {
  padding: 1.5rem;
  vertical-align: middle;
  background-color: var(--light-green-color);
  width: 25.1004016064%;
  font-size: 1.25rem;
  font-weight: 700;
  border-right: 1px solid var(--border-color);
  white-space: nowrap;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .p-price__table-head {
    width: 25%;
    padding-inline: 1rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-head {
    padding-inline: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-price__table-item {
  font-size: 1.125rem;
  padding-inline: 1rem;
  padding-block: 1.375rem;
  font-weight: 500;
  vertical-align: middle;
  width: 100%;
}
@media (max-width: 767px) {
  .p-price__table-item {
    padding-block: 0.75rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-item {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
    padding-block: 0.625rem;
  }
}

.p-price__table-row:not(:first-child) .p-price__table-item,
.p-price__table-row:not(:first-child) .p-price__table-price {
  border-top: 1px solid var(--border-color);
}

.p-price__table-row:nth-child(even) .p-price__table-item,
.p-price__table-row:nth-child(even) .p-price__table-price {
  background-color: var(--gray-color);
}

.p-price__table-price {
  min-width: 16.875rem;
  border-left: 1px solid var(--border-color);
  padding-inline: 1.25rem;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-price__table-price {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding-inline: 1rem;
    word-break: keep-all;
  }
}
@media (max-width: 480px) {
  .p-price__table-price {
    padding-inline: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-price__table-price--large {
  padding-inline: 3rem;
  text-align: right;
}
@media (max-width: 767px) {
  .p-price__table-price--large {
    padding-inline: 1rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-price--large {
    padding-inline: 0.5rem;
  }
}
.p-price__table-price--large .p-price__table-price-num {
  font-size: 3.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-price__table-price--large .p-price__table-price-num {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-price--large .p-price__table-price-num {
    font-size: 1.5rem;
  }
}
.p-price__table-price--large .p-price__table-price-currency {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-price__table-price--large .p-price__table-price-currency {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-price--large .p-price__table-price-currency {
    font-size: 0.875rem;
  }
}

.p-price__table-price-area {
  font-weight: 500;
  display: block;
  text-align: right;
}

.p-price__table-price-num {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-price__table-price-num {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-price-num {
    font-size: 1rem;
  }
}

.p-price__table-price-currency {
  font-weight: 500;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .p-price__table-price-currency {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .p-price__table-price-currency {
    font-size: 0.875rem;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
プライバシーポリシーページ関連のスタイル
*************************************************/
.p-privacy {
  padding-block: 5rem;
  max-width: 996px;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .p-privacy {
    padding-block: 2.5rem;
  }
}

.p-privacy__items {
  margin-top: 2.5rem;
  display: grid;
  gap: 3.75rem;
}
@media (max-width: 480px) {
  .p-privacy__items {
    gap: 2.5rem;
  }
}

.p-privacy__item {
  display: grid;
  gap: 1.75rem;
}
@media (max-width: 480px) {
  .p-privacy__item {
    gap: 1.25rem;
  }
}

.p-privacy__item-title {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.75rem;
  width: 100%;
  padding-block: 0.875rem;
  padding-inline: 1.25rem;
  background-color: var(--light-green-color);
  color: var(--main-color);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
@media (max-width: 480px) {
  .p-privacy__item-title {
    font-size: 1.125rem;
    padding-inline: 0.75rem;
    padding-block: 0.625rem;
  }
}

.p-privacy__item-title::before {
  content: "";
  position: absolute;
  top: -0.34375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-color);
}
@media (max-width: 480px) {
  .p-privacy__item-title::before {
    top: -0.21875rem;
    height: 0.125rem;
  }
}

.p-privacy__item-title::after {
  content: "";
  position: absolute;
  bottom: -0.34375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-color);
}
@media (max-width: 480px) {
  .p-privacy__item-title::after {
    bottom: -0.21875rem;
    height: 0.125rem;
  }
}

.p-privacy__item-text-wrapper {
  display: grid;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .p-privacy__item-text-wrapper {
    gap: 1rem;
  }
}

.p-privacy__item-text {
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .p-privacy__item-text {
    font-size: 0.875rem;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
サイトマップページ関連のスタイル
*************************************************/
.p-sitemap {
  padding-top: 5.25rem;
  padding-bottom: 5rem;
  display: grid;
  gap: 5.25rem;
}
@media (max-width: 480px) {
  .p-sitemap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    gap: 2.5rem;
  }
}

.p-sitemap__nav {
  display: grid;
  gap: 2rem;
}
@media (max-width: 480px) {
  .p-sitemap__nav {
    gap: 1.5rem;
  }
}

.p-sitemap__nav-head {
  width: 100%;
  text-align: center;
  padding-block: 0.875rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background-color: var(--main-color);
  color: var(--white-color);
  position: relative;
}
@media (max-width: 480px) {
  .p-sitemap__nav-head {
    font-size: 1.25rem;
    padding-block: 0.625rem;
  }
}

.p-sitemap__nav-head::before {
  content: "";
  position: absolute;
  top: -0.34375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-color);
}

.p-sitemap__nav-head::after {
  content: "";
  position: absolute;
  bottom: -0.34375rem;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--main-color);
}

.p-sitemap__nav-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
  overflow: hidden;
  margin-right: -1px;
}
@media (max-width: 767px) {
  .p-sitemap__nav-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .p-sitemap__nav-items {
    row-gap: 1.5rem;
  }
}

.p-sitemap__nav-item {
  position: relative;
}

.p-sitemap__nav-item::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media (max-width: 480px) {
  .p-sitemap__nav-item::after {
    bottom: -0.75rem;
  }
}

.p-sitemap__nav-item:not(:nth-child(4n)) {
  background-image: repeating-linear-gradient(180deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}
@media (max-width: 767px) {
  .p-sitemap__nav-item:not(:nth-child(4n)) {
    background: initial;
  }
}

@media (max-width: 767px) {
  .p-sitemap__nav-item:not(:nth-child(2n)) {
    background-image: repeating-linear-gradient(180deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 1px 100%;
  }
}

.p-sitemap__nav-link {
  display: grid;
  grid-template-columns: 1fr 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 1rem;
  padding-block: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}
@media (max-width: 480px) {
  .p-sitemap__nav-link {
    grid-template-columns: 1fr 1rem;
    padding-inline: 0.5rem;
    padding-block: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-sitemap__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 90%;
  height: 1px;
  background-color: var(--main-color);
  scale: 0 1;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.p-sitemap__nav-icon {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}
.p-sitemap__nav-icon circle {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.p-sitemap__nav-icon path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

@media (any-hover: hover) {
  .p-sitemap__nav-link:hover {
    color: var(--main-color);
  }
  .p-sitemap__nav-link:hover::after {
    scale: 1 1;
  }
  .p-sitemap__nav-link:hover .p-sitemap__nav-icon circle {
    fill: var(--white-color);
  }
  .p-sitemap__nav-link:hover .p-sitemap__nav-icon path {
    stroke: var(--main-color);
  }
}
/* =================================
  Inc
================================= */
/* =================================
施工事例：詳細
================================= */
.p-seko-single {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 480px) {
  .p-seko-single {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-seko-single__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 480px) {
  .p-seko-single__categories {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 0.75rem;
  }
}

.p-seko-single__title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-seko-top {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 767px) {
  .p-seko-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .p-seko-top {
    margin-top: 1.5rem;
  }
}

.seko-top__summary {
  line-height: 1.8;
  font-weight: 500;
}
@media (max-width: 480px) {
  .seko-top__summary {
    font-size: 0.875rem;
  }
}

.p-seko-top__list {
  border-radius: 1rem;
  border: 1px solid var(--main-color);
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-seko-top__item {
  display: grid;
  grid-template-columns: 10.75rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 480px) {
  .p-seko-top__item {
    grid-template-columns: 8.125rem 1fr;
  }
}

.p-seko-top__item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 93.6974789916%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.p-seko-top__item-head {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  background-color: var(--light-green-color);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  height: 100%;
}
@media (max-width: 480px) {
  .p-seko-top__item-head {
    font-size: 0.875rem;
  }
}

.p-seko-top__item-body {
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .p-seko-top__item-body {
    font-size: 0.75rem;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
  }
}

.p-seko-single__contents {
  margin-top: 5rem;
}
@media (max-width: 480px) {
  .p-seko-single__contents {
    margin-top: 2.5rem;
  }
}

.p-seko-single__back {
  margin-top: 56px;
  margin-inline: auto;
}

/* =================================
施工事例：一覧
================================= */
.p-seko-archive {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
@media (max-width: 480px) {
  .p-seko-archive {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-seko-archive__categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 1rem;
}
@media (max-width: 767px) {
  .p-seko-archive__categories {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    row-gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .p-seko-archive__categories {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.p-seko-archive__category {
  border-radius: 1rem;
  border: 2px solid var(--main-color);
  overflow: hidden;
  height: 3.75rem;
}
@media (max-width: 767px) {
  .p-seko-archive__category {
    height: 3rem;
    border-radius: 0.75rem;
  }
}

.p-seko-archive__category-link {
  width: 100%;
  height: 100%;
  color: var(--white-color);
  background-color: var(--main-color);
  padding-inline: 0.75rem;
  padding-block: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  gap: 0.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-seko-archive__category-link {
    padding-inline: 0.5rem;
    padding-block: 0.375rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-seko-archive__category-link:hover {
    background-color: var(--white-color);
    color: var(--main-color);
  }
  .p-seko-archive__category-link:hover .p-seko-archive__category-icon circle {
    fill: var(--main-color);
  }
  .p-seko-archive__category-link:hover .p-seko-archive__category-icon path {
    stroke: var(--white-color);
  }
}

.p-seko-archive__category.is-current {
  border-color: var(--orange-color);
}
.p-seko-archive__category.is-current .p-seko-archive__category-link {
  pointer-events: none;
  background-color: var(--orange-color);
  color: var(--white-color);
}
.p-seko-archive__category.is-current .p-seko-archive__category-link .p-seko-archive__category-icon path {
  stroke: var(--orange-color);
}

.p-seko-archive__category-icon {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
  overflow: visible;
}

.p-seko-archive__title {
  margin-top: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .p-seko-archive__title {
    margin-top: 2.5rem;
    font-size: 1.5rem;
  }
}

.p-seko-archive__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.625rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-seko-archive__list {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .p-seko-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-bottom: 2.5rem;
  }
}

.p-seko-archive__item-link {
  row-gap: 1rem;
  display: grid;
}
@media (max-width: 480px) {
  .p-seko-archive__item-link {
    row-gap: 0.5rem;
  }
}

.p-seko-archive__item-img {
  aspect-ratio: 304/240;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
}
.p-seko-archive__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-seko-archive__item-categories {
  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;
}

.p-seko-archive__item-title {
  text-align: justify;
  font-weight: 600;
  line-height: 1.4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .p-seko-archive__item-title {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .p-seko-archive__item-link:hover .p-seko-archive__item-img img {
    scale: 1.1;
  }
  .p-seko-archive__item-link:hover .p-seko-archive__item-title {
    color: var(--main-color);
  }
}
.p-seko-archive__no-posts {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

/* =================================
  Inc
================================= */
/* =================================
お客様の声：詳細
================================= */
.p-voice-single {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  max-width: 780px;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .p-voice-single {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-voice-single__category {
  margin-top: 2.625rem;
}
@media (max-width: 480px) {
  .p-voice-single__category {
    margin-top: 1.5rem;
  }
}

.p-voice-single__img {
  margin-top: 1.125rem;
}
.p-voice-single__img img {
  width: 100%;
  height: auto;
}

.p-voice__single-customer-img {
  margin-top: 1.125rem;
  width: 31.875rem;
  margin-inline: auto;
}
.p-voice__single-customer-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .p-voice__single-customer-img {
    width: 20rem;
  }
}

.p-voice-single__back {
  margin-top: 2.625rem;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .p-voice-single__back {
    margin-top: 1.5rem;
  }
}

/* =================================
お客様の声：一覧
================================= */
.p-voice-archive {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 480px) {
  .p-voice-archive {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-voice-archive__list {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: grid;
  gap: 1rem;
}
@media (max-width: 480px) {
  .p-voice-archive__list {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }
}

.p-voice-archive__item {
  padding-bottom: 1rem;
}
@media (max-width: 480px) {
  .p-voice-archive__item {
    padding-bottom: 0.75rem;
  }
}

.p-voice-archive__item-link {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 480px) {
  .p-voice-archive__item-link {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
@media (any-hover: hover) {
  .p-voice-archive__item-link:hover .p-voice-archive__item-title {
    color: var(--main-color);
  }
}

.p-voice-archive__item-category {
  padding: 0.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
}
@media (max-width: 480px) {
  .p-voice-archive__item-category {
    padding: 0.375rem;
    font-size: 0.75rem;
    width: 8.75rem;
  }
}
.p-voice-archive__item-category--gaiheki {
  background-color: var(--red-color);
}
.p-voice-archive__item-category--interior {
  background-color: var(--pink-color);
}
.p-voice-archive__item-category--plumbing {
  background-color: var(--orange-color);
}
.p-voice-archive__item-category--exterior {
  background-color: var(--yellow-color);
}
.p-voice-archive__item-category--yane {
  background-color: var(--yellow-green-color);
}
.p-voice-archive__item-category--drone {
  background-color: var(--light-blue-color);
}
.p-voice-archive__item-category--other {
  background-color: var(--purple-color);
}

.p-voice-archive__item-title {
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* =================================
  Inc
================================= */
/* =================================
お知らせ：一覧
================================= */
.p-news-archive {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}

.p-news-archive__list {
  display: grid;
  gap: 1rem;
  margin-top: 2.625rem;
  padding-bottom: 2.625rem;
}

.p-news-archive__item {
  padding-bottom: 1rem;
}

.p-news-archive__item-link {
  display: grid;
  grid-template-columns: 6rem -webkit-max-content auto;
  grid-template-columns: 6rem max-content auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .p-news-archive__item-link {
    grid-template-columns: 6rem 1fr;
    gap: 0.5rem;
  }
}
@media (any-hover: hover) {
  .p-news-archive__item-link:hover {
    color: var(--main-color);
  }
}

.p-news-archive__date {
  font-family: var(--font-barlow);
  font-size: 1.125rem;
  font-weight: 500;
}

.p-news-archive__category.c-category {
  font-size: 0.75rem;
}

.p-news-archive__title {
  font-weight: 700;
}
@media (max-width: 480px) {
  .p-news-archive__title {
    grid-column: span 2;
  }
}

.p-news-archive__no-posts {
  font-weight: 700;
  text-align: center;
  margin-top: 2.625rem;
}

/* =================================
  Inc
================================= */
/* =================================
お役立ちコラム：一覧
================================= */
.p-column-archive {
  padding-top: 2.625rem;
  padding-bottom: 5rem;
}

.p-column-archive__list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.625rem;
  padding-bottom: 2.625rem;
}

.p-column-archive__item-link {
  display: grid;
  grid-template-columns: 8.25rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .p-column-archive__item-link {
    grid-template-columns: 5.375rem 1fr;
    gap: 0.5rem;
  }
}
@media (any-hover: hover) {
  .p-column-archive__item-link:hover {
    color: var(--main-color);
  }
  .p-column-archive__item-link:hover .p-column-archive__item-img img {
    scale: 1.2;
  }
}

.p-column-archive__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}
.p-column-archive__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-column-archive__category.c-category {
  font-size: 0.75rem;
  padding-inline: 0.75rem;
  padding-block: 0.375rem;
  line-height: 1;
}
@media (max-width: 480px) {
  .p-column-archive__category.c-category {
    font-size: 0.625rem;
    padding-inline: 0.5rem;
    padding-block: 0.25rem;
  }
}

.p-column-archive__title {
  font-weight: 700;
  padding-block: 1rem;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .p-column-archive__title {
    padding-block: 0.5rem;
    font-size: 0.875rem;
  }
}

.o-column-archive__item-text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .o-column-archive__item-text {
    margin-top: 0.5rem;
    font-size: 0.625rem;
  }
}

.p-column-archive__no-posts {
  font-weight: 700;
  text-align: center;
  margin-top: 2.625rem;
}

/* =================================
  Inc
================================= */
/* =================================
共通記事詳細
================================= */
.p-single {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-single {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-single__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-single__top {
    gap: 0.5rem;
  }
}

.p-single__date {
  font-family: var(--font-barlow);
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-single__date {
    font-size: 0.875rem;
  }
}

.p-single__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-single__categories {
    gap: 0.25rem;
  }
}

.p-single__thumbnail {
  margin-top: 0.875rem;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.p-single__thumbnail img {
  width: 100%;
  height: auto;
}

.p-single__content {
  margin-top: 3.5rem;
}
@media (max-width: 480px) {
  .p-single__content {
    margin-top: 1.5rem;
  }
}

.p-single__back {
  margin-top: 2.5rem;
  margin-inline: auto;
}

/* =================================
  Inc
================================= */
/*************************************************
お問い合わせページのスタイル
*************************************************/
.p-contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 480px) {
  .p-contact {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-contact__top-text {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 480px) {
  .p-contact__top-text {
    font-size: 0.875rem;
  }
}

.p-contact__steps {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 324fr 300fr 300fr;
  gap: 1.25rem;
  width: calc(100% - 2.5rem);
}
@media (max-width: 767px) {
  .p-contact__steps {
    gap: 1rem;
    width: calc(100% - 1.875rem);
  }
}
@media (max-width: 480px) {
  .p-contact__steps {
    width: calc(100% - 1.25rem);
    gap: 0.5rem;
  }
}

.p-contact__step {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--border-color);
  height: 5rem;
  display: grid;
  place-items: center;
  position: relative;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-contact__step {
    font-size: 1rem;
    height: 3.75rem;
  }
}
@media (max-width: 480px) {
  .p-contact__step {
    height: 2.5rem;
    font-size: 0.75rem;
  }
}

.p-contact__step::before {
  position: absolute;
  content: "";
  width: 3.5355339059rem;
  height: auto;
  aspect-ratio: 1;
  left: 0;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
}
@media (max-width: 767px) {
  .p-contact__step::before {
    width: 2.6516504294rem;
  }
}
@media (max-width: 480px) {
  .p-contact__step::before {
    width: 1.767766953rem;
  }
}

.p-contact__step::after {
  position: absolute;
  content: "";
  width: 3.5355339059rem;
  height: auto;
  aspect-ratio: 1;
  right: 0;
  top: 50%;
  translate: 50% -50%;
  rotate: 45deg;
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
}
@media (max-width: 767px) {
  .p-contact__step::after {
    width: 2.6516504294rem;
  }
}
@media (max-width: 480px) {
  .p-contact__step::after {
    width: 1.767766953rem;
  }
}

.p-contact__step--current {
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: 700;
  border: none;
}
.p-contact__step--current::before {
  border-color: var(--main-color);
}
.p-contact__step--current::after {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.p-contact__step:first-child {
  border-left: 1px solid var(--border-color);
  z-index: 10;
}
.p-contact__step:first-child.p-contact__step--current {
  border-color: var(--main-color);
}

.p-contact__step:nth-child(2) {
  z-index: 5;
}

.p-contact__step:first-child::before {
  display: none;
}

.p-contact__step:not(:first-child) {
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .p-contact__step:not(:first-child) {
    padding-left: 2.125rem;
  }
}
@media (max-width: 480px) {
  .p-contact__step:not(:first-child) {
    padding-left: 1.25rem;
  }
}
.p-contact__step:not(:first-child)::before {
  background-color: var(--white-color);
  z-index: 1;
}

.p-contact__step-text {
  position: relative;
  z-index: 10;
}

.p-contact__form-wrapper {
  margin-top: 2.5rem;
}
@media (max-width: 480px) {
  .p-contact__form-wrapper {
    margin-top: 1.5rem;
  }
}

.p-contact__form-list {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .p-contact__form-list {
    gap: 1.5rem;
  }
}

.p-contact__form-item {
  display: grid;
  grid-template-columns: 18.5rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .p-contact__form-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .p-contact__form-item {
    gap: 0.75rem;
  }
}

.p-contact__form-item-head {
  text-align: right;
  padding-right: 1.75rem;
}
@media (max-width: 767px) {
  .p-contact__form-item-head {
    text-align: left;
    padding-right: 0;
  }
}

.p-contact__form-item-label {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 480px) {
  .p-contact__form-item-label {
    font-size: 1rem;
  }
}
.p-contact__form-item-label::after {
  border: 1px solid var(--orange-color);
  padding-inline: 1.25rem;
  display: inline-block;
  border-radius: 1.125rem;
  margin-left: 1.75rem;
}
@media (max-width: 480px) {
  .p-contact__form-item-label::after {
    margin-left: 0.5rem;
    padding-inline: 0.75rem;
  }
}

.p-contact__form-item-label--required::after {
  content: "必須";
  color: var(--white-color);
  background-color: var(--orange-color);
}

.p-contact__form-item-label--optional::after {
  content: "任意";
  color: var(--orange-color);
  background-color: var(--white-color);
}

.p-contact__form-item-radio {
  font-size: 1.25rem;
  font-weight: 500;
  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: 1.75rem;
  cursor: pointer;
}
@media (max-width: 480px) {
  .p-contact__form-item-radio {
    font-size: 1rem;
    gap: 0.5rem;
  }
}
.p-contact__form-item-radio > span {
  margin-left: 0;
}

#form-confirm-step .p-contact__form-item-radio {
  cursor: default;
}

.p-contact__form-item-radio label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
@media (max-width: 480px) {
  .p-contact__form-item-radio label {
    gap: 0.25rem;
  }
}

#form-confirm-step .p-contact__form-item-radio label {
  cursor: default;
}

.p-contact__form-item-radio input[type=radio] {
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  position: relative;
  margin: 0;
  cursor: pointer;
}
@media (max-width: 480px) {
  .p-contact__form-item-radio input[type=radio] {
    width: 1rem;
  }
}
.p-contact__form-item-radio input[type=radio]:checked {
  border-color: var(--main-color);
}

#form-confirm-step .p-contact__form-item-radio input[type=radio] {
  cursor: default;
}

.p-contact__form-item-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background-color: var(--main-color);
}
@media (max-width: 480px) {
  .p-contact__form-item-radio input[type=radio]:checked::after {
    width: 0.5rem;
  }
}

#form-confirm-step .p-contact__form-item-radio input[type=radio]:checked::after {
  cursor: default;
}

.p-contact__form-item-text,
.p-contact__form-item-tel,
.p-contact__form-item-email,
.p-contact__form-item-zipcode,
.p-contact__form-item-address,
.p-contact__form-item-textarea {
  font-size: 1.25rem;
  font-weight: 500;
  width: 100%;
  padding-inline: 1rem;
  padding-block: 1.125rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
}
@media (max-width: 480px) {
  .p-contact__form-item-text,
  .p-contact__form-item-tel,
  .p-contact__form-item-email,
  .p-contact__form-item-zipcode,
  .p-contact__form-item-address,
  .p-contact__form-item-textarea {
    font-size: 1rem;
    padding-inline: 0.5rem;
    padding-block: 0.75rem;
  }
}
.p-contact__form-item-text::-webkit-input-placeholder, .p-contact__form-item-tel::-webkit-input-placeholder, .p-contact__form-item-email::-webkit-input-placeholder, .p-contact__form-item-zipcode::-webkit-input-placeholder, .p-contact__form-item-address::-webkit-input-placeholder, .p-contact__form-item-textarea::-webkit-input-placeholder {
  color: var(--border-color);
}
.p-contact__form-item-text::-moz-placeholder, .p-contact__form-item-tel::-moz-placeholder, .p-contact__form-item-email::-moz-placeholder, .p-contact__form-item-zipcode::-moz-placeholder, .p-contact__form-item-address::-moz-placeholder, .p-contact__form-item-textarea::-moz-placeholder {
  color: var(--border-color);
}
.p-contact__form-item-text:-ms-input-placeholder, .p-contact__form-item-tel:-ms-input-placeholder, .p-contact__form-item-email:-ms-input-placeholder, .p-contact__form-item-zipcode:-ms-input-placeholder, .p-contact__form-item-address:-ms-input-placeholder, .p-contact__form-item-textarea:-ms-input-placeholder {
  color: var(--border-color);
}
.p-contact__form-item-text::-ms-input-placeholder, .p-contact__form-item-tel::-ms-input-placeholder, .p-contact__form-item-email::-ms-input-placeholder, .p-contact__form-item-zipcode::-ms-input-placeholder, .p-contact__form-item-address::-ms-input-placeholder, .p-contact__form-item-textarea::-ms-input-placeholder {
  color: var(--border-color);
}
.p-contact__form-item-text::placeholder,
.p-contact__form-item-tel::placeholder,
.p-contact__form-item-email::placeholder,
.p-contact__form-item-zipcode::placeholder,
.p-contact__form-item-address::placeholder,
.p-contact__form-item-textarea::placeholder {
  color: var(--border-color);
}

.p-contact__form-item-text,
.p-contact__form-item-tel,
.p-contact__form-item-email,
.p-contact__form-item-zipcode,
.p-contact__form-item-address {
  line-height: 1;
}

.p-contact__form-item--address {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.p-contact__form-item--address .p-contact__form-item-body {
  display: grid;
  gap: 1rem;
}
@media (max-width: 480px) {
  .p-contact__form-item--address .p-contact__form-item-body {
    gap: 0.75rem;
  }
}

.p-contact__form-zipcode-symbol {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 480px) {
  .p-contact__form-zipcode-symbol {
    font-size: 1rem;
  }
}

.p-contact__form-zipcode-text {
  width: 13.75rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding-inline: 1rem;
  padding-block: 1.125rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  margin-left: 0.875rem;
}
@media (max-width: 480px) {
  .p-contact__form-zipcode-text {
    font-size: 1rem;
    padding-inline: 0.5rem;
    padding-block: 0.75rem;
    margin-left: 0.5rem;
  }
}
.p-contact__form-zipcode-text::-webkit-input-placeholder {
  color: var(--border-color);
}
.p-contact__form-zipcode-text::-moz-placeholder {
  color: var(--border-color);
}
.p-contact__form-zipcode-text:-ms-input-placeholder {
  color: var(--border-color);
}
.p-contact__form-zipcode-text::-ms-input-placeholder {
  color: var(--border-color);
}
.p-contact__form-zipcode-text::placeholder {
  color: var(--border-color);
}

.p-contact__form-item--matters {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.p-contact__form-item-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.25rem, 1fr));
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1.5rem;
}
@media (max-width: 480px) {
  .p-contact__form-item-checkbox {
    font-size: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0.75rem;
  }
}
.p-contact__form-item-checkbox > span {
  margin-left: 0;
}
.p-contact__form-item-checkbox label {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  cursor: pointer;
}
.p-contact__form-item-checkbox #form-confirm-step .p-contact__form-item-checkbox label {
  cursor: default;
}
.p-contact__form-item-checkbox input[type=checkbox] {
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  border: 2px solid var(--border-color);
  position: relative;
  margin: 0;
  border-radius: 0.25rem;
  cursor: pointer;
}
.p-contact__form-item-checkbox input[type=checkbox]:checked {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.p-contact__form-item-checkbox #form-confirm-step .p-contact__form-item-checkbox input[type=checkbox] {
  cursor: default;
}
.p-contact__form-item-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 12/10;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url("../../assets/img/contact/icon_check.svg") no-repeat center center/contain;
}

.p-contact__form-checkbox-text {
  margin-top: 1.5rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-contact__form-checkbox-text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-contact__form-item--content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.p-contact__form-acceptance-wrapper {
  margin-top: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-contact__form-acceptance-wrapper {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}
.p-contact__form-acceptance-wrapper .wpcf7-list-item {
  margin-left: 0;
}
.p-contact__form-acceptance-wrapper label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.p-contact__form-acceptance-wrapper #form-confirm-step .p-contact__form-item-checkbox label {
  cursor: default;
}
.p-contact__form-acceptance-wrapper input[type=checkbox] {
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  border: 2px solid var(--border-color);
  position: relative;
  margin: 0;
  cursor: pointer;
}
.p-contact__form-acceptance-wrapper input[type=checkbox]:checked {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.p-contact__form-acceptance-wrapper #form-confirm-step .p-contact__form-item-checkbox input[type=checkbox] {
  cursor: default;
}
.p-contact__form-acceptance-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 12/10;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url("../../assets/img/contact/icon_check.svg") no-repeat center center/contain;
}

/* =========================================
   確認画面用スタイル
   ========================================= */
.p-contact__btn-wrapper--confirm {
  margin-top: 2.5rem;
  display: grid;
}

/* 戻るボタン（修正する）のデザイン */
.p-contact__form-submit.p-contact__form-submit--back {
  background-color: var(--white-color);
  color: var(--main-color);
  background-position: left 1rem center;
  background-image: url("../../assets/img/common/icon_arrow_back.svg");
}

.p-contact__form-submit {
  margin-top: 1.5rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--main-color);
  background-image: url("../../assets/img/common/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.75rem 1.75rem;
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: 700;
  padding-inline: 3.75rem;
  padding-block: 1.125rem;
  border-radius: 9999px;
  width: 26.5rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease, background-image 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, background-image 0.3s ease, color 0.3s ease;
  display: block;
  text-decoration: none;
  border: 3px solid var(--main-color);
}
@media (max-width: 480px) {
  .p-contact__form-submit {
    width: 100%;
    padding-inline: 3.125rem;
    padding-block: 0.75rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-contact__form-submit:not([disabled]):hover {
    background-color: white;
    background-image: url("../../assets/img/common/icon_arrow_reverse.svg");
    color: var(--main-color);
    cursor: pointer;
  }
}

@media (any-hover: hover) {
  .p-contact__form-submit.p-contact__form-submit--back:hover:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    background-image: url("../../assets/img/common/icon_arrow_back_reverse.svg");
    cursor: pointer;
  }
}

form.sent .wpcf7-response-output,
form.status-sent .wpcf7-response-output {
  display: none !important;
}

.p-contact__thanks-wrapper {
  margin-top: 5rem;
}
@media (max-width: 480px) {
  .p-contact__thanks-wrapper {
    margin-top: 2.5rem;
  }
}

.p-contact__thanks-text-wrapper {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .p-contact__thanks-text-wrapper {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
}

.p-contact__thanks-text {
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
}
@media (max-width: 480px) {
  .p-contact__thanks-text {
    font-size: 0.875rem;
  }
}

.p-contact__thanks-link {
  margin-top: 5rem;
}
@media (max-width: 480px) {
  .p-contact__thanks-link {
    margin-top: 2.5rem;
  }
}

/* =================================
  Inc
================================= */
/*************************************************
404ページのスタイル
*************************************************/
.p-404 {
  padding-bottom: 5rem;
}

.p-404__img {
  max-width: 45.3125rem;
  height: auto;
  margin-inline: auto;
}
.p-404__img img {
  width: 100%;
}

.p-404__main-text {
  margin-top: 2.875rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 480px) {
  .p-404__main-text {
    font-size: 1.25rem;
    word-break: keep-all;
    line-height: 1.4;
  }
}

.p-404-sub__text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 500;
}
@media (max-width: 480px) {
  .p-404-sub__text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-404__nav-wrapper {
  margin-top: 4.25rem;
  display: grid;
  gap: 2.5rem;
  max-width: 996px;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .p-404__nav-wrapper {
    margin-top: 2.5rem;
  }
}

.p-404__nav {
  display: grid;
  gap: 0.5rem;
}

.p-404__nav-head {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .p-404__nav-head {
    font-size: 1rem;
  }
}

.p-404__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 480px) {
  .p-404__nav-items {
    gap: 0.75rem;
  }
}

.p-404__nav-item {
  font-weight: 500;
  position: relative;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .p-404__nav-item {
    font-size: 0.75rem;
  }
}

.p-404__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.46875rem;
  translate: 100% -50%;
  width: 1px;
  height: 1lh;
  background-color: var(--text-color);
  scale: 1.2 1;
}
@media (max-width: 480px) {
  .p-404__nav-item:not(:last-child)::after {
    right: -0.34375rem;
  }
}

.p-404__nav-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}

.p-404__nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  scale: 0 1;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

@media (any-hover: hover) {
  .p-404__nav-link:hover {
    color: var(--main-color);
  }
  .p-404__nav-link:hover::after {
    scale: 1 1;
  }
}
/* =================================
  Inc
================================= */
/*************************************************
非表示関連のスタイル
*************************************************/
.u-hidden-sp {
  display: inline-block !important;
}
@media (max-width: 480px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.u-hidden-pc {
  display: none !important;
}
@media (max-width: 767px) {
  .u-hidden-pc {
    display: inline-block !important;
  }
}

.u-visibility-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/* =================================
  Inc
================================= */
/*************************************************
テキスト関連のスタイル
*************************************************/
.u-text-center {
  text-align: center;
}

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

.u-text-left {
  text-align: left;
}

.u-text-marker {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--baby-yellow-color)), to(var(--baby-yellow-color)));
  background-image: linear-gradient(var(--baby-yellow-color), var(--baby-yellow-color));
  background-size: 100% 0.9375rem;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .u-text-marker {
    background-size: 100% 1rem;
  }
}

.u-text-orange {
  color: var(--orange-color);
}

.u-text-main-color {
  color: var(--main-color);
}

.u-text-bold {
  font-weight: 700;
}

.u-text-spacing-minus07 {
  letter-spacing: -0.07em;
}

.u-text-spacing-minus06 {
  letter-spacing: -0.06em;
}

.u-border-bottom-main-color {
  background-image: repeating-linear-gradient(90deg, var(--main-color), var(--main-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.u-border-bottom-gray-color {
  background-image: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

/* =================================
  Inc
================================= */
/*************************************************
アニメーション関連のスタイル
*************************************************/
.js-fadeUp {
  opacity: 0;
  translate: 0 1.25rem;
  -webkit-transition: opacity 0.6s ease, translate 0.6s ease;
  transition: opacity 0.6s ease, translate 0.6s ease;
}

.js-fadeUp.is-active {
  opacity: 1;
  translate: 0 0;
}

.js-accordion {
  overflow: hidden;
}

.js-accordion.is-animating > .js-accordion-summary {
  pointer-events: none;
}