@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: 'Noto Sans JP', sans-serif;
  --color-text: #000000;
  --color-link: #843636;
  --color-hover: #cfb8a9;
  --color-base: #843636;
  --color-main: #cfb8a9;
  --color-sub1: #484848;
  --color-sub2: #ddcaca;
  --color-sub3: #f7f2eb;
  --color-sub4: #888888;
  --color-sub5: #f6f6f6;
  --color-sub6: #efe8e4;
  --color-sub7: #f3efe7;
  --color-sub8: #bf9a9a;
  --color-sub9: #bcbcbc;
  --color-sub10: #949494;
  --color-sub11: #ecd9b3;
  --color-sub12: #f6f1ee;
  --color-sub13: #e5e5e5;
  --color-sub14: #ffeedb;
  --color-sub15: #cdf0f0;
  --color-sub16: #cef3de;
  --color-sub17: #f6eee0;
  --color-sub18: #fff1f0;
  --color-sub19: #e1e0e0;
  --color-sub20: #f3f3f3;
  --color-sub21: #f8e5e4;
  --color-sub22: #e9dcc7;
  --color-sub23: #b7e7e7;
  --color-sub24: #fff7ee;
  --color-sub25: #fafafa;
  --color-subA: #f57e06;
  --color-subB: #ffa64c;
  --color-subC: #009a9a;
  --color-subD: #57bebe;
  --color-subE: #039242;
  --color-subF: #75b993;
  --color-subG: #805000;
  --color-subH: #a28b64;
  --color-subI: #eb938d;
  --color-subJ: #fea9a4;
  --color-subK: #000000;
  --color-subL: #2c312e;
  --color-grd1: rgba(239, 232, 228, 0);
  --color-grd2: rgba(239, 232, 228, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 140rem;
  --inner-width3: 160rem;
  --inner-width4: 120rem;
  --inner-width5: 130rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 1px 4px 0 rgba(0, 0, 0, .3);
  --box-shadow3: 0 0 6px 0 rgba(0, 0, 0, .3);
  --text-shadow: 0 4px 4px rgba(0, 0, 0, .3);
  --text-shadow2: 0 0 3px rgba(248, 242, 232, .65);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

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

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
.c-section__secondary {
  line-height: 1.8;
  color: var(--color-sub1);
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
}
.c-section__secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__secondary--wide {
  max-width: none;
  margin-inline: -2rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary--wide {
    margin-inline: -5rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.c-section__bg {
  margin-inline: -2rem;
  padding: 12rem 2rem 10rem;
  background-color: var(--color-sub25);
}
@media screen and (min-width: 1100px), print {
  .c-section__bg {
    margin-inline: -5rem;
    padding: 17rem 5rem 15rem;
  }
}
.c-section__bg:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__bg:not(:last-child) {
    margin-bottom: 15rem;
  }
}

/* 共通ヘッダー */
/* 共通見出し */
.c-heading {
  position: relative;
  padding-bottom: 2rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-feature-settings: "palt" 1;
}
.c-heading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: currentColor; /* ドットの色 */
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: -2.4rem 0 0 var(--color-sub2), 2.4rem 0 0 var(--color-sub2);
}
.c-heading::after {
  content: attr(data-subtitle);
  display: block;
  margin-top: 1.4rem;
  font-weight: 300;
  font-size: 0.55em;
  color: var(--color-sub4);
}
@media screen and (min-width: 768px), print {
  .c-heading {
    padding-bottom: 2.5rem;
    font-size: 3rem;
  }
  .c-heading::before {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading {
    padding-bottom: 3.5rem;
    font-size: 3.6rem;
  }
}
.c-heading.__h2 {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h2 {
    margin-bottom: 4rem;
  }
}
.c-heading.__h3 {
  display: grid;
  place-content: center;
  min-height: 6.5rem;
  padding: 1rem;
  font-size: 2rem;
  color: #fff;
  letter-spacing: normal;
  border-radius: 1rem 1rem 0 0;
}
.c-heading.__h3::before, .c-heading.__h3::after {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h3 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h3 {
    min-height: 8rem;
    font-size: 2.8rem;
  }
}
/* リード文 */
.c-lead:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1100px), print {
  .c-lead:not(:last-child) {
    margin-bottom: 3rem;
  }
}

/* コンテンツ */
.c-content {
  padding: 2rem;
}
.c-content:not(:last-child) {
  margin-bottom: 3rem;
}
.c-content__inner {
  padding: 2rem;
}
.c-content__inner + .c-content__inner {
  margin-top: 1rem;
}
.c-content__side {
  border-top: 5px solid var(--color-sub20);
}
.c-content__more {
  margin-bottom: -2rem;
  padding: 2rem 0;
}
@media screen and (min-width: 768px), print {
  .c-content {
    padding: 4rem;
  }
  .c-content__inner {
    margin: 0;
    padding: 3rem;
  }
  .c-content__more {
    margin-bottom: -4rem;
    padding: 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-content {
    padding: 5rem;
  }
  .c-content:not(:last-child) {
    margin-bottom: 4rem;
  }
  .c-content__inner {
    padding: 5rem;
  }
  .c-content__more {
    margin-bottom: -5rem;
    padding: 4rem 0;
  }
}

/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.1rem 4.2rem 1.1rem 2.2rem;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  border-radius: 10em;
  border: 1px solid var(--color-link);
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 0.85ch;
  height: 0.85ch;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: var(--color-link);
    background-color: #fff;
  }
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
.c-inner__md {
  max-width: var(--inner-width4);
}
.c-inner__lg {
  max-width: var(--inner-width2);
}
.c-inner__xl {
  max-width: var(--inner-width3);
}

/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  margin-inline: -4px;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2rem 1rem;
  border-bottom-width: 1px;
  border-style: solid;
}
.c-table th {
  padding-right: 0;
  border-color: var(--color-base);
}
.c-table td {
  border-color: var(--color-sub13);
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-link);
}
.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top-width: 1px;
  border-top-style: solid;
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 3rem;
  }
  .c-table th,
  .c-table td {
    border-top-width: 1px;
    border-bottom: none;
  }
  .c-table th {
    width: auto !important;
    padding: 1rem 1rem;
    font-size: 1.6rem;
  }
  .c-table td {
    padding: 1.5rem 1rem 0 1rem;
  }
}

/* 共通お問い合わせ */
.c-global-contact {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .c-global-contact {
    display: flex;
    height: 10rem;
  }
  .c-global-contact__item {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .c-global-contact {
    height: 12rem;
  }
}

/* 共通お問い合わせ（電話）*/
.c-global-tel {
  height: 100%;
}
.c-global-tel .tel-link {
  display: grid;
  place-content: center;
  height: 8rem;
  padding-left: 6rem;
  color: #fff;
  text-align: left;
  border-radius: 1rem 1rem 0 0;
  background-color: var(--color-link);
}
.c-global-tel .tel-link[href] {
  color: #fff;
}
.c-global-tel .tel-link[href]:hover {
  text-decoration: none;
}
.c-global-tel__num {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1em;
  font-weight: 700;
  font-size: 2.8rem;
}
.c-global-tel__num::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.4rem;
  left: -6rem;
  width: 4rem;
  height: 4rem;
  background: url(../img/base/icon-tel2_wht.svg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .c-global-tel .tel-link {
    height: 100%;
    padding-left: 10rem;
    border-radius: 10em 0 0 10em;
  }
  .c-global-tel__num {
    justify-content: flex-start;
  }
  .c-global-tel__num::before {
    top: -2.4rem;
    left: -7rem;
    width: 5.2rem;
    height: 5.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-global-tel__num {
    font-size: 3.6rem;
  }
  .c-global-tel__num::before {
    top: -2rem;
  }
}

/* 共通お問い合わせ（メール）*/
.c-global-mail {
  height: 100%;
}
.c-global-mail__link {
  display: grid;
  place-content: center;
  height: 8rem;
  color: var(--color-link);
  border-radius: 0 0 1rem 1rem;
  background-color: var(--color-sub3);
  transition: color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.c-global-mail__link:hover {
  text-decoration: none;
  color: var(--color-link);
}
@media (hover: hover) and (pointer: fine) {
  .c-global-mail__link:hover {
    background-color: #fff;
    box-shadow: var(--box-shadow3);
  }
  .c-global-mail__link:hover .c-global-mail__label::before {
    transform: scale(1.05);
  }
}
.c-global-mail__label {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: normal;
}
.c-global-mail__label::before {
  content: "";
  aspect-ratio: 54/37;
  display: block;
  width: 3.6rem;
  margin: 0 2rem 0 0.5rem;
  background: url(../img/base/icon-mail2_red.svg) no-repeat center;
  background-size: cover;
  transition: transform var(--transition);
}
@media screen and (min-width: 768px), print {
  .c-global-mail__link {
    height: 100%;
    border-radius: 0 10em 10em 0;
  }
  .c-global-mail__label {
    font-size: 2.4rem;
  }
  .c-global-mail__label::before {
    width: 4.4rem;
    margin: 0 2rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-global-mail__label {
    font-size: 2.8rem;
  }
  .c-global-mail__label::before {
    width: 5.4rem;
  }
}

/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: none;
}
.u-list-disc li {
  position: relative;
  padding-left: 1em;
}
.u-list-disc li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: currentColor;
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
}
@media screen and (min-width: 1600px), print {
  .u-text-xl-left {
    text-align: left;
  }
  .u-text-xl-center {
    text-align: center;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
  .u-d-md-inline {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

.u-fs__xs {
  font-size: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-fs__xs {
    font-size: 1.2rem;
  }
}
.u-fs__sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .u-fs__sm {
    font-size: 1.4rem;
  }
}
.u-fs__lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .u-fs__lg {
    font-size: 1.8rem;
  }
}
.u-fs__xl {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .u-fs__xl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-fs__xl {
    font-size: 2rem;
  }
}

.u-fw-medium {
  font-weight: 500;
}
.u-fw-medium * {
  font-weight: 500;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-fw-exbold {
  font-weight: 800;
}
.u-fw-exbold * {
  font-weight: 800;
}
.u-bg-dark {
  background-color: var(--color-sub1);
}
.u-bg-light {
  background-color: var(--color-sub12);
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-black {
  background-color: #000;
}
.u-bg-orange {
  background-color: var(--color-subA);
}
.u-bg-turquoise {
  background-color: var(--color-subC);
}
.u-bg-green {
  background-color: var(--color-subE);
}
.u-bg-brown {
  background-color: var(--color-subG);
}
.u-bg-pink {
  background-color: var(--color-subI);
}
.u-bg-sub1_01 {
  background-color: var(--color-sub14);
}
.u-bg-sub1_02 {
  background-color: var(--color-sub24);
}
.u-bg-sub2_01 {
  background-color: var(--color-sub23);
}
.u-bg-sub2_02 {
  background-color: var(--color-sub15);
}
.u-bg-sub3_01 {
  background-color: var(--color-sub16);
}
.u-bg-sub3_02 {
  background-color: var(--color-sub16);
}
.u-bg-sub4_01 {
  background-color: var(--color-sub22);
}
.u-bg-sub4_02 {
  background-color: var(--color-sub17);
}
.u-bg-sub5_01 {
  background-color: var(--color-sub21);
}
.u-bg-sub5_02 {
  background-color: var(--color-sub18);
}
.u-bg-sub6_01 {
  background-color: var(--color-sub19);
}
.u-bg-sub6_02 {
  background-color: var(--color-sub20);
}

.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-text {
  color: var(--color-sub1);
}
.u-color-white {
  color: #fff;
}
.u-color-black {
  color: #000;
}
.u-color-red {
  color: #f00;
}
.u-color-orange {
  color: var(--color-subA);
}
.u-color-turquoise {
  color: var(--color-subC);
}
.u-color-green {
  color: var(--color-subE);
}
.u-color-brown {
  color: var(--color-subG);
}
.u-color-pink {
  color: var(--color-subI);
}
.u-color-danger {
  color: #b22c00;
}
.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-w-100 {
  width: 100%;
}

.u-h-100 {
  height: 100%;
}

.u-lh__sm {
  line-height: 1.2;
}
.u-lh__base {
  line-height: 1.5;
}
.u-lh__lg {
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .u-lh__lg {
    line-height: 2;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -10rem;
  margin-bottom: 10rem;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -16rem;
    margin-bottom: 16rem;
  }
}

.u-scroll-top {
  scroll-margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .u-scroll-top {
    scroll-margin-top: 16rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
.u-box-radius__lg {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius__lg {
    border-radius: 2rem;
  }
}
.u-box-radius-top {
  border-radius: 1rem 1rem 0 0;
}
.u-box-radius-bottom {
  border-radius: 0 0 1rem 1rem;
}

.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.u-img-radius {
  border-radius: 1rem;
}
.u-img-radius-left {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-img-radius-left {
    border-radius: 1rem 0 0 1rem;
  }
}

@media screen and (min-width: 768px), print {
  .u-float-md-right {
    float: right;
  }
}
.u-marker {
  display: inline;
  background: linear-gradient(var(--color-grd1) 70%, var(--color-grd2) 0%);
}
.u-marker-white {
  background: linear-gradient(rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255) 0%);
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

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

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .l-wrapper {
    overflow: visible;
  }
}

/* --------------------------------

  header

-------------------------------- */
.l-header {
  padding-top: 6rem;
}
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}
.l-header__info {
  display: none;
}
.l-header__title {
  position: relative;
  padding-bottom: 10rem;
}
.l-header__title::before {
  content: "";
  aspect-ratio: 269/129;
  display: block;
  position: absolute;
  top: 24rem;
  left: 0;
  width: 15rem;
  background: url(../img/base/bg-img01.svg) center no-repeat;
  background-size: cover;
  pointer-events: none;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px), print {
  .l-header {
    padding-top: 20rem;
  }
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
  .l-header__info {
    display: grid;
    place-content: center;
    position: absolute;
    top: 0;
    right: 12rem;
    width: 28rem;
    height: 10rem;
    padding: 0 0 0.5rem 1rem;
    overflow: hidden;
  }
  .l-header__info::before, .l-header__info::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .l-header__info::before {
    top: 0;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    margin: auto;
    border-radius: 100%;
    border: 1px dotted var(--color-base);
  }
  .l-header__info::after {
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #fff;
  }
  .l-header__title::before {
    top: 26rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header__title::before {
    top: 30rem;
    width: 27rem;
  }
}
@media screen and (min-width: 1280px), print {
  .l-header {
    padding-top: 10rem;
  }
  .l-header__info {
    padding: 0.5rem 0 0 0.5rem;
  }
}

/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 19rem;
}
@media screen and (min-width: 768px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 2.2rem;
    left: 2.5rem;
  }
  .c-header-logo img {
    width: 26rem;
  }
}
@media screen and (min-width: 1600px), print {
  .c-header-logo a {
    top: 1.5rem;
    left: 1.5rem;
  }
  .c-header-logo img {
    width: 31.6rem;
  }
}

/* ヘッダー住所・電話 */
.c-header-info {
  position: relative;
  z-index: 1;
}
.c-header-info__tel .tel-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-weight: 700;
  font-size: 2.7rem;
  color: var(--color-base);
  letter-spacing: normal;
}
.c-header-info__tel .tel-link::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 2.8rem;
  margin-right: 1rem;
  background: url(../img/base/icon-tel_red.svg) center no-repeat;
  background-size: cover;
}
.c-header-info__add {
  margin: 0.5rem 0 -0.5rem;
  font-size: 1.2rem;
}
/* お問い合わせボタン（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 768px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-base);
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7rem;
  right: 0;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-size: 1.1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* お問い合わせボタン（メール）*/
.c-contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  padding: 0 1rem;
  overflow: hidden;
  z-index: 900;
}
@media screen and (min-width: 768px), print {
  .c-contact-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    z-index: 1010;
  }
}
.c-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
@media screen and (min-width: 768px), print {
  .c-contact-button a {
    display: grid;
    place-content: center;
    width: 12rem;
    height: 10rem;
    border-radius: 0;
    letter-spacing: normal;
  }
}
.c-contact-button a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-button a:hover {
    background-color: var(--color-subA);
  }
}
.c-contact-button__label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
}
.c-contact-button__label::before {
  content: "";
  aspect-ratio: 32/25;
  display: block;
  width: 3.4rem;
  margin: 0 2rem 0 -2rem;
  background: url(../img/base/icon-mail_wht.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .c-contact-button__label {
    display: block;
    font-size: 1.6rem;
  }
  .c-contact-button__label::before {
    width: 3.2rem;
    margin: 0 auto 1rem;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .is-fixed .l-header__container {
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .l-header__container,
  .is-fixed .c-contact-button {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -28rem;
  width: 28rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-sub3);
  z-index: 10;
}
.l-nav__info {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    background-color: #fff;
  }
  .l-nav__container {
    padding-top: 10rem;
    background-color: transparent;
    overflow: visible;
  }
  .l-nav__info {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .l-nav__container {
    display: flex;
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 7rem 1.2rem 2rem;
  background-color: #fff;
}
.c-nav__item {
  position: relative;
}
.c-nav__item + .c-nav__item {
  margin-top: 0.5rem;
}
.c-nav__link, .c-nav__label {
  display: flex;
  align-items: center;
  position: relative;
  height: 5rem;
  padding: 0;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-sub1);
  letter-spacing: normal;
}
.c-nav__link::before, .c-nav__label::before {
  content: "";
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  margin-right: 1rem;
  border-radius: 100%;
  background-color: var(--color-hover);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 58% auto;
}
.c-nav__link:hover {
  text-decoration: none;
  color: var(--color-sub1);
}
.c-nav__item.is-current .c-nav__link, .c-nav__item.is-current .c-nav__label {
  color: var(--color-link);
}
.c-nav__item.is-current .c-nav__link::before, .c-nav__item.is-current .c-nav__label::before {
  background-color: currentColor;
}
.c-nav__item--home .c-nav__link::before {
  background-image: url(../img/menu/nav1.svg);
}
.c-nav__item--news .c-nav__link::before {
  background-image: url(../img/menu/nav2.svg);
}
.c-nav__item--company .c-nav__label::before {
  background-image: url(../img/menu/nav3.svg);
}
.c-nav__item--service .c-nav__label::before {
  background-image: url(../img/menu/nav4.svg);
}
.c-nav__item--works .c-nav__link::before {
  background-image: url(../img/menu/nav5.svg);
}
.c-nav__item--item .c-nav__link::before {
  background-image: url(../img/menu/nav6.svg);
}
.c-nav__item--contact .c-nav__link::before {
  background-image: url(../img/menu/nav7.svg);
}
@media screen and (min-width: 768px), print {
  .c-nav {
    display: flex;
    padding: 0 2rem 0 0;
    border-top: 1px solid var(--color-sub8);
    background-color: transparent;
  }
  .c-nav__item {
    width: 14.2857142857%;
  }
  .c-nav__item + .c-nav__item {
    margin: 0;
  }
  .c-nav__link, .c-nav__label {
    flex-direction: column;
    justify-content: center;
    height: 10rem;
    padding: 0;
    font-size: 1.6rem;
    transition: color var(--transition);
  }
  .c-nav__link::before, .c-nav__label::before {
    width: 4rem;
    height: 4rem;
    margin: 0 0 0.5rem;
    transition: background-color var(--transition);
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    justify-content: center;
    padding: 0;
  }
  .c-nav__item {
    width: auto;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 5rem;
  }
  .c-nav__link, .c-nav__label {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav {
    margin: 0 0 0 auto;
    padding: 0 43rem 0 0;
    border-top: none;
  }
  .c-nav__item {
    flex-grow: 1;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2.5rem;
  }
  .c-nav__item--contact {
    display: none;
  }
}
@media screen and (min-width: 1600px), print {
  .c-nav__item + .c-nav__item {
    margin-left: 3.5rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-link);
  }
  .c-nav__link:hover::before {
    background-color: currentColor;
  }
}

/* サブメニュー */
.c-subnav {
  border-radius: 1rem;
  background-color: var(--color-base);
}
.c-subnav__item + .c-subnav__item {
  border-top: 1px solid #fff;
}
.c-subnav__link {
  display: block;
  padding: 1.5rem 0;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}
.c-subnav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .c-subnav {
    position: relative;
    left: 50%;
    width: 24rem;
    margin: 0 0 0 -12rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  .c-subnav__item + .c-subnav__item {
    border-top: none;
  }
  .c-subnav__item + .c-subnav__item .c-subnav__link::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    border-bottom: 1px dashed currentColor;
  }
  .c-subnav__link {
    display: grid;
    place-content: center;
    position: relative;
    height: 5.4rem;
    padding: 0;
    color: var(--color-sub1);
  }
  .c-subnav__link:hover {
    color: var(--color-sub1);
  }
}
@media screen and (min-width: 1100px), print {
  .c-subnav {
    width: 28rem;
    margin: 0 0 0 -14rem;
  }
  .c-subnav__link {
    height: 6rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-subnav__item:hover {
    position: relative;
    z-index: 1;
  }
  .c-subnav__link:hover {
    color: #fff;
    background-color: var(--color-link);
  }
  .c-subnav__link:hover::before {
    border-bottom-style: solid;
  }
}

/* 会社情報 */
.c-nav-info {
  padding: 4rem 2rem;
}
.c-nav-info__logo {
  margin-bottom: 1rem;
}
.c-nav-info__time {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.c-nav-info__add {
  margin: 0 -2rem 1rem;
  font-size: 1.4rem;
}
.c-nav-info__tel {
  font-size: 1.6rem;
}
.c-nav-info__tel .tel-link {
  font-weight: 700;
}
.c-nav-info__tel .tel-link[href] {
  font-weight: 700;
  color: var(--color-text);
}
.c-nav-info__tel .tel-link[href]:hover {
  color: var(--color-text);
}
.c-nav-info__fax {
  font-weight: 700;
  font-size: 1.6rem;
}

/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: #fff;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 768px), print {
  .c-nav-button {
    display: none;
  }
}
.nav-open .c-nav-button {
  display: none;
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-link);
  text-align: center;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -1.4rem;
  width: 3rem;
  height: 1.8rem;
  margin: auto;
  border-top: 2px solid var(--color-link);
  border-bottom: 2px solid var(--color-link);
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-link);
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button__close {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  .nav-open .c-nav-button__close {
    display: block;
  }
}
.c-nav-button__close::before {
  content: "CLOSE";
}
.c-nav-button__close .c-nav-button__icon {
  border: none;
}
.c-nav-button__close .c-nav-button__icon::before {
  transform: rotate(45deg);
}
.c-nav-button__close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 768px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.65;
  cursor: pointer;
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.5rem;
  border-color: var(--color-link);
  transform: rotate(-45deg);
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle.show + .c-nav__link, .dropdown-toggle.show + .c-nav__label {
  color: var(--color-link);
}
.dropdown-toggle.show + .c-nav__link::before, .dropdown-toggle.show + .c-nav__label::before {
  background-color: currentColor;
}
.c-nav__item.is-current .dropdown-toggle::before {
  border-color: var(--color-link);
}
@media screen and (min-width: 768px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: 0.6rem;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    margin: auto;
    transition: border-color var(--transition);
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: 0.3rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .c-nav__link, .dropdown-toggle:hover + .c-nav__label {
    color: var(--color-link);
  }
  .dropdown-toggle:hover + .c-nav__link::before, .dropdown-toggle:hover + .c-nav__label::before {
    background-color: currentColor;
  }
  .dropdown-toggle:hover::before {
    border-color: var(--color-link);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 768px), print {
  .dropdown-menu {
    margin-top: -10px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 20px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 0 2rem 10rem;
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 0 5rem 15rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer {
  background-color: var(--color-sub2);
  padding: 5rem 2rem 11rem;
}
.l-footer__logo {
  padding-bottom: 5rem;
  text-align: center;
}
.l-footer__main {
  margin-bottom: 5rem;
}
.l-footer__side {
  max-width: 80rem;
  margin-inline: auto;
}
.l-footer__nav {
  margin: 0 -1rem -1rem 0;
}
.l-footer__nav::after {
  content: "";
  display: block;
  clear: both;
}
.l-footer__copy {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .l-footer {
    padding: 5rem 2rem 5rem;
  }
  .l-footer__logo {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer {
    padding: 6rem 5rem 6rem;
  }
  .l-footer__logo {
    padding: 3.5rem 0;
  }
}
@media screen and (min-width: 1280px), print {
  .l-footer__container {
    display: flex;
  }
  .l-footer__col {
    display: flex;
    width: 50%;
  }
  .l-footer__main {
    align-self: center;
    margin: 0 0 0 auto;
    padding-right: 5rem;
  }
  .l-footer__side {
    max-width: none;
    margin: 0 -5rem 0 0;
    padding: 0.85em 0 0.85rem 4rem;
    border-left: 1px solid var(--color-sub8);
  }
  .l-footer__nav {
    display: flex;
    align-items: flex-start;
    margin: 0;
  }
  .l-footer__nav::after {
    display: none;
  }
  .l-footer__copy {
    margin-top: 1.2rem;
    text-align: left;
  }
}
@media screen and (min-width: 1600px), print {
  .l-footer__side {
    padding-left: 5rem;
  }
}

/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
  width: 26rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-logo {
    width: 31.6rem;
  }
}
/* 会社情報 */
.c-footer-info {
  text-align: center;
}
.c-footer-info__open {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.c-footer-info__label {
  margin-right: 1rem;
  padding: 0.7rem 0.9rem 0.8rem;
  line-height: 1em;
  color: #fff;
  border-radius: 0.5rem;
  background-color: #000;
}
.c-footer-info__add {
  margin-top: 1.5rem;
}
.c-footer-info__access {
  margin-top: 2rem;
}
.c-footer-info__access .c-link-button {
  border-radius: 1rem;
}
@media screen and (min-width: 1280px), print {
  .c-footer-info {
    text-align: left;
  }
  .c-footer-info__open {
    display: flex;
  }
  .c-footer-info__contact {
    display: flex;
    align-items: center;
  }
  .c-footer-info__add {
    margin-top: 2.5rem;
  }
}

/* 連絡先 */
.c-footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.c-footer-contact__fax {
  margin-top: 0.5rem;
}
.c-footer-contact__fax::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 2.8rem;
  margin-right: 1rem;
  background: url(../img/base/icon-fax_blk.svg) no-repeat center;
  background-size: cover;
}
.c-footer-contact .tel-link {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  color: var(--color-text);
}
.c-footer-contact .tel-link::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 2.8rem;
  margin-right: 1rem;
  background: url(../img/base/icon-tel_blk.svg) no-repeat center;
  background-size: cover;
}
.c-footer-contact .tel-link[href] {
  color: var(--color-text);
}
.c-footer-contact .tel-link[href]:hover {
  color: var(--color-link);
}
.c-footer-contact .tel-link[href]:hover::before {
  background-image: url(../img/base/icon-tel_red.svg);
}
@media screen and (min-width: 640px), print {
  .c-footer-contact {
    display: inline-flex;
    vertical-align: top;
  }
  .c-footer-contact__fax {
    margin: 0 0 0 2rem;
  }
}
/* フッターナビ */
.c-footer-nav {
  display: inline;
}
.c-footer-nav__item {
  float: left;
  width: 50%;
  padding: 0 1rem 1rem 0;
}
.c-footer-nav__link {
  display: grid;
  place-content: center;
  height: 4.6rem;
  padding: 0 1rem;
  line-height: 1.3;
  font-size: 1.4rem;
  color: var(--color-sub1);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-link);
  background-color: var(--color-sub5);
}
.c-footer-nav__link:hover {
  text-decoration: none;
  color: var(--color-sub1);
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__item {
    width: 33.33333%;
  }
}
@media screen and (min-width: 1280px), print {
  .c-footer-nav {
    display: block;
  }
  .c-footer-nav + .c-footer-nav {
    margin-left: 2rem;
  }
  .c-footer-nav__item {
    float: none;
    width: auto;
    padding: 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 1.2rem;
  }
  .c-footer-nav__link {
    display: inline-block;
    vertical-align: top;
    position: relative;
    height: auto;
    padding: 0 0 0 1.5em;
    line-height: 1.2;
    color: var(--color-text);
    text-align: left;
    border-radius: 0;
    border: none;
    background-color: transparent;
  }
  .c-footer-nav__link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.5ch;
    left: 0.3ch;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: var(--color-base);
  }
  .c-footer-nav__link:hover {
    color: var(--color-link);
  }
}
@media screen and (min-width: 1600px), print {
  .c-footer-nav + .c-footer-nav {
    margin-left: 5rem;
  }
  .c-footer-nav__link {
    font-size: 1.6rem;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 7rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 2rem;
    bottom: 2rem;
    width: 5rem;
    height: 5rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--color-link);
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    color: var(--color-link);
    background-color: #fff;
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy small {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy small {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy small {
    font-size: 1.6rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title {
  background-color: var(--color-sub5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-page-title__container {
  display: grid;
  place-content: center;
  position: relative;
  height: 24rem;
  padding: 1rem 2rem;
}
.c-page-title__heading {
  min-width: 20ch;
  padding: 2rem;
  line-height: 1.3;
  font-weight: 500;
  font-size: 2.3rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  background-color: rgba(132, 54, 54, 0.95);
}
.c-page-title__heading::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-page-title__category {
  display: block;
  font-size: 0.8em;
}
.c-page-title__news::before {
  aspect-ratio: 22/20;
  background-image: url(../img/menu/nav2.svg);
}
.c-page-title__company::before {
  aspect-ratio: 43/50;
  background-image: url(../img/menu/nav3.svg);
}
.c-page-title__service::before {
  aspect-ratio: 22/23;
  background-image: url(../img/menu/nav4.svg);
}
.c-page-title__works::before {
  aspect-ratio: 21/22;
  background-image: url(../img/menu/nav5.svg);
}
.c-page-title__item::before {
  aspect-ratio: 24/21;
  background-image: url(../img/menu/nav6.svg);
}
.c-page-title__cookie::before {
  aspect-ratio: 58/50;
  background-image: url(../img/menu/nav8.svg);
}
.c-page-title__pickup::before {
  aspect-ratio: 24/21;
  background-image: url(../img/menu/nav6.svg);
}
.c-page-title__contact::before {
  aspect-ratio: 24/21;
  background-image: url(../img/menu/nav9.svg);
}
@media screen and (min-width: 768px), print {
  .c-page-title__container {
    height: 26rem;
    padding: 0 2rem;
  }
  .c-page-title__heading {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 9rem;
    padding: 0 4rem 0.2rem 5rem;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
  .c-page-title__heading::before {
    height: 4rem;
    margin: 0 3rem -0.2rem -1rem;
  }
  .c-page-title__category {
    display: inline;
    font-size: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title__container {
    place-content: center left;
    height: 30rem;
    padding: 0;
  }
  .c-page-title__heading {
    height: 10rem;
    font-size: 3.6rem;
    border-radius: 0 1rem 1rem 0;
    background-color: var(--color-base);
  }
}
@media screen and (min-width: 1600px), print {
  .c-page-title__heading {
    font-size: 4.4rem;
  }
  .c-page-title__heading::before {
    height: 5rem;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  animation: fadeOut 0.5s forwards;
}
.loader-logo {
  display: block;
  width: 24rem;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (min-width: 768px), print {
  .loader-logo {
    width: 30rem;
  }
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.5s forwards;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  margin: 0 -2rem;
}
.p-mv__container {
  position: relative;
}
.p-mv__img {
  aspect-ratio: 3/2;
  display: block;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.p-mv__img.is-loaded {
  animation: fadeIn 1s forwards;
}
.p-mv__img.is-reloaded {
  opacity: 1;
}
.p-mv__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.p-mv__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2rem 0 2rem 2rem;
  z-index: 10;
}
.p-mv__catch {
  width: 100%;
  line-height: 1.4;
  font-weight: 500;
  font-size: calc(1.2rem + 2vw);
  color: #fff;
  letter-spacing: normal;
  text-shadow: var(--text-shadow);
  opacity: 0;
}
.p-mv__catch.is-loaded {
  animation: fadeInRight 1s forwards;
}
.p-mv__catch.is-reloaded {
  opacity: 1;
}
@media screen and (min-width: 768px), print {
  .p-mv__img {
    aspect-ratio: 2/1;
  }
  .p-mv__main {
    padding-left: 6%;
  }
  .p-mv__catch {
    font-size: calc(2rem + 2vw);
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem;
  }
  .p-mv__img {
    aspect-ratio: 1600/532;
  }
  .p-mv__main {
    padding: 5rem;
  }
  .p-mv__catch {
    line-height: 1.2;
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-mv__img {
    aspect-ratio: auto;
    height: 53.2rem;
  }
}

/* 導入部 */
.p-top-intro__section {
  position: relative;
  margin-bottom: 5rem;
  padding-top: 5rem;
}
.p-top-intro__section::before {
  content: "";
  aspect-ratio: 269/129;
  display: block;
  position: absolute;
  top: 0;
  left: -2rem;
  width: 15rem;
  background: url(../img/base/bg-img01.svg) center no-repeat;
  background-size: cover;
  pointer-events: none;
  transform: rotate(180deg);
}
.p-top-intro__heading {
  margin-bottom: 2rem;
  line-height: 1.4;
  font-size: 2.8rem;
  text-align: center;
}
.p-top-intro__comment {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.p-top-intro__comment::before, .p-top-intro__comment::after {
  display: block;
}
.p-top-intro__comment::before {
  content: "＼";
  margin-right: 1rem;
}
.p-top-intro__comment::after {
  content: "／";
  margin-left: 1rem;
}
.p-top-intro__img {
  max-width: 25rem;
  margin: 3rem auto 0;
}
.p-top-intro__more {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .p-top-intro__heading {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
  .p-top-intro__img {
    width: 25rem;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-intro__section {
    margin-bottom: 8rem;
    padding-top: 8rem;
  }
  .p-top-intro__section::before {
    left: -5rem;
    width: 27rem;
  }
  .p-top-intro__heading {
    font-size: 3.6rem;
    text-align: left;
  }
  .p-top-intro__img {
    width: 30rem;
    margin: 0 0 0 5rem;
  }
  .p-top-intro__comment {
    font-size: 2.4rem;
  }
  .p-top-intro__more {
    text-align: left;
  }
}

/* お知らせ・ピックアップ商品 */
.p-top-news__section {
  position: relative;
  padding-bottom: 4rem;
}
.p-top-news__section::before {
  content: "";
  aspect-ratio: 269/129;
  display: block;
  position: absolute;
  right: -2rem;
  bottom: 0;
  width: 15rem;
  background: url(../img/base/bg-img01.svg) center no-repeat;
  background-size: cover;
  pointer-events: none;
}
.p-top-news__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem -2rem 0;
}
.p-top-news__col {
  width: 100%;
  padding: 0 2rem 2rem 0;
}
.p-top-news__inner {
  position: relative;
  height: 100%;
  padding: 0 2rem;
  overflow: hidden;
}
.p-top-news__foot {
  padding: 3rem 0;
}
.p-top-news__header {
  padding: 3rem 0;
}
.p-top-news__header::before {
  content: "";
  display: block;
  margin: 0 auto 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-top-news__heading {
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--color-sub10);
  letter-spacing: 0.1em;
  text-align: center;
}
.p-top-news__heading--title {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 2.2em;
  letter-spacing: normal;
}
.p-top-news__news {
  background-color: var(--color-sub5);
}
.p-top-news__news .p-top-news__header::before {
  aspect-ratio: 71/65;
  width: 5rem;
  background-image: url(../img/top/icon1.svg);
}
.p-top-news__items {
  background-color: var(--color-sub6);
}
.p-top-news__items .p-top-news__header::before {
  aspect-ratio: 66/57;
  width: 4.4rem;
  background-image: url(../img/top/icon2.svg);
}
@media screen and (min-width: 768px), print {
  .p-top-news__inner {
    padding: 0 5rem;
  }
  .p-top-news__header {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-top-news__header::before {
    margin: 0 1.8rem 0 0;
  }
  .p-top-news__heading {
    font-size: 1.6rem;
    text-align: left;
  }
  .p-top-news__news .p-top-news__header::before {
    width: 7.1rem;
  }
  .p-top-news__items .p-top-news__header::before {
    width: 6.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-news__section {
    padding-bottom: 17rem;
  }
  .p-top-news__section::before {
    right: -5rem;
    width: 27rem;
  }
  .p-top-news__row {
    margin: 0 -2.4rem -2.4rem 0;
  }
  .p-top-news__col {
    width: 50%;
    padding: 0 2.4rem 2.4rem 0;
  }
  .p-top-news__inner {
    padding: 0 7rem 10rem;
  }
  .p-top-news__header {
    padding: 5rem 0;
  }
  .p-top-news__foot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

/* お知らせ一覧 */
.p-top-topics {
  margin-top: -1.5rem;
}
/* ピックアップ商品 */
.p-top-pickup {
  position: relative;
  margin: 0 -2rem;
}
.p-top-pickup__slider {
  padding: 0 2rem;
}
.p-top-pickup__slider .swiper-slide {
  height: auto;
}
.p-top-pickup__controller {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 5rem;
}
.p-top-pickup__next, .p-top-pickup__prev {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: #fff url(../img/top/arrow.svg) no-repeat 46% 50%;
  background-size: auto 50%;
}
.p-top-pickup__next svg, .p-top-pickup__prev svg {
  display: none;
}
.p-top-pickup__prev.swiper-button-prev {
  margin-right: 2rem;
}
.p-top-pickup__next.swiper-button-next {
  margin-left: 2rem;
  transform: scaleX(-1);
}
@media screen and (min-width: 768px), print {
  .p-top-pickup {
    margin: 0 -5rem;
  }
  .p-top-pickup__slider {
    padding: 0 5rem;
  }
  .p-top-pickup__controller {
    display: block;
    position: absolute;
    inset: 0;
    top: 45%;
    width: 100%;
    height: 1px;
    margin-top: 0;
    z-index: 10;
  }
  .p-top-pickup__next, .p-top-pickup__prev {
    position: absolute;
    width: 5rem;
    height: 5rem;
    background-color: transparent;
    background-size: auto 68%;
  }
  .p-top-pickup__prev.swiper-button-prev {
    left: 0;
    margin-right: 0;
  }
  .p-top-pickup__next.swiper-button-next {
    right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-pickup {
    margin: 0 -7rem;
  }
  .p-top-pickup__slider {
    padding: 0 7rem;
  }
  .p-top-pickup__next.swiper-button-next {
    right: 1rem;
  }
  .p-top-pickup__prev.swiper-button-prev {
    left: 1rem;
  }
}

/* 営業品目 */
.p-top-service__section {
  margin: 0 -2rem 6rem;
  padding: 0 2rem;
  background-color: var(--color-sub7);
}
.p-top-service__container {
  padding: 5rem 0;
}
.p-top-service__header {
  margin-bottom: 4rem;
}
.p-top-service__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-top-service__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.p-top-service__img {
  background-color: #fff;
}
.p-top-service__img .u-img-wrap {
  aspect-ratio: 2/1;
}
.p-top-service__img img {
  transition: opacity var(--transition), transform var(--transition);
}
.p-top-service__head {
  display: grid;
  place-content: center left;
  position: relative;
  min-height: 8rem;
  padding: 1.5rem 1rem 1.5rem 7rem;
  line-height: 1.3;
  font-size: 1.2rem;
  background-color: #ccc;
}
.p-top-service__head::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 100%;
  background-color: #aaa;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-service__title {
  font-size: 1.7em;
}
.p-top-service__caption {
  margin-top: 0.65rem;
  letter-spacing: normal;
  text-shadow: var(--text-shadow2);
}
.p-top-service__more a:hover {
  text-decoration: none;
}
.p-top-service__more a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-service__item:hover .p-top-service__img img {
    opacity: 0.75;
    transform: scale(1.1);
  }
  .p-top-service__item:hover .p-top-service__more .c-link-button {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}
.p-top-service__bath .p-top-service__head::before {
  background-color: var(--color-subA);
  background-image: url(../img/menu/menu1.png);
  background-size: 66% auto;
}
.p-top-service__bath .p-top-service__head {
  background-color: var(--color-subB);
}
.p-top-service__kitchen .p-top-service__head::before {
  background-color: var(--color-subC);
  background-image: url(../img/menu/menu2.png);
  background-size: 60% auto;
}
.p-top-service__kitchen .p-top-service__head {
  background-color: var(--color-subD);
}
.p-top-service__restroom .p-top-service__head::before {
  background-color: var(--color-subE);
  background-image: url(../img/menu/menu3.png);
  background-size: 60% auto;
}
.p-top-service__restroom .p-top-service__head {
  background-color: var(--color-subF);
}
.p-top-service__lavatory .p-top-service__head::before {
  background-color: var(--color-subG);
  background-image: url(../img/menu/menu4.png);
  background-size: 60% auto;
}
.p-top-service__lavatory .p-top-service__head {
  background-color: var(--color-subH);
}
.p-top-service__gas .p-top-service__head::before {
  background-color: var(--color-subI);
  background-image: url(../img/menu/menu5.png);
  background-size: 56% auto;
}
.p-top-service__gas .p-top-service__head {
  background-color: var(--color-subJ);
}
.p-top-service__water .p-top-service__head::before {
  background-color: var(--color-subK);
  background-image: url(../img/menu/menu6.png);
  background-size: 50% auto;
}
.p-top-service__water .p-top-service__head {
  background-color: var(--color-subL);
}
.p-top-service__water .p-top-service__caption {
  color: #fff;
  text-shadow: none;
}
@media screen and (min-width: 768px), print {
  .p-top-service__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top-service__head {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__section {
    margin: 0 -5rem 11rem;
    padding: 0 5rem;
  }
  .p-top-service__container {
    padding: 8rem 0 10rem;
  }
  .p-top-service__header {
    margin-bottom: 6rem;
  }
  .p-top-service__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-top-service__head {
    padding-right: 1.5rem;
    padding-left: 9.5rem;
  }
  .p-top-service__head::before {
    width: 8rem;
  }
  .p-top-service__img .u-img-wrap {
    aspect-ratio: 438/291;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-service__list {
    grid-column-gap: 3.2rem;
    grid-row-gap: 4.5rem;
  }
  .p-top-service__head {
    height: 10rem;
    padding: 0.5rem 1rem 0.5rem 11.8rem;
    font-size: 1.4rem;
  }
  .p-top-service__head::before {
    width: 9.4rem;
  }
}
/* 施工事例 */
.p-top-works__section {
  margin: 0 -2rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
.p-top-works__container {
  position: relative;
}
.p-top-works__header {
  margin-bottom: 3rem;
  padding: 0 2rem;
}
.p-top-works__caption {
  margin-top: 3rem;
}
.p-top-works__slider {
  padding: 4rem 0;
  background-color: var(--color-sub7);
}
.p-top-works__slider .swiper-slide {
  height: auto;
}
.p-top-works__controller {
  display: block;
  position: absolute;
  inset: 0;
  top: -12%;
  place-self: center;
  width: 96%;
  height: 1px;
  z-index: 10;
}
.p-top-works__next, .p-top-works__prev {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #fff url(../img/top/arrow.svg) no-repeat 46% 50%;
  background-size: auto 50%;
}
.p-top-works__next svg, .p-top-works__prev svg {
  display: none;
}
.p-top-works__next {
  right: 0;
  transform: scaleX(-1);
}
.p-top-works__prev {
  left: 0;
}
.p-top-works__more {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 40ch;
  margin-inline: auto;
  padding: 4rem 0 0;
}
@media screen and (min-width: 768px), print {
  .p-top-works__more {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 70ch;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-works__section {
    margin: 0 -5rem;
    padding-bottom: 11rem;
  }
  .p-top-works__header {
    margin-bottom: 5rem;
    padding: 0 5rem;
  }
  .p-top-works__caption {
    margin-top: 5rem;
  }
  .p-top-works__controller {
    display: block;
    position: absolute;
    inset: 0;
    top: -12%;
    place-self: center;
    width: 80%;
    height: 1px;
    z-index: 10;
  }
  .p-top-works__next, .p-top-works__prev {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 100%;
    background: #fff url(../img/top/arrow.svg) no-repeat 46% 50%;
    background-size: auto 50%;
  }
  .p-top-works__next svg, .p-top-works__prev svg {
    display: none;
  }
  .p-top-works__next {
    right: 0;
    transform: scaleX(-1);
  }
  .p-top-works__prev {
    left: 0;
  }
  .p-top-works__more {
    grid-template-columns: repeat(3, 1fr);
    max-width: 120ch;
    padding: 4rem 5rem 0;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-works__more {
    display: flex;
    justify-content: center;
    gap: 0 2.4rem;
    max-width: none;
  }
}

/* 取扱商品・取扱いメーカー */
.p-top-info__section {
  margin: 0 -2rem 6rem;
  padding: 6rem 2rem;
  background: url(../img/top/img2.jpg) no-repeat center;
  background-size: cover;
}
.p-top-info__container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 4rem 0;
}
.p-top-info__col + .p-top-info__col {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px dotted var(--color-sub4);
}
.p-top-info__header {
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px), print {
  .p-top-info__section {
    margin: 0 -5rem 10rem;
    padding: 10rem 5rem;
  }
  .p-top-info__container {
    grid-template-columns: repeat(2, 1fr);
    padding: 6rem 0;
  }
  .p-top-info__col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0px;
    padding: 1rem 0;
  }
  .p-top-info__col + .p-top-info__col {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px dotted var(--color-sub4);
  }
}

/* 取扱商品 */
.p-top-items {
  padding: 0 1rem;
}
.p-top-items__list {
  grid-template-columns: repeat(2, 1fr);
}
.p-top-items__more {
  margin-top: 3rem;
}
@media screen and (min-width: 640px), print {
  .p-top-items__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .p-top-items {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-items {
    padding: 0 4rem;
  }
  .p-top-items__more {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-items {
    padding: 0 6.5rem;
  }
}

/* 取扱いメーカー */
.p-top-maker {
  padding: 0 2rem;
}
.p-top-maker__text {
  margin-top: 3rem;
}
@media screen and (min-width: 1100px), print {
  .p-top-maker {
    display: grid;
    place-content: center;
    height: 100%;
  }
  .p-top-maker__text {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-maker {
    padding: 0 5rem;
  }
}

/* 無料相談・お見積もり */
.p-contact__section {
  margin-bottom: -10rem;
  padding-bottom: 5rem;
}
.p-contact__header {
  margin-bottom: 3rem;
}
.p-contact__text {
  margin-bottom: 3.5rem;
  font-size: 1.6rem;
}
.p-contact__list {
  max-width: 48rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .p-contact__section {
    margin-bottom: -15rem;
    padding-bottom: 0;
  }
  .p-contact__list {
    max-width: 80rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-contact__section {
    margin-bottom: -21rem;
    padding-bottom: 0;
  }
  .p-contact__text {
    margin-bottom: 3.5rem;
  }
  .p-contact__list {
    max-width: 90rem;
    margin-inline: auto;
  }
}

/* --------------------------------

  お知らせ

-------------------------------- */
.news-list {
  border-top: 1px solid var(--color-sub11);
}
.news-body {
  margin-top: 1.5rem;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 3.5rem;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-link {
  display: block;
  position: relative;
  padding: 1rem;
  line-height: 1.4;
  border-bottom: 1px solid var(--color-sub11);
}
.news-link:hover {
  text-decoration: none;
  color: var(--color-link);
}
.news-link:hover .news-date {
  color: var(--color-link);
}
.news-link:hover .news-title {
  text-decoration: none;
}
.news-link:hover .news-img img {
  opacity: 0.75;
  transform: scale(1.1);
}
.news-date {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
  text-decoration: underline;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: opacity var(--transition), transform var(--transition);
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
    padding: 1.5rem 1rem;
  }
  .news-date {
    width: 14ch;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-body {
    line-height: 2;
  }
  .news-more {
    margin-top: 5rem;
  }
}

/* お知らせ一覧：サムネイル（小）*/
.news-list-thumb {
  display: grid;
  gap: 1rem;
}
.news-list-thumb .news-link {
  display: block;
  height: 100%;
  padding: 0;
  color: var(--color-sub12);
  border: none;
  background-color: #fff;
}
.news-list-thumb .news-img {
  aspect-ratio: 1/1;
  border-radius: 1rem;
  background-color: currentColor;
}
@media screen and (min-width: 768px), print {
  .news-list-thumb {
    gap: 1.4rem;
  }
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 1rem;
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 0;
  text-align: left;
  border: none;
}
.news-list-img .news-date {
  display: block;
  width: auto;
  margin: 1rem 0 0.5rem;
}
.news-list-img .news-title {
  margin-top: 1rem;
}
.news-list-img .news-img {
  aspect-ratio: 350/260;
  border-radius: 1rem;
  background-color: var(--color-sub12);
}
@media screen and (min-width: 768px), print {
  .news-list-img {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }
  .news-list-img .news-title {
    margin-top: 2rem;
  }
  .news-list-img--col4 {
    gap: 4rem 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img {
    gap: 5rem 2.5rem;
  }
  .news-list-img--col4 {
    gap: 5rem 2.5rem;
  }
}

/* トップページ用お知らせ一覧 */
.news-top-list .news-link {
  border-bottom: 1px dotted var(--color-sub4);
}
@media screen and (min-width: 768px), print {
  .news-top-list .news-link {
    display: block;
  }
  .news-top-list .news-date {
    margin-bottom: 0.5rem;
  }
}
/* 施工事例一覧スライダー */
.news-list-slider .news-link {
  display: block;
  height: 100%;
  padding: 0 2rem 2rem;
  line-height: 1.8;
  color: var(--color-sub1);
  border: none;
  border-radius: 1rem;
  background-color: #fff;
  overflow: hidden;
  box-shadow: var(--box-shadow2);
}
.news-list-slider .news-link:hover {
  text-decoration: underline;
  color: var(--color-link);
}
.news-list-slider .news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list-slider .news-img {
  aspect-ratio: 4/3;
  margin: 0 -2.2rem 2rem;
}
@media screen and (min-width: 1100px), print {
  .news-list-slider .news-img {
    aspect-ratio: 1/1;
  }
}

/* ピックアップ商品一覧スライダー */
.news-pickup-slider .news-link {
  display: block;
  height: 100%;
  padding: 0;
  line-height: 1.8;
  border: none;
  overflow: hidden;
}
.news-pickup-slider .news-link:hover {
  text-decoration: underline;
  color: var(--color-link);
}
.news-pickup-slider .news-img {
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background-color: #fff;
}
/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-link);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-hover);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
#topics_paging a {
  display: block;
  margin: -0.9rem -1.3rem;
  padding: 0.9rem 1.3rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: var(--color-link);
}
@media screen and (min-width: 768px), print {
  #topics_paging li {
    padding: 1rem 1.4rem;
    font-size: 1.6rem;
  }
  #topics_paging a {
    margin: -1.1rem -1.5rem;
    padding: 1.1rem 1.5rem;
  }
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

li#topics_paging_first,
li#topics_paging_last {
  padding: 0.8rem;
}
li#topics_paging_first a,
li#topics_paging_last a {
  margin: -0.9rem;
  padding: 0.9rem;
}
@media screen and (min-width: 768px), print {
  li#topics_paging_first,
  li#topics_paging_last {
    padding: 1rem;
  }
  li#topics_paging_first a,
  li#topics_paging_last a {
    margin: -1.1rem;
    padding: 1.1rem;
  }
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* 渡辺銅器店のこだわり */
.p-feature__title {
  padding: 2rem 0 2.5rem;
  line-height: 1.4;
  font-size: 2.5rem;
}
.p-feature__main {
  padding: 0 2rem 3rem;
}
.p-feature__img {
  aspect-ratio: 3/2;
  margin: 0 -2rem 2rem;
}
@media screen and (min-width: 768px), print {
  .p-feature__container {
    padding: 5rem 3rem;
  }
  .p-feature__title {
    margin-bottom: 4rem;
    padding: 0;
    font-size: 3rem;
  }
  .p-feature__main {
    padding: 0;
  }
  .p-feature__img {
    aspect-ratio: 550/480;
    width: 50%;
    margin: 0.75rem -3rem 0 2rem;
  }
  .p-feature__img img {
    border-radius: 1rem 0 0 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-feature__container {
    padding: 6rem 5rem;
  }
  .p-feature__title {
    margin-bottom: 6rem;
    line-height: 1.2;
    font-size: 3.6rem;
  }
  .p-feature__img {
    width: 45rem;
    margin: 0.75rem -5rem 0 4rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-feature__container {
    position: relative;
    max-width: 130rem;
    min-height: 64rem;
    padding: 8rem 61rem 8rem 10rem;
  }
  .p-feature__img {
    float: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55rem;
    margin: auto;
  }
}

/* 4つのポイント */
.p-points {
  counter-reset: points_list;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.p-points__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0px;
  overflow: hidden;
}
.p-points__header {
  position: relative;
  padding-top: 5rem;
}
.p-points__counter {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  font-size: 2.5rem;
}
.p-points__counter::before {
  counter-increment: points_list;
  content: counter(points_list, decimal-leading-zero);
  display: block;
  line-height: 1;
}
.p-points__title {
  display: grid;
  place-content: center;
  height: 7ch;
  line-height: 1.3;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: normal;
}
.p-points__body {
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-points {
    gap: 3rem;
  }
  .p-points__header {
    padding: 0;
  }
  .p-points__counter {
    position: static;
    width: 8rem;
    height: 100%;
    font-size: 3rem;
  }
  .p-points__title {
    place-content: center left;
    height: 8rem;
    padding: 0 2rem;
    font-size: 2.2rem;
    text-align: left;
  }
  .p-points__body {
    padding: 2rem 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-points {
    gap: 4rem;
  }
  .p-points__counter {
    width: 10rem;
    font-size: 4rem;
  }
  .p-points__counter::before {
    padding-bottom: 0.15ch;
  }
  .p-points__title {
    padding: 0 2rem 0 3rem;
    font-size: 2.8rem;
  }
  .p-points__body {
    padding: 3rem 5rem;
  }
}

/* 取扱メーカー */
.p-brand__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.p-brand__item {
  display: grid;
  place-content: center;
  aspect-ratio: 350/120;
  border: 1px solid var(--color-main);
}
.p-brand__logo {
  display: block;
  margin: auto;
}
.p-brand__logo--toto {
  width: 50%;
}
.p-brand__logo--lixil {
  width: 44%;
}
.p-brand__logo--takagi {
  width: 52%;
}
.p-brand__logo--rinnai {
  width: 50%;
}
.p-brand__logo--paloma {
  width: 52%;
}
.p-brand__logo--purpose {
  width: 52%;
}
.p-brand__logo--cleanup {
  width: 56%;
}
.p-brand__logo--takara-standard {
  width: 74%;
}
.p-brand__logo--noritz {
  width: 64%;
}
.p-brand__logo--chofu {
  width: 80%;
}
.p-brand__logo--panasonic {
  width: 80%;
}
.p-brand__logo--corona {
  width: 71%;
}
.p-brand__note {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-brand__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-brand__list {
    gap: 2.5rem;
  }
  .p-brand__note {
    margin-top: 3rem;
  }
}

/* ご挨拶 */
.p-greeting__img {
  width: 20rem;
  margin: 0 auto 2.5rem;
}
.p-greeting__name {
  margin-top: 2rem;
}
.p-greeting__name .name {
  font-size: 1.5em;
}
@media screen and (min-width: 768px), print {
  .p-greeting__img {
    width: 25rem;
    margin: 0.7ch 0 0 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-greeting__img {
    width: 26.8rem;
    margin-left: 5rem;
  }
  .p-greeting__message {
    font-size: 1.7rem;
  }
  .p-greeting__name {
    margin-top: 2.5rem;
  }
}

/* 会社概要 */
.p-outline th {
  width: 15rem;
}
/* 対応エリア */
.p-service-area {
  padding: 2rem 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-service-area {
    padding: 2.5rem;
  }
}
/* アクセス */
.p-access__map {
  margin-bottom: 2rem;
  background-color: #eee;
}
.p-access__address {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-access__map {
    margin-bottom: 3rem;
  }
  .p-access__address {
    margin-bottom: 3rem;
  }
}
/* サービス導入部 */
.p-intro__img img {
  width: 100%;
  border-radius: 0 0 1rem 1rem;
}
.p-intro__main {
  position: relative;
  padding: 6rem 2rem 3rem;
}
.p-intro__bg-text {
  position: absolute;
  top: 0;
  left: 0;
  margin: -3rem 0 0 1rem;
  line-height: 1;
  font-size: calc(5.4rem + 3vw);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.15;
}
.p-intro__title {
  margin: 0 -1rem 2rem;
  line-height: 1.3;
  font-size: calc(1.6rem + 2vw);
  text-align: center;
}
.p-intro__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-intro__container {
    padding: 6rem 0;
  }
  .p-intro__img {
    width: 34rem;
  }
  .p-intro__img img {
    border-radius: 1rem 0 0 1rem;
  }
  .p-intro__main {
    position: static;
    padding: 0 3rem;
  }
  .p-intro__bg-text {
    margin: 0.2ch 0 0 0;
    font-size: 9rem;
    white-space: nowrap;
    transform: translateY(-50%);
  }
  .p-intro__title {
    margin: 0 0 2.5rem;
    font-size: 2.8rem;
    text-align: left;
  }
}
@media screen and (min-width: 1100px), print {
  .p-intro__img {
    width: 40rem;
  }
  .p-intro__main {
    padding: 0 5rem;
  }
  .p-intro__bg-text {
    margin-top: 0.1ch;
    font-size: 12rem;
  }
  .p-intro__title {
    margin: 0 0 3rem;
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-intro__container {
    max-width: 130rem;
    padding: 8rem 0;
  }
  .p-intro__img {
    width: 55rem;
  }
  .p-intro__main {
    padding: 0 6rem 0 8rem;
  }
  .p-intro__bg-text {
    font-size: 16rem;
  }
  .p-intro__title {
    letter-spacing: 0.16em;
  }
  .p-intro__text {
    font-size: 1.8rem;
  }
}

/* ページアンカーリンク */
.p-page-nav {
  margin-top: -10rem;
  padding: 10rem 0;
}
.p-page-nav__item {
  max-width: 32rem;
  margin-inline: auto;
  overflow: hidden;
}
.p-page-nav__item + .p-page-nav__item {
  margin-top: 2rem;
}
.p-page-nav__link {
  display: flex;
  flex-direction: row-reverse;
  transition: opacity var(--transition);
}
.p-page-nav__link:hover {
  text-decoration: none;
  opacity: 0.5;
}
.p-page-nav__img {
  aspect-ratio: 1/1;
  position: relative;
  width: 10rem;
}
.p-page-nav__label {
  display: grid;
  place-content: center;
  position: relative;
  font-size: 2rem;
  color: #fff;
}
.p-page-nav__label::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: 5ch;
  width: 0.6ch;
  height: 0.6ch;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg);
  transition: top var(--transition);
}
.p-page-nav__link:hover .p-page-nav__label::before {
  top: calc(5ch + 1rem);
}
@media screen and (min-width: 768px), print {
  .p-page-nav {
    gap: 0 3rem;
  }
  .p-page-nav__item {
    width: 30rem;
    max-width: none;
    margin-inline: 0;
  }
  .p-page-nav__item + .p-page-nav__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-page-nav {
    padding: 15rem 0;
  }
  .p-page-nav__item {
    width: 40rem;
  }
  .p-page-nav__img {
    width: 15rem;
  }
  .p-page-nav__label {
    font-size: 2.4rem;
  }
}

/* こんなお悩みはありませんか */
.p-concerns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 50ch;
  margin-inline: auto;
}
.p-concerns__item {
  display: flex;
  align-items: center;
  min-height: 7rem;
  padding: 0.5rem 1rem 0.5rem 0;
  border-radius: 10em;
}
.p-concerns__icon {
  display: block;
  width: 3rem;
  margin: 0 1.5rem 0 2rem;
}
.p-concerns__text {
  display: block;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-concerns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 88ch;
  }
  .p-concerns__icon {
    width: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-concerns {
    gap: 2rem;
    max-width: none;
  }
  .p-concerns__item {
    min-height: 10rem;
  }
  .p-concerns__item-01 {
    grid-area: 1/1/2/2;
  }
  .p-concerns__item-02 {
    grid-area: 1/2/2/3;
  }
  .p-concerns__item-03 {
    grid-area: 2/1/3/3;
  }
  .p-concerns__item-04 {
    grid-area: 3/1/4/3;
  }
  .p-concerns__icon {
    width: 5rem;
    margin: 0 2.5rem 0 3rem;
  }
  .p-concerns__text {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-concerns__text {
    font-size: 2.5rem;
  }
}

/* 〇〇のメリット */
.p-benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 50ch;
  margin-inline: auto;
}
.p-benefits__item {
  display: flex;
  align-items: center;
  height: 7rem;
  padding: 0 2rem 0 0;
  border-radius: 10em;
}
.p-benefits__icon {
  display: block;
  width: 3rem;
  margin: 0 1.5rem 0 2rem;
}
.p-benefits__text {
  display: block;
  line-height: 1.3;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-benefits {
    gap: 1.5rem;
    max-width: 88ch;
  }
  .p-benefits__icon {
    width: 4rem;
  }
  .p-benefits__text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-benefits {
    gap: 2rem;
    max-width: none;
  }
  .p-benefits__item {
    height: 10rem;
  }
  .p-benefits__icon {
    width: 5rem;
    margin: 0 2.5rem 0 3rem;
  }
  .p-benefits__text {
    font-size: 2rem;
  }
}

/* 施工の流れ */
.p-flow-list {
  counter-reset: flow_step;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 0;
  max-width: 50ch;
  margin-inline: auto;
  padding: 1rem 0 0;
}
.p-flow-list__step {
  width: 100%;
}
.p-flow-list__inner {
  position: relative;
  height: 100%;
  padding: 3rem 2rem 2rem;
}
.p-flow-list__counter {
  display: grid;
  place-content: center;
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  width: 5.5rem;
  height: 3.3rem;
  margin: auto;
  background-color: currentColor;
}
.p-flow-list__counter::before {
  counter-increment: flow_step;
  content: counter(flow_step, decimal-leading-zero);
  padding-bottom: 0.2ch;
  font-size: 1.8rem;
  color: #fff;
}
.p-flow-list__title {
  margin-bottom: 0.25rem;
  font-size: 1.8rem;
}
.p-flow-list__text {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (min-width: 768px), print {
  .p-flow-list {
    justify-content: center;
    gap: 0;
    max-width: none;
    margin: 0 -1rem -2.5rem 0;
  }
  .p-flow-list__step {
    width: 33.33333%;
    padding: 0 1rem 2.5rem 0;
  }
  .p-flow-list__title {
    font-size: 2rem;
  }
  .p-flow-list__text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-flow-list__step {
    width: 20%;
  }
  .p-flow-list__counter::before {
    padding-bottom: 0;
    font-size: 2rem;
  }
  .p-flow-list__text {
    text-align: left;
  }
}

/* システムの種類 */
.p-system__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 480px), print {
  .p-system__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
@media screen and (min-width: 768px), print {
  .p-system__list--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-system__list--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-system__list {
    gap: 2rem;
  }
}

/* システムの種類 */
.p-system-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0px;
}
.p-system-card__head {
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 6rem;
  padding: 1rem;
}
.p-system-card__title {
  line-height: 1.2;
  font-size: 1.6rem;
}
.p-system-card__subtitle {
  display: block;
  font-size: 0.7em;
}
.p-system-card__body {
  padding: 1rem 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-system-card__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-system-card__body {
    padding: 2rem;
  }
}

/* タイプ比較 */
.p-system-type {
  padding: 1rem 0;
}
.p-system-type dt {
  margin-bottom: 1rem;
  padding: 0.4rem 0;
  font-size: 1.6rem;
}
.p-system-type dd {
  font-size: 1.4rem;
}
.p-system-type dd:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-system-type {
    padding: 0;
  }
  .p-system-type dt {
    font-size: 1.8rem;
  }
  .p-system-type dd {
    font-size: 1.6rem;
  }
}

/* 施工前後比較 */
.p-before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.p-before-after__img {
  position: relative;
  padding-top: 2rem;
}
.p-before-after__caption {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 60%;
  min-width: 11rem;
  height: 4rem;
  margin: auto;
  font-size: 1.6rem;
  border: 2px solid currentColor;
}
.p-before-after__text {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-before-after {
    gap: 3rem;
  }
  .p-before-after__col {
    padding-left: 3rem;
  }
  .p-before-after__img {
    padding-top: 0;
  }
  .p-before-after__caption {
    top: 2rem;
    right: auto;
    left: -3rem;
    width: 15rem;
    min-width: 0;
    height: 5rem;
    margin: 0;
    font-size: 2rem;
    border-width: 3px;
  }
  .p-before-after__text {
    margin: 2.5rem 0 -1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-before-after__text {
    margin: 3rem 0 -1.5rem;
  }
}

/* 浴室サンプル */
.p-bath-case {
  margin-top: 2rem;
  padding: 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .p-bath-case {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
  }
}

/* オススメレンジフード */
.p-rangehood-01__logo {
  margin-bottom: 1rem;
}
.p-rangehood-01__caption {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.p-rangehood-01__img {
  margin-bottom: 2rem;
}
.p-rangehood-01__image {
  margin-bottom: 2rem;
}
.p-rangehood-01__main {
  margin-bottom: 2rem;
}
.p-rangehood-01__lead {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.p-rangehood-01__text {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .p-rangehood-01__logo {
    margin-bottom: 2rem;
  }
  .p-rangehood-01__caption {
    margin-bottom: 3rem;
    font-size: 1.6rem;
  }
  .p-rangehood-01__img {
    margin-bottom: 3rem;
  }
  .p-rangehood-01__image {
    margin-bottom: 3rem;
  }
  .p-rangehood-01__main {
    margin-bottom: 3rem;
  }
  .p-rangehood-01__lead {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .p-rangehood-01__text {
    margin-bottom: 3rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-rangehood-01__logo {
    margin-bottom: 3rem;
  }
  .p-rangehood-01__caption {
    font-size: 2rem;
  }
  .p-rangehood-01__image {
    width: 38rem;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-rangehood-01__image {
    width: 43.5rem;
    margin-left: 3rem;
  }
  .p-rangehood-01__lead {
    font-size: 2.2rem;
  }
}

/* オススメレンジフード */
.p-rangehood-02__logo {
  margin: -2rem -2rem 0;
  background-color: #e0cdc9;
}
.p-rangehood-02__text {
  margin: 1.5rem 0;
  line-height: 1.3;
  font-size: 1.6rem;
}
.p-rangehood-02__list {
  gap: 0 1rem;
}
.p-rangehood-02__col {
  width: 33.3333%;
}
.p-rangehood-02__caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
@media screen and (min-width: 768px), print {
  .p-rangehood-02__logo {
    margin: 0;
  }
  .p-rangehood-02__text {
    margin: 2.5rem 0;
    font-size: 1.8rem;
  }
  .p-rangehood-02__list {
    gap: 0 2rem;
  }
  .p-rangehood-02__caption {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-rangehood-02__text {
    margin: 3rem 0;
    font-size: 2.2rem;
  }
  .p-rangehood-02__list {
    gap: 0 3rem;
  }
  .p-rangehood-02__caption {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
}

/* オススメレンジフード */
.p-rangehood-03__logo {
  width: 23rem;
  margin: 0 auto 2.5rem;
}
.p-rangehood-03__list {
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.p-rangehood-03__col-01 {
  width: 30%;
  margin: 0 1rem 2rem;
}
.p-rangehood-03__col-02 {
  width: 45%;
  margin: 0 1rem 2rem;
}
.p-rangehood-03__col-03 {
  width: 33.3333%;
  padding: 0 0.5rem;
}
.p-rangehood-03__caption {
  margin-top: 1rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-rangehood-03__logo {
    width: 30rem;
    margin-bottom: 3.5rem;
  }
  .p-rangehood-03__col-01 {
    margin: 0 1.5rem 3rem;
  }
  .p-rangehood-03__col-02 {
    margin: 0 1.5rem 3rem;
  }
  .p-rangehood-03__col-03 {
    padding: 0 1rem;
  }
  .p-rangehood-03__caption {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-rangehood-03__logo {
    width: auto;
    margin-bottom: 5.5rem;
  }
  .p-rangehood-03__caption {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
}

/* オススメレンジフードの注釈 */
.p-rangehood-note {
  counter-reset: rangehood_note;
  margin-bottom: -2rem;
  padding: 1.3rem 0 1.5rem;
  font-size: 1.2rem;
  letter-spacing: normal;
}
.p-rangehood-note li {
  position: relative;
  padding-left: 4ch;
}
.p-rangehood-note li + li {
  margin-top: 0.5rem;
}
.p-rangehood-note li::before {
  counter-increment: rangehood_note;
  content: "※" counter(rangehood_note);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px), print {
  .p-rangehood-note {
    margin-bottom: -3rem;
    padding: 1.8rem 0 2rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-rangehood-note {
    margin-bottom: -5rem;
    padding: 2.3rem 0 2.5rem;
    font-size: 1.6rem;
  }
}

/* リンクボタン */
.p-kitchen-button {
  border-color: var(--color-subC);
  background-color: var(--color-subC);
}
@media (hover: hover) and (pointer: fine) {
  .p-kitchen-button[href]:hover {
    color: var(--color-subC);
    background-color: #fff;
  }
}

/* 料金 */
.p-service-price {
  display: inline-block;
  margin-top: 0.2ch;
  font-size: 1.7em;
}
@media screen and (min-width: 768px), print {
  .p-service-price {
    margin: 0 0 0 0.5ch;
  }
}
/* 標準工事費 */
.p-standard-cost {
  margin: -2rem -2rem 0;
  padding: 2rem 0;
}
@media screen and (min-width: 768px), print {
  .p-standard-cost {
    margin: -3rem -3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-standard-cost {
    margin: -5rem -5rem 0;
    padding: 3rem 0;
  }
}

/* 標準工事費の注釈 */
.p-standard-note {
  margin-bottom: -2rem;
  padding: 1.3rem 0 1.5rem;
  font-size: 1.2rem;
  letter-spacing: normal;
}
.p-standard-note li {
  position: relative;
  padding-left: 3ch;
}
.p-standard-note li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px), print {
  .p-standard-note {
    margin-bottom: -3rem;
    padding: 1.8rem 0 2rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-standard-note {
    margin-bottom: -5rem;
    padding: 2.3rem 0 2.5rem;
    font-size: 1.6rem;
  }
}

/* 追加費用が発生する材料、部品、工事の一例 */
.p-examples-parts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  padding-bottom: 1.5rem;
}
.p-examples-parts__caption {
  margin-top: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-examples-parts {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-examples-parts {
    gap: 1.3rem;
    padding-bottom: 2rem;
  }
}

/* 浴室換気扇の取替え */
.p-bath-fan__img {
  max-width: 40rem;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px), print {
  .p-bath-fan__img {
    width: 50%;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-bath-fan__img {
    margin-left: 4rem;
  }
}

/* レンジフードとコンロのセット取替 */
.p-rangehood-and-stove-set {
  padding: 2rem 0;
}
@media screen and (min-width: 1100px), print {
  .p-rangehood-and-stove-set {
    padding: 3rem 0;
  }
}

/* キッチン・換気扇の施工事例 */
.p-kitchen-works .news-link {
  color: var(--color-subC);
}
.p-kitchen-works .news-img {
  background-color: var(--color-sub15);
}
/* ガス乾燥機取付のメリット */
.p-gas-merit__img {
  margin-bottom: 2rem;
}
.p-gas-merit__note {
  margin: 1.5rem 1rem 0;
}
@media screen and (min-width: 768px), print {
  .p-gas-merit__img {
    margin-bottom: 3rem;
  }
  .p-gas-merit__note {
    margin: 1.5rem 1.5rem -0.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-gas-merit__img {
    margin-bottom: 5rem;
  }
  .p-gas-merit__note {
    margin: 2rem 1.5rem -1.5rem;
  }
}

/* 短時間乾燥 */
.p-gas-dryer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-gas-dryer__text {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .p-gas-dryer {
    flex-direction: row;
  }
  .p-gas-dryer__col-01 {
    flex: 1;
    margin-top: -0.5%;
  }
  .p-gas-dryer__col-02 {
    width: 52.15%;
  }
  .p-gas-dryer__text {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-gas-dryer {
    gap: 5rem;
  }
  .p-gas-dryer__col-02 {
    width: 50.75%;
  }
  .p-gas-dryer__text {
    font-size: 1.6rem;
  }
}

/* コインランドリーよりもおトク */
.p-gas-cost {
  margin: 0.75rem 0 2rem;
}
.p-gas-cost__detail {
  max-width: 34ch;
  margin: 0 auto 2rem;
}
.p-gas-cost__row {
  height: 5.4rem;
}
.p-gas-cost__row + .p-gas-cost__row {
  margin-top: 1.2rem;
}
.p-gas-cost__title {
  display: grid;
  place-content: center;
  width: 6.5rem;
  padding: 0 0 0.2ch 0.5ch;
  font-size: 1.8rem;
  border-radius: 10em 0 0 10em;
}
.p-gas-cost__body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem 0 1rem;
  line-height: 1.2;
  font-size: 1.2rem;
  border-radius: 0 10em 10em 0;
}
.p-gas-cost__price {
  margin: -0.1ch 0 0 auto;
  font-size: 2em;
}
@media screen and (min-width: 768px), print {
  .p-gas-cost {
    margin: 1rem 0 3rem;
  }
  .p-gas-cost__detail {
    max-width: 44ch;
    margin-bottom: 3rem;
  }
  .p-gas-cost__row {
    height: 6rem;
  }
  .p-gas-cost__title {
    width: 9rem;
    font-size: 2.2rem;
  }
  .p-gas-cost__body {
    padding: 0 4rem 0 2rem;
    font-size: 1.6rem;
  }
  .p-gas-cost__price {
    padding-left: 1rem;
    font-size: 2.25em;
  }
}
@media screen and (min-width: 1100px), print {
  .p-gas-cost {
    margin: -1rem 0 3.5rem;
  }
  .p-gas-cost__detail {
    max-width: none;
    margin: 0 3rem 0 0;
  }
}

/* 花粉中のアレル物質を軽減 */
.p-gas-pollen__text {
  margin-bottom: 3rem;
}
.p-gas-pollen__img {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-gas-pollen__img {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-gas-pollen__text {
    margin: -2rem 0 4.5rem;
  }
  .p-gas-pollen__img {
    gap: 4rem;
    padding-bottom: 5rem;
  }
}

/* 施工事例・取扱商品のカテゴリ一覧 */
.p-category-nav {
  max-width: 50ch;
  margin: 5rem auto 0;
}
.p-category-nav__inner {
  background-color: var(--color-sub7);
}
.p-category-nav__label {
  display: grid;
  place-content: center;
  height: 6rem;
  font-size: 2rem;
  color: #fff;
  background-color: var(--color-base);
}
.p-category-nav__item + .p-category-nav__item {
  border-top: 1px solid var(--color-sub2);
}
.p-category-nav__link {
  display: block;
  padding: 1.5rem;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
}
.p-category-nav__link:hover {
  color: var(--color-link);
}
@media screen and (min-width: 1100px), print {
  .p-category-nav {
    width: 24rem;
    max-width: none;
    margin: 0 3rem 0 0;
  }
  .p-category-nav__inner {
    position: sticky;
    top: 23rem;
  }
  .p-category-nav__link {
    text-align: left;
  }
}
@media screen and (min-width: 1280px), print {
  .p-category-nav {
    width: 30rem;
    margin-right: 5rem;
  }
  .p-category-nav__inner {
    top: 13rem;
  }
  .p-category-nav__label {
    height: 7rem;
    font-size: 2.2rem;
  }
  .p-category-nav__link {
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
  }
}

/* リンクボタン */
.p-eco-button {
  border-color: var(--color-text);
  background-color: var(--color-text);
}
@media (hover: hover) and (pointer: fine) {
  .p-eco-button[href]:hover {
    color: var(--color-text);
    background-color: #fff;
  }
}

/* エコキュート・給湯器の施工事例 */
.p-eco-works .news-link {
  color: var(--color-text);
}
.p-eco-works .news-img {
  background-color: var(--color-sub20);
}
/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */