@charset "UTF-8";
:root {
  --primary: #006933;
  --secondary: #8DC221;
  --tertiary: #F5FFE2;
  --black: #333333;
  --white: #ffffff;
  --gray: #D9D9D9;
  --light-gray: #F9F9F9;
  --light-green: #EDFFCA;
  --light-green02: #F5FFE2;
  --shadow: 0 0 10px 0 rgba(0,0,0, 0.2);
  --en: "Inter", sans-serif;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: var(--black);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  padding-top: 128px;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

@font-face {
  src: url(../font/NotoSansJP-Regular.ttf) format("truetype");
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSansJP-Medium.ttf) format("truetype");
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../font/NotoSansJP-Bold.ttf) format("truetype");
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/Inter_18pt-Bold.ttf) format("truetype");
  font-family: "Inter";
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../font/Inter_18pt-ExtraBoldItalic.ttf) format("truetype");
  font-family: "Inter";
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
.c-en {
  font-family: var(--en);
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.c-header .inner-block {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: min(32px, 1.6666666667vw);
  padding-block: 16px 12px;
  max-width: 100%;
}
.c-header .logo {
  display: block;
}
.c-header .logo img {
  max-width: min(459px, 23.90625vw);
}
.c-header .top-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: min(32px, 1.6666666667vw);
  margin-bottom: 12px;
}
.c-header .sns-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-header .sns-wrap li:not(:first-child) {
  border-left: 1px solid var(--gray);
}
.c-header .sns-wrap li:first-child a {
  padding-left: 0;
}
.c-header .sns-wrap li:last-child a {
  padding-right: 0;
}
.c-header .sns-wrap a {
  padding: 0 min(24px, 1.25vw);
}
.c-header .sns-wrap .l-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-header .sns-wrap .inn {
  font-size: clamp(26px, 36px, min(36px, 1.875vw));
  line-height: 1;
  letter-spacing: 0.02em;
}
.c-header .btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(16px, 0.8333333333vw);
}
.c-header .c-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-header .c-menu a {
  display: block;
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  padding: 0 min(40px, 2.0833333333vw);
}
.c-header .c-btn01 {
  padding: 18px 15px;
  max-width: 232px;
  min-width: 232px;
}

.c-btn-menu {
  background: var(--primary);
  display: block;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 991;
}
.c-btn-menu .inn {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 14px;
}
.c-btn-menu .line:nth-of-type(2)::after {
  top: 0;
  content: "";
}
.c-btn-menu .line,
.c-btn-menu .line:nth-of-type(2)::after {
  background: var(--white);
  border-radius: 2px;
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-btn-menu .line:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.c-btn-menu .line:nth-of-type(3) {
  bottom: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-btn-menu .line:nth-of-type(2) {
  top: 6px;
}
.c-btn-menu .line:nth-of-type(1) {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-btn-menu.is-open {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn-menu.is-open .line:nth-of-type(1) {
  -webkit-transform: scaleX(0) translate3d(0, 0, 0);
          transform: scaleX(0) translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-btn-menu.is-open .line:nth-of-type(2), .c-btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-btn-menu.is-open .line:nth-of-type(2) {
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
}
.c-btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
          transform: rotate(90deg) translate3d(0, 0, 0);
}
.c-btn-menu.is-open .line:nth-of-type(3) {
  opacity: 0;
}

.c-footer {
  background: var(--primary);
}
.c-footer .inner-block {
  padding-block: 60px;
}
.c-footer .l-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
.c-footer .l-left {
  max-width: 442px;
}
.c-footer .l-right {
  max-width: 576px;
  padding-top: 24px;
}
.c-footer .address {
  color: var(--white);
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.4;
  margin: 32px 0;
}
.c-footer .tel {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.c-footer .tel .c-svg {
  fill: var(--white);
}
.c-footer .tel .inn {
  color: var(--white);
  font-size: clamp(20px, 32px, min(32px, 1.6666666667vw));
  font-weight: bold;
  line-height: 1;
}
.c-footer .c-menu {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px 80px;
}
.c-footer .c-menu a {
  color: var(--white);
  font-size: clamp(14px, 16px, min(16px, 0.8333333333vw));
  font-weight: 700;
  line-height: 1;
}
.c-footer .sns-wrap {
  border-top: 1px solid var(--white);
  padding-top: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 130px;
  margin-top: 40px;
}
.c-footer .sns-wrap .wrap:nth-child(2) .link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 6px;
}
.c-footer .balloon {
  color: var(--white);
  font-size: clamp(12px, 14px, min(14px, 0.7291666667vw));
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  text-align: center;
  padding: 0 15px;
  margin: 0 auto 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer .balloon::before, .c-footer .balloon::after {
  background: var(--white);
  content: "";
  height: 17px;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
}
.c-footer .balloon::before {
  left: 0;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.c-footer .balloon::after {
  right: 0;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.c-footer .link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-size: clamp(14px, 16px, min(16px, 0.8333333333vw));
  font-weight: 700;
  line-height: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}
.c-footer .link .ico {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  width: 48px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .copylight {
  color: var(--white);
  font-size: clamp(12px, 12px, min(12px, 0.625vw));
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-top: 40px;
}
.c-footer .c-txt {
  line-height: 1.4;
}

#pagetop {
  position: absolute;
  bottom: 28px;
  right: 82px;
  z-index: 800;
}
#pagetop a {
  background: var(--secondary);
  display: block;
  -webkit-clip-path: polygon(50% 0%, 6.6987% 25%, 6.6987% 75%, 50% 100%, 93.3013% 75%, 93.3013% 25%);
          clip-path: polygon(50% 0%, 6.6987% 25%, 6.6987% 75%, 50% 100%, 93.3013% 75%, 93.3013% 25%);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 79px;
  width: 79px;
  position: relative;
}
#pagetop a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-ttl01 {
  margin-bottom: 40px;
}
.c-ttl01 .ja {
  color: var(--primary);
  display: block;
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
}
.c-ttl01 .ja::before {
  background: url(../img/common/ico-hexagon.svg) no-repeat center center/contain;
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 24px;
  width: 24px;
}
.c-ttl01 .en {
  color: var(--primary);
  display: block;
  font-size: clamp(32px, 64px, min(64px, 3.3333333333vw));
  font-weight: bold;
  line-height: 1;
}
.c-ttl01.white .ja, .c-ttl01.white .en {
  color: var(--white);
}
.c-ttl01.lower {
  margin-bottom: 40px;
}
.c-ttl01.lower .en {
  color: var(--black);
  font-size: clamp(24px, 36px, min(36px, 1.875vw));
}

.c-ttl02 {
  color: var(--primary);
  font-size: clamp(20px, 32px, min(32px, 1.6666666667vw));
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.c-ttl02.white {
  color: var(--white);
}
.c-ttl02.no-spacing {
  letter-spacing: 0;
}

.c-ttl-wrap {
  color: var(--white);
  margin-top: 32px;
  font-weight: 700;
  position: relative;
  z-index: 5;
}
.c-ttl-wrap .c-mv-ttl {
  font-size: clamp(30px, 56px, min(56px, 2.9166666667vw));
  margin-bottom: 32px;
}
.c-ttl-wrap .c-sub-txt {
  padding-left: 40px;
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  border-left: 1px solid #8DC221;
}

.l-line-ttl {
  padding-left: 24px;
  font-size: clamp(18px, 24px, min(24px, 1.25vw));
  line-height: 1.4;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  margin-bottom: 24px;
}
.l-line-ttl.pb40 {
  margin-bottom: 40px;
}
.l-line-ttl::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--primary);
  top: 0;
  left: 0;
}

.bg-gray {
  background: var(--light-gray);
}

.c-section .inner-block {
  padding-block: 80px;
}

.c-svg {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-svg.green {
  fill: var(--primary);
}

.c-arrow {
  background: var(--secondary);
  -webkit-clip-path: polygon(50% 0%, 6.6987% 25%, 6.6987% 75%, 50% 100%, 93.3013% 75%, 93.3013% 25%);
          clip-path: polygon(50% 0%, 6.6987% 25%, 6.6987% 75%, 50% 100%, 93.3013% 75%, 93.3013% 25%);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 38px;
  width: 40px;
  position: relative;
}
.c-arrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-txt {
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.8;
}
.c-txt + .c-txt {
  margin-top: 24px;
}
.c-txt.white {
  color: var(--white);
}
.c-txt.fz-18 {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  font-weight: 500;
}

.c-green {
  color: var(--primary);
}

.c-bold {
  font-weight: bold;
}

.c-marker {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, var(--light-green)));
  background: linear-gradient(transparent 0%, var(--light-green) 0%);
}

.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  gap: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-breadcrumb .inn:first-child {
  position: relative;
}
.c-breadcrumb .inn:first-child::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--secondary);
  right: -16px;
}

.c-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-list li img {
  border-radius: 4px;
  width: 100%;
}
.c-list li .txt-wrap {
  margin-top: 24px;
}
.c-list li .txt-wrap .green {
  color: var(--primary);
  font-size: clamp(18px, 20px, min(20px, 1.0416666667vw));
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
.c-list li .txt-wrap .txt {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  font-weight: 500;
  line-height: 1.8;
}

.c-num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 12px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  font-size: clamp(20px, 32px, min(32px, 1.6666666667vw));
  font-style: italic;
  font-weight: 800;
  font-family: "Inter";
  line-height: 1;
}

.c-bg:nth-child(even) {
  background-color: var(--light-gray);
}

.c-contact-box {
  padding: 40px 80px;
  background-color: var(--tertiary);
  border: 1px solid var(--secondary);
}

.cta-section {
  background: url(../img/common/cta-bg.jpg.webp) no-repeat center center/cover;
}
.cta-section .box-area {
  background: var(--white);
  border: 1px solid var(--secondary);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 40px 80px;
}
.cta-section .c-ttl01 {
  margin-bottom: 16px;
}
.cta-section .ttl-wrap {
  max-width: 443px;
}
.cta-section .contact-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
}
.cta-section .contact-wrap .wrap {
  width: 100%;
}
.cta-section .contact-wrap .ttl {
  font-size: clamp(14px, 20px, min(20px, 1.0416666667vw));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 23px;
}
.cta-section .contact-wrap .tel {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cta-section .contact-wrap .tel .inn {
  font-size: clamp(32px, 32px, min(32px, 1.6666666667vw));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.015em;
}
.cta-section .contact-wrap .l-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-section .contact-wrap .l-flex .txt {
  font-size: clamp(12px, 14px, min(14px, 0.7291666667vw));
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.cta-section .contact-wrap .l-flex .txt + .txt {
  border-left: 1px solid var(--gray);
}
.cta-section .contact-wrap .l-flex .txt:nth-child(1) {
  padding-right: 16px;
}
.cta-section .contact-wrap .l-flex .txt:nth-child(2) {
  padding-left: 16px;
}
.cta-section .contact-wrap .c-btn01 {
  margin: auto;
}

.c-deterioration-list li {
  border: 1px solid var(--secondary);
  margin-bottom: 24px;
  border-radius: 4px;
}
.c-deterioration-list li:last-child {
  margin-bottom: 0;
}
.c-deterioration-list .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.c-deterioration-list .flex-wrap.bg-green {
  padding: 18.5px 40px;
  background-color: var(--tertiary);
  border-bottom: 1px solid var(--secondary);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px 4px 0 0;
}
.c-deterioration-list .flex-wrap.bg-green img {
  width: 22px;
  height: 22px;
}
.c-deterioration-list .flex-wrap.g-34 {
  gap: 34px;
  padding: 40px;
}
.c-deterioration-list .flex-wrap.g-34 > img {
  max-width: 336px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  max-height: 210px;
}
.c-deterioration-list .c-list-ttl {
  color: var(--primary);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.4;
}
.c-deterioration-list .txt-wrap .txt-box-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.c-deterioration-list .txt-wrap .txt-box-wrap::after {
  position: absolute;
  content: "このまま放置すると…";
  color: #333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding-left: 32px;
  font-size: clamp(18px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.8;
  z-index: 2;
}
.c-deterioration-list .txt-wrap .txt {
  margin-top: 24px;
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  line-height: 1.8;
  font-weight: 500;
}

.img-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.img-section .flex-wrap.mb-64 {
  margin-bottom: 64px;
}
.img-section .flex-wrap .content {
  margin-bottom: 40px;
}
.img-section .flex-wrap .content .c-txt + .c-txt {
  margin-top: 16px;
}

.icn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.icn-wrap .icn-block {
  width: 100%;
  text-align: center;
}
.icn-wrap .icn-block .icn-img {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  margin: auto;
}
.icn-wrap .icn-block .green {
  margin-top: 16px;
  font-weight: bold;
  color: var(--primary);
}
.icn-wrap .icn-block-white {
  width: 100%;
  text-align: center;
}
.icn-wrap .icn-block-white .icn-img {
  background-color: var(--white);
  padding: 20px;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  margin: auto;
}
.icn-wrap .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  text-align: left;
  width: 100%;
}

.pagination-wrap {
  margin-top: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-wrap .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pagination-wrap .pagination li {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.pagination-wrap .pagination li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 5px;
  text-decoration: none;
  color: #333333;
  border: 1px solid #D9D9D9;
  background: #FFFFFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pagination-wrap .pagination li a:hover {
  background: #F9F9F9;
}
.pagination-wrap .pagination li.ellipsis {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 64px;
  color: #333333;
}
.pagination-wrap .pagination li.active a {
  background-color: #8DC221;
  border-color: #8DC221;
  color: #FFFFFF;
  pointer-events: none;
}
.pagination-wrap .pagination li.prev a img, .pagination-wrap .pagination li.next a img {
  width: 32px;
  height: auto;
}
.pagination-wrap .pagination li.next a img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-table01 tr {
  border-top: 1px solid var(--gray);
}
.c-table01 tr:last-child {
  border-bottom: 1px solid var(--gray);
}
.c-table01 th, .c-table01 td {
  padding: 16px 16px 14px;
  line-height: 1.8em;
}
.c-table01 th {
  min-width: 200px;
  width: 200px;
  background-color: var(--light-green02);
  font-weight: bold;
}

.strengths-section .c-ttl01 .green {
  font-size: clamp(20px, 40px, min(40px, 2.0833333333vw));
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.4;
}
.strengths-section .strengths-list {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.strengths-section .strengths-list.c-list li {
  width: calc((100% - 80px) / 3);
  min-width: 280px;
}
.strengths-section .strengths-list.c-list li img {
  margin-top: 32px;
}

.c-btn01 {
  background: var(--primary);
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
  font-size: clamp(14px, 20px, min(20px, 1.0416666667vw));
  font-weight: 700;
  line-height: 1;
  padding: 26px 51px;
  min-width: 260px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn01.black {
  background: var(--black);
}
.c-btn01.ico .inn-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn01.arrow .inn-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  position: relative;
}
.c-btn01.arrow .inn-wrap::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  position: relative;
  top: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01.light-green {
  background: var(--secondary);
}
.c-btn01 .ico {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-btn01.back-arrow {
  padding: 24px 56px 24px 80px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: auto;
}
.c-btn01.back-arrow .inn-wrap {
  position: relative;
  display: block;
  line-height: 1.4;
}
.c-btn01.back-arrow .inn-wrap::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  left: -32px;
  top: 50%;
}

.c-btn02 {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 16px 24px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  position: relative;
}
.c-btn02::before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 2px solid var(--primary);
  pointer-events: none;
  position: absolute;
  top: -1px;
  left: -1px;
  opacity: 0;
  border-radius: 4px;
}
.c-btn02 .inn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-btn02 .inn-wrap .inn {
  width: 100%;
  text-align: center;
}
.c-btn02 .ico {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 24px;
  height: 24px;
  display: block;
  aspect-ratio: 1/1;
  background-color: var(--primary);
  -webkit-mask: url(../img/common/external.svg) no-repeat center/contain;
          mask: url(../img/common/external.svg) no-repeat center/contain;
}

.c-btn03 {
  display: block;
  width: 100%;
}
.c-btn03 .inn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px;
  border: 1px solid var(--secondary);
  background: var(--tertiary);
  border-radius: 4px;
  color: var(--primary);
  gap: 8px;
  font-weight: bold;
  font-size: clamp(14px, 20px, min(20px, 1.0416666667vw));
}
.c-btn03 .inn::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: relative;
  top: -2px;
}

/* -----------------------------------------------
* c-kv
-------------------------------------------------- */
.c-kv {
  position: relative;
  z-index: 2;
}
.c-kv::before {
  background: var(--primary);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 0;
}
.c-kv .inner-block {
  padding: 100px 40px;
}
.c-kv .mv-txt {
  color: var(--white);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.8;
  margin-top: 40px;
}
.c-kv .mv-txt-logo {
  position: absolute;
  top: 0;
  z-index: 0;
  right: 0;
  height: 150%;
  opacity: 0.6;
}
.c-kv .mv-txt-logo img {
  width: 100%;
}

/* -----------------------------------------------
* c-kv-simple
-------------------------------------------------- */
.c-kv-simple {
  background-color: #F9F9F9;
  position: relative;
  width: 100%;
  padding: 60px 0;
  z-index: 0;
}
.c-kv-simple .logomark {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  height: 55.52vw;
  max-height: 1066px;
  width: auto;
}
.c-kv-simple .inner-block {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.c-kv-simple .breadcrumb-wrap {
  margin-bottom: 40px;
}
.c-kv-simple .breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-kv-simple .breadcrumb-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #333333;
}
.c-kv-simple .breadcrumb-list li a {
  color: #333333;
  text-decoration: none;
}
.c-kv-simple .breadcrumb-list li a:hover {
  text-decoration: underline;
}
.c-kv-simple .breadcrumb-list li + li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-kv-simple .breadcrumb-list li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #8DC221;
  margin: 0 16px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-kv-simple .mv-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.c-kv-simple .mv-txt .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  margin: 0;
  letter-spacing: 0;
  height: 96px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-kv-simple .mv-txt .tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-kv-simple .mv-txt .tag {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
}
.c-kv-simple .mv-txt .tag.tag-green {
  background: #006933;
}
.c-kv-simple .mv-txt .tag.tag-dark {
  background: #333333;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section {
  background: url(../img/home/mv-bg.jpg.webp) no-repeat center center/cover;
  position: relative;
  z-index: 2;
}
.home .mv-section::before {
  background: var(--primary);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 0;
}
.home .mv-section .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  padding: 5% 120px 4%;
}
.home .mv-section .movie-wrap {
  max-width: 1440px;
  margin: auto;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.home .mv-section .mv-txt-wrap {
  position: absolute;
  left: min(120px, 6.25vw);
  z-index: 5;
}
.home .mv-section .mv-ttl .inn {
  background: var(--white);
  display: block;
  font-size: clamp(28px, 52px, min(52px, 2.7083333333vw));
  font-weight: bold;
  line-height: 1.4;
  padding: 8px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .mv-section .mv-ttl .inn + .inn {
  margin-top: 16px;
}
.home .mv-section .mv-ttl .inn:nth-child(1) {
  padding-right: 0;
}
.home .mv-section .mv-ttl .large {
  font-size: clamp(32px, 64px, min(64px, 3.3333333333vw));
  font-weight: bold;
}
.home .mv-section .mv-ttl .green {
  color: var(--secondary);
}
.home .mv-section .mv-txt {
  color: var(--white);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.8;
  margin-top: 40px;
}
.home .mv-section .mv-txt-logo {
  position: absolute;
  bottom: 0;
  right: 0;
}
.home .link-section {
  position: relative;
  z-index: 5;
}
.home .link-section .link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
  max-width: 1280px;
  margin: auto;
  z-index: 5;
}
.home .link-section .link-list a {
  background: var(--white);
  display: block;
  padding: 32px 32px 31px;
  height: 100%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.home .link-section .link-list .img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.home .link-section .link-list .img img {
  width: 100%;
}
.home .link-section .link-list .l-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}
.home .link-section .link-list .ttl {
  color: var(--primary);
  font-size: clamp(14px, 20px, min(20px, 1.0416666667vw));
  font-weight: 700;
  line-height: 1.3;
}
.home .link-section .link-list .txt {
  display: block;
  font-size: clamp(14px, 16px, min(16px, 0.8333333333vw));
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
}
.home .l-section .l-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: min(52px, 2.7083333333vw);
}
.home .l-section .l-left {
  max-width: min(876px, 45.625vw);
}
.home .l-section .l-right {
  max-width: calc(100% - min(928px, 48.3333333333vw));
  width: 100%;
}
.home .concept-section .inner-block {
  padding-block: 90px 80px;
}
.home .concept-section .c-btn01 {
  margin-top: 40px;
}
.home .strength-section {
  overflow: hidden;
}
.home .strength-section .l-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.home .strength-section .strength-list li + li {
  margin-top: 40px;
}
.home .strength-section .strength-list .ttl-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.home .strength-section .strength-list .num {
  color: var(--primary);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1;
  font-style: italic;
  position: relative;
  top: 2px;
}
.home .strength-section .strength-list .num::before {
  background: var(--primary);
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.home .strength-section .strength-list .ttl {
  color: var(--primary);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.4;
}
.home .service-section .service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(80px, 4.1666666667vw);
  margin-top: 40px;
}
.home .service-section .service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.home .service-section .ttl {
  color: var(--primary);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.4;
  margin-top: 24px;
}
.home .service-section .c-txt {
  margin-top: 16px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.home .service-section .c-btn01 {
  margin-top: 16px;
}
.home .works-section .works-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.home .works-section .img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5/3;
}
.home .works-section .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .works-section .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.home .works-section .tag-list .tag {
  background: #333333;
  color: #FFFFFF;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .works-section .tag-list .tag.blue {
  background: #1E49A7;
}
.home .works-section .tag-list .tag.orange {
  background: #CD6F04;
}
.home .works-section .tag-list .tag.green {
  background: #006933;
}
.home .works-section .c-txt {
  margin-top: 4px;
}
.home .works-section .c-btn01 {
  margin-top: 36px;
}
.home .news-section .bg-area {
  background: var(--tertiary);
  border-radius: 16px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: min(80px, 4.1666666667vw);
  padding: 40px 80px 44px;
}
.home .news-section .news-list li {
  border-top: 1px solid var(--gray);
}
.home .news-section .news-list li:last-child {
  border-bottom: 1px solid var(--gray);
}
.home .news-section .news-list a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  padding: 29px 0;
}
.home .news-section .news-list .wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.home .news-section .news-list .wrap:last-child {
  grid-template-columns: auto 61px;
}
.home .news-section .news-list .day {
  color: var(--primary);
  font-size: clamp(14px, 16px, min(16px, 0.8333333333vw));
  font-weight: 700;
  line-height: 1.4;
}
.home .news-section .news-list .tag {
  background: var(--secondary);
  border-radius: 4px;
  color: var(--white);
  font-size: clamp(14px, 16px, min(16px, 0.8333333333vw));
  font-weight: 700;
  line-height: 1.4;
  padding: 4px 8px;
  text-align: center;
  margin-left: 24px;
  width: 128px;
}
.home .news-section .news-list .inn {
  font-size: clamp(14px, 16px, min(16px, 0.8333333333vw));
  font-weight: 500;
  line-height: 1.4;
}
.home .news-section .news-list .c-arrow {
  margin-left: auto;
}
.home .news-section .c-btn01 {
  margin-top: 40px;
}
.home .recruit-section {
  background: url(../img/home/recruit-bg.jpg.webp) no-repeat center center/cover;
  position: relative;
}
.home .recruit-section::before {
  background: var(--primary);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.home .recruit-section .c-btn01 {
  margin-top: 40px;
}
.home .recruit-section .img {
  max-width: min(994px, 51.7708333333vw);
}
.home .download-section .bg-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--light-gray);
  padding: 40px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}
.home .download-section .ttl {
  color: var(--primary);
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  padding-left: 56px;
  margin-bottom: 16px;
}
.home .download-section .ttl::before {
  background: url(../img/common/ico-shake.svg) no-repeat center center/contain;
  content: "";
  height: 40px;
  width: 40px;
  position: absolute;
  top: -5px;
  left: 0;
}
.home .download-section .c-btn01 {
  padding: 26px 38px 26px 57px;
  width: 100%;
}
.home .download-section .c-btn01 + .c-btn01 {
  margin-top: 16px;
}

/* -----------------------------------------------
* works Module
* 施工実績ページ用
-------------------------------------------------- */
.c-kv-simple .mv-txt.tax {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-kv-simple .mv-txt.tax .line {
  width: 30px;
  height: 2px;
  background-color: #333333;
  display: block;
}
.c-kv-simple .mv-txt.tax .tax_text {
  font-size: 30px;
  font-weight: 700;
  position: relative;
}

.works-content {
  padding: 80px 0;
  z-index: 3;
}
.works-content .inner-block {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.works-content .filter-area {
  background-color: #F5FFE2;
  padding: 80px;
  margin-bottom: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  border: 1px solid #8DC221;
  z-index: 2;
}
.works-content .filter-area a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #006933;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.works-content .filter-area a:hover {
  opacity: 0.7;
}
.works-content .filter-area .all {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 120px;
}
.works-content .filter-area .filter-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.works-content .filter-area .filter-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
.works-content .filter-area .filter-row dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #333333;
  width: 80px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 80px;
}
.works-content .filter-area .filter-row dd {
  margin-left: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.works-content .filter-area .filter-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 40px;
}
.works-content .works-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.works-content .work a {
  text-decoration: none;
  display: block;
  color: inherit;
}
.works-content .work a:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-content .work .img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5/3;
}
.works-content .work .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-content .work .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.works-content .work .tag-list .tag {
  background: #333333;
  color: #FFFFFF;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.works-content .work .tag-list .tag.blue {
  background: #1E49A7;
}
.works-content .work .tag-list .tag.orange {
  background: #CD6F04;
}
.works-content .work .tag-list .tag.green {
  background: #006933;
}
.works-content .work .c-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-top: 4px;
  margin-bottom: 0;
}

/* -----------------------------------------------
* works_detail Module
* 施工実績詳細ページ用
-------------------------------------------------- */
.c-kv-simple .inner-block .mv-txt .tag-wrap .tag {
  background: #333333;
  color: #FFFFFF;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-kv-simple .inner-block .mv-txt .tag-wrap .tag.blue {
  background: #1E49A7;
}
.c-kv-simple .inner-block .mv-txt .tag-wrap .tag.orange {
  background: #CD6F04;
}
.c-kv-simple .inner-block .mv-txt .tag-wrap .tag.green {
  background: #006933;
}

.works_detail-content {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.works_detail-content .inner-block {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.works_detail-content .works_overview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
  margin-bottom: 80px;
}
.works_detail-content .works_overview .overview-img-wrap {
  max-width: 640px;
}
.works_detail-content .works_overview .overview-img-wrap .main-img {
  width: 640px;
  height: 415px;
  overflow: hidden;
  margin-bottom: 26px;
}
.works_detail-content .works_overview .overview-img-wrap .main-img .img {
  width: 100%;
  height: 100%;
}
.works_detail-content .works_overview .overview-img-wrap .main-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.works_detail-content .works_overview .overview-img-wrap .thumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  overflow-x: auto;
}
.works_detail-content .works_overview .overview-img-wrap .thumb-list li {
  width: 120px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}
.works_detail-content .works_overview .overview-img-wrap .thumb-list li img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_detail-content .works_overview .overview-info {
  margin-top: 25px;
  width: 50%;
}
.works_detail-content .works_overview .overview-info .overview-table {
  width: 100%;
  border-collapse: collapse;
}
.works_detail-content .works_overview .overview-info .overview-table tr {
  border-bottom: 1px solid #D9D9D9;
}
.works_detail-content .works_overview .overview-info .overview-table tr:first-child {
  border-top: 1px solid #D9D9D9;
}
.works_detail-content .works_overview .overview-info .overview-table th, .works_detail-content .works_overview .overview-info .overview-table td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #333333;
  padding: 16px;
  vertical-align: middle;
}
.works_detail-content .works_overview .overview-info .overview-table th {
  font-weight: 500;
  background-color: #F5FFE2;
  width: 180px;
  text-align: left;
}
.works_detail-content .works_overview .overview-info .overview-table td {
  font-weight: 400;
  background-color: #FFFFFF;
}
.works_detail-content .col-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 60px;
}
.works_detail-content .works_comparison-area {
  margin-bottom: 80px;
}
.works_detail-content .works_comparison-area .comparison-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #8DC221;
}
.works_detail-content .works_comparison-area .comparison-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.works_detail-content .works_comparison-area .comparison-row .comparison-col {
  width: calc(50% - 30px);
}
.works_detail-content .works_comparison-area .comparison-row .comparison-col .img-box {
  position: relative;
}
.works_detail-content .works_comparison-area .comparison-row .comparison-col .img-box img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 5/3;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.works_detail-content .works_comparison-area .comparison-row .comparison-col .img-box .badge {
  position: absolute;
  top: -44px;
  left: 0;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  padding: 4px 24px;
  border-radius: 10px 10px 0 0;
}
.works_detail-content .works_comparison-area .comparison-row .comparison-col .img-box .badge.badge-before {
  color: #006933;
  background-color: #FFFFFF;
  border: 1px solid #8DC221;
  border-bottom: none;
}
.works_detail-content .works_comparison-area .comparison-row .comparison-col .img-box .badge.badge-after {
  color: #FFFFFF;
  background-color: #8DC221;
}
.works_detail-content .works_comparison-area .comparison-row .comparison-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
}
.works_detail-content .customer-voice {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
  background-color: #F5FFE2;
  padding: 35px 32px 29px 32px;
  margin-bottom: 40px;
  border-radius: 10px;
}
.works_detail-content .customer-voice .voice-avatar {
  width: 160px;
  height: 160px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
}
.works_detail-content .customer-voice .voice-avatar img {
  width: 66px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
.works_detail-content .customer-voice .voice-body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}
.works_detail-content .customer-voice .voice-body .voice-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
.works_detail-content .works_back-btn-wrap {
  text-align: center;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.waterproofing .txt,
.waterproofing .note {
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.8;
}
.waterproofing .mv-section {
  background: url(../img/waterproofing/mv-img.jpg.webp) no-repeat center center/cover;
}
.waterproofing .about-section .about-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.waterproofing .about-section .about-list li {
  width: calc((100% - 90px) / 4);
}
.waterproofing .about-section .about-list img {
  width: 100%;
  min-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24px;
  border-radius: 4px;
}
.waterproofing .about-section .about-list .txt {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}
.waterproofing .deterioration-section .ttl-wrap {
  margin-bottom: 40px;
}
.waterproofing .survey-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.waterproofing .survey-section .flex-wrap.mb-64 {
  margin-bottom: 64px;
}
.waterproofing .survey-section .flex-wrap .img-wrap {
  width: 40%;
}
.waterproofing .survey-section .inn {
  max-width: 690px;
  width: 100%;
}
.waterproofing .survey-section .inn .content:last-child {
  margin-bottom: 0;
}
.waterproofing .survey-section .content {
  margin-bottom: 40px;
}
.waterproofing .survey-section .content:last-child {
  margin-bottom: 0;
}
.waterproofing .survey-section .content .txt.fz18 {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
}
.waterproofing .survey-section .content img {
  display: block;
  border-radius: 4px;
}
.waterproofing .survey-section .c-list {
  gap: 40px;
  margin-top: 24px;
}
.waterproofing .survey-section .c-list li {
  width: calc((100% - 120px) / 4);
}
.waterproofing .quality-section .inner-block > .flex-wrap {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.waterproofing .quality-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.waterproofing .quality-section .inn {
  max-width: 690px;
  width: 100%;
}
.waterproofing .quality-section .inn p + p {
  padding-top: 8px;
}
.waterproofing .quality-section .img-box {
  border: 1px solid var(--secondary);
  padding: 24px 42px;
  margin-bottom: 8px;
  background-color: var(--white);
}
.waterproofing .quality-section .img-box.mt-40 {
  margin-top: 40px;
}
.waterproofing .quality-section .note {
  text-align: center;
}
.waterproofing .quality-section .box {
  margin-top: 64px;
}
.waterproofing .quality-section .c-list {
  gap: 48px;
}
.waterproofing .quality-section .c-list li {
  width: calc((100% - 96px) / 3);
}
.waterproofing .quality-section .c-list li:last-child {
  padding-bottom: 0;
}
.waterproofing .quality-section .c-list li img {
  width: 32px;
}
.waterproofing .quality-section .c-list li .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0;
}
.waterproofing .quality-section .c-list li .txt-wrap .green {
  font-size: clamp(18px, 24px, min(24px, 1.25vw));
}
.waterproofing .flow-section .fz-24 {
  font-size: clamp(18px, 24px, min(24px, 1.25vw));
  padding-left: 16px;
}
.waterproofing .flow-section .c-list {
  gap: 76px;
}
.waterproofing .flow-section .c-list li {
  position: relative;
  width: calc((100% - 228px) / 4);
}
.waterproofing .flow-section .c-list li img {
  margin-top: 40px;
}
.waterproofing .flow-section .c-list + .c-list {
  margin-top: 40px;
}
.waterproofing .areas-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
}
.waterproofing .areas-section .areas-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px 16px;
}
.waterproofing .areas-section .areas-list li {
  width: calc((100% - 32px) / 3);
}
.waterproofing .areas-section .areas-list li .txt {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  margin-top: 16px;
}
.waterproofing .areas-section .c-contact-box .c-ttl01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.waterproofing .areas-section .c-contact-box .c-ttl01 .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.waterproofing .areas-section .c-contact-box .c-ttl01 .max-500 {
  display: none;
}
.waterproofing .areas-section .c-contact-box .txt {
  text-align: center;
  margin-bottom: 24px;
}
.waterproofing .areas-section .c-contact-box .flex-wrap {
  gap: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.waterproofing .areas-section .c-contact-box .flex-wrap .c-btn01 {
  position: relative;
}
.waterproofing .areas-section .c-contact-box .flex-wrap .c-btn01::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gray);
  top: 0;
  right: -40px;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.contact {
  padding-block: 0;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.tel {
  gap: 16px;
  margin-bottom: 16px;
  font-family: "Inter";
  font-size: clamp(26px, 34px, min(34px, 1.7708333333vw));
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.tel img {
  width: 24px;
  height: 24px;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.detail {
  gap: 32px;
  margin-bottom: 0;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.detail .txt {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.detail .txt:first-child {
  position: relative;
}
.waterproofing .areas-section .c-contact-box .flex-wrap.detail .txt:first-child::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gray);
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto;
}
.waterproofing .restoration-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.waterproofing .restoration-section .flex-wrap .inn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.waterproofing .restoration-section .flex-wrap .inn.img-sp {
  margin-bottom: 40px;
}
.waterproofing .restoration-section .flex-wrap .inn.img-sp img {
  display: block;
  margin: auto;
}
.waterproofing .restoration-section .flex-wrap img {
  display: block;
  max-height: 520px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.waterproofing .restoration-section .flex-wrap .txt {
  margin-bottom: 40px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.recruit .fz18 {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  line-height: 1.8;
  font-weight: 500;
}
.recruit .c-kv {
  background: url(../img/recruit/mv-img.jpg.webp) no-repeat center center/cover;
}
.recruit .img-section li {
  margin-bottom: 32px;
}
.recruit .img-section .l-line-ttl {
  margin-bottom: 40px;
}
.recruit .numbers-section .numbers-wrap .numbers-block .l-line-ttl {
  margin-top: 40px;
}
.recruit .numbers-section .numbers-wrap .numbers-block .box-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers {
  background: var(--light-gray);
  width: 100%;
  text-align: center;
  padding: 34px;
  font-weight: bold;
}
.recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block {
  margin-top: 16px;
}
.recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block .ttl {
  font-size: 24px;
  line-height: 1.8;
}
.recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block .num {
  font-size: 64px;
  font-family: var(--en);
  color: var(--primary);
  line-height: 1.2;
}
.recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block .unit {
  font-size: 32px;
}
.recruit .c-list {
  gap: 48px;
  margin-top: 40px;
}
.recruit .c-list li {
  width: 100%;
}
.recruit .schedule-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  margin-top: 40px;
}
.recruit .schedule-wrap .l-line-ttl {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.recruit .schedule-wrap .schedule-block {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruit .schedule-wrap .schedule-block .schedule-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  position: relative;
}
.recruit .schedule-wrap .schedule-block .schedule-list li::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 1rem;
  width: 2px;
  height: calc(115% + 1rem);
  background: var(--primary);
}
.recruit .schedule-wrap .schedule-block .schedule-list li:last-child::before {
  display: none;
}
.recruit .schedule-wrap .schedule-block .schedule-list li .time {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: var(--primary);
  position: relative;
  padding-left: 32px;
  width: 90px;
}
.recruit .schedule-wrap .schedule-block .schedule-list li .time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.recruit .schedule-wrap .schedule-block .schedule-list li .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 16px;
}
.recruit .schedule-wrap .schedule-block .schedule-list li .txt-wrap .ttl-wrap {
  width: 200px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.recruit .schedule-wrap .schedule-block .schedule-list li .txt-wrap .schedule {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px;
  background-color: var(--white);
  border: 1px solid var(--secondary);
  padding: 8px 20px;
  position: relative;
}
.recruit .schedule-wrap .schedule-block .schedule-list li .txt-wrap .schedule .list {
  position: relative;
  padding-left: 14px;
}
.recruit .schedule-wrap .schedule-block .schedule-list li .txt-wrap .schedule .list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}
.recruit .schedule-wrap .schedule-block .schedule-list li + li {
  margin-top: 16px;
}
.recruit .icn-block-white .txt {
  margin-top: 24px;
  text-align: center;
}
.recruit .jobs-section .c-btn03-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 0 120px;
  margin-top: 40px;
}
.recruit .jobs-section .recruit-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 632px;
  gap: 16px;
}
.recruit .jobs-section .recruit-tab button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px;
  border: 1px solid var(--secondary);
  border-bottom: none;
  background: var(--light-gray);
  border-radius: 10px 10px 0 0;
  font-size: clamp(14px, 20px, min(20px, 1.0416666667vw));
  line-height: 1.8;
  font-weight: bold;
  color: var(--primary);
}
.recruit .jobs-section .recruit-tab .is-active {
  background: var(--secondary);
  font-weight: bold;
  color: var(--white);
}
.recruit .jobs-section .l-line-ttl {
  margin-top: 40px;
  scroll-margin-top: 0;
}
.recruit .jobs-section .requirements {
  grid-template-columns: 240px 1fr;
  border-top: 1px solid var(--gray);
  display: none;
}
.recruit .jobs-section .requirements.is-active {
  display: grid;
}
.recruit .jobs-section .requirements.display {
  display: grid;
}
.recruit .jobs-section .requirements > dt,
.recruit .jobs-section .requirements > dd {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--gray);
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  line-height: 1.8;
}
.recruit .jobs-section .requirements > dt {
  background-color: var(--tertiary);
  font-weight: bold;
  text-align: center;
}
.recruit .entry-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.recruit .entry-section .flex-wrap .img-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
}
.recruit .entry-section .flex-wrap .entry-wrap {
  margin-top: 30px;
  margin-left: 300px;
  background-color: var(--tertiary);
  padding: 40px 100px 40px 200px;
  width: 100%;
}
.recruit .entry-section .flex-wrap .entry-wrap .green {
  font-size: clamp(16px, 24px, min(24px, 1.25vw));
  text-align: center;
}
.recruit .entry-section .flex-wrap .entry-wrap .c-txt {
  margin: 16px 0;
}
.recruit .entry-section .flex-wrap .entry-wrap a {
  margin: auto;
}
.recruit .green {
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: bold;
  margin-top: 16px;
  color: var(--primary);
}

/* -----------------------------------------------
* page-not-found Module
* ページが見つかりませんページ用
-------------------------------------------------- */

.contents {
  padding: 100px 0;
  text-align: center;
}
.contents .text {
  margin-bottom: 40px;
}
.contents .text .text-not-found {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}
.contents .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* -----------------------------------------------
* contact Module
* お問い合わせページ用
-------------------------------------------------- */
.contact {
  padding-top: 128px;
  z-index: 3;
}
.contact .inner-block {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact .c-kv-simple .mv-txt {
  gap: 160px;
}
.contact .c-kv-simple .mv-txt .sub-txt {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  line-height: 1.8;
  font-weight: 500;
}
.contact .c-kv-simple .mv-txt .ttl {
  position: relative;
}
.contact .c-kv-simple .mv-txt .ttl::after {
  position: absolute;
  content: "";
  top: 0;
  right: -80px;
  height: 100%;
  width: 1px;
  background-color: var(--secondary);
}
.contact .contact-section {
  margin-block: 80px;
  position: relative;
  z-index: 5;
}
.contact .contact-outer-wrap {
  margin-inline: 40px;
}
.contact .contact-outer-wrap > .sub-txt {
  text-align: center;
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.8;
  margin-block: 40px;
}
.contact .contact-inner-wrap {
  margin-top: 30px;
}
.contact .c-contact-step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .c-contact-step li {
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 10px 0 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33.3333333333%;
  height: 90px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
  border-right: 1px solid var(--gray);
  background: var(--light-gray);
  position: relative;
}
.contact .c-contact-step li:last-child {
  border-right: none;
}
.contact .c-contact-step li:last-child::after {
  display: none;
}
.contact .c-contact-step li::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 40px;
}
.contact .c-contact-step li.active {
  color: #fff;
  border: none;
  background: var(--primary);
}
.contact .c-contact-step li.active::after {
  border-color: var(--white);
}
.contact .c-contact-step li .en {
  display: block;
  font-size: 14px;
}
.contact .c-contact-step li .ja {
  font-size: calmp(16px, 20px, min(20px, 1.0416666667vw));
}
.contact .contact-section .q-wrap {
  padding-block: 16px;
  padding-inline: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.contact .contact-section .q-wrap.privacy-check {
  border-bottom: none;
  display: block;
  gap: 0;
  text-align: center;
}
.contact .contact-section .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.contact .contact-section .input-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.contact .contact-section .contact-label {
  font-size: 18px;
  font-weight: bold;
}
.contact .contact-section .required-txt {
  padding: 1px 11px 3px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  background: var(--secondary);
  position: absolute;
  right: 0;
  font-weight: bold;
  margin: auto;
}
.contact .contact-section .error-txt {
  margin-top: 4px;
  color: #FF4027;
  font-size: 16px;
  font-weight: 700;
  display: none;
}
.contact .contact-section input[type=text],
.contact .contact-section input[type=tel],
.contact .contact-section input[type=post-code],
.contact .contact-section input[type=address],
.contact .contact-section input[type=email],
.contact .contact-section textarea,
.contact .contact-section select {
  padding: 16px;
  background-color: var(--white);
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact .contact-section input[type=text]::-webkit-input-placeholder, .contact .contact-section input[type=tel]::-webkit-input-placeholder, .contact .contact-section input[type=post-code]::-webkit-input-placeholder, .contact .contact-section input[type=address]::-webkit-input-placeholder, .contact .contact-section input[type=email]::-webkit-input-placeholder, .contact .contact-section textarea::-webkit-input-placeholder, .contact .contact-section select::-webkit-input-placeholder {
  font-size: 18px;
}
.contact .contact-section input[type=text]::-moz-placeholder, .contact .contact-section input[type=tel]::-moz-placeholder, .contact .contact-section input[type=post-code]::-moz-placeholder, .contact .contact-section input[type=address]::-moz-placeholder, .contact .contact-section input[type=email]::-moz-placeholder, .contact .contact-section textarea::-moz-placeholder, .contact .contact-section select::-moz-placeholder {
  font-size: 18px;
}
.contact .contact-section input[type=text]:-ms-input-placeholder, .contact .contact-section input[type=tel]:-ms-input-placeholder, .contact .contact-section input[type=post-code]:-ms-input-placeholder, .contact .contact-section input[type=address]:-ms-input-placeholder, .contact .contact-section input[type=email]:-ms-input-placeholder, .contact .contact-section textarea:-ms-input-placeholder, .contact .contact-section select:-ms-input-placeholder {
  font-size: 18px;
}
.contact .contact-section input[type=text]::-ms-input-placeholder, .contact .contact-section input[type=tel]::-ms-input-placeholder, .contact .contact-section input[type=post-code]::-ms-input-placeholder, .contact .contact-section input[type=address]::-ms-input-placeholder, .contact .contact-section input[type=email]::-ms-input-placeholder, .contact .contact-section textarea::-ms-input-placeholder, .contact .contact-section select::-ms-input-placeholder {
  font-size: 18px;
}
.contact .contact-section input[type=text]::placeholder,
.contact .contact-section input[type=tel]::placeholder,
.contact .contact-section input[type=post-code]::placeholder,
.contact .contact-section input[type=address]::placeholder,
.contact .contact-section input[type=email]::placeholder,
.contact .contact-section textarea::placeholder,
.contact .contact-section select::placeholder {
  font-size: 18px;
}
.contact .contact-section input[type=text].errored,
.contact .contact-section input[type=tel].errored,
.contact .contact-section input[type=post-code].errored,
.contact .contact-section input[type=address].errored,
.contact .contact-section input[type=email].errored,
.contact .contact-section textarea.errored,
.contact .contact-section select.errored {
  border: 1px solid #FF4027;
}
.contact .contact-section .radio-group, .contact .contact-section .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.contact .contact-section .radio-group .wpcf7-radio, .contact .contact-section .radio-group .wpcf7-checkbox, .contact .contact-section .checkbox-group .wpcf7-radio, .contact .contact-section .checkbox-group .wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-weight: 500;
}
.contact .contact-section .radio-group .wpcf7-list-item, .contact .contact-section .checkbox-group .wpcf7-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .contact-section .radio-group label, .contact .contact-section .checkbox-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
  height: 20px;
}
.contact .contact-section .radio-group label::before, .contact .contact-section .radio-group label::after, .contact .contact-section .checkbox-group label::before, .contact .contact-section .checkbox-group label::after {
  content: "";
  position: absolute;
}
.contact .contact-section .radio-group label::before, .contact .contact-section .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .contact-section .radio-group label::after, .contact .contact-section .checkbox-group label::after {
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 15px;
  background: var(--secondary);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .contact-section .radio-group label:has(input:checked)::after, .contact .contact-section .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.contact .contact-section .radio-group label:has(input:checked)::before, .contact .contact-section .checkbox-group label:has(input:checked)::before {
  background: #fff;
}
.contact .contact-section .radio-group + .error-txt, .contact .contact-section .checkbox-group + .error-txt {
  margin-top: 8px;
}
.contact .contact-section .select-wrap {
  position: relative;
}
.contact .contact-section .select-wrap select {
  cursor: pointer;
}
.contact .contact-section .select-wrap::before {
  z-index: 1;
  content: "";
  border: solid rgb(179, 29, 35);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -3px;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.contact .wpcf7-response-output {
  display: none !important;
}
.contact .wpcf7-not-valid-tip {
  display: none !important;
}
.contact .btn-wrap {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.contact .c-btn01.back-btn {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
}
.contact .c-btn01.back-btn.arrow .inn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.contact .c-btn01.back-btn.arrow .inn-wrap::after {
  left: 0;
  rotate: 180deg;
  border-color: var(--primary);
}
.contact .l-line-ttl {
  margin-top: 40px;
}
.contact .privacy-box {
  padding: 30px 30px 30px 30px;
  background-color: var(--light-gray);
  border: 1px solid var(--gray);
  margin-bottom: 24px;
}
.contact .privacy-box .txt-box {
  max-height: 200px;
  overflow-y: scroll;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #999 transparent;
}
.contact .privacy-box .txt-box::-webkit-scrollbar {
  width: 5px;
  height: 100px;
}
.contact .privacy-box .txt-box::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}
.contact .privacy-box .txt-box::-webkit-scrollbar-thumb {
  background: var(--gray);
  border-radius: 2px;
}
.contact .privacy-box .txt {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.contact .privacy-box p + p {
  margin-top: 20px;
}
.contact .privacy {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.contact .privacy-check {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .privacy-check label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}
.contact .privacy-check label input[type=checkbox] {
  display: none;
}
.contact .privacy-check label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: #ccc;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .privacy-check label::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 8px;
  top: 4px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact .privacy-check label {
  position: relative;
}
.contact .privacy-check label:has(input:checked)::before {
  background: var(--secondary);
}
.contact .privacy-check label:has(input:checked)::after {
  opacity: 1;
}
.contact .privacy-check form {
  margin: 50px;
  text-align: center;
}
.contact .privacy-check form input[type=button] {
  background: #c1c1c1;
  border: #222 solid 1px;
  border-radius: 10px;
  color: #222;
  padding: 10px 80px;
  pointer-events: none;
  -webkit-transition: background-color 0.3s, color 0.5s;
  transition: background-color 0.3s, color 0.5s;
}
.contact .privacy-check form input[type=button]:focus {
  visibility: hidden; /* チェックボタンが押されていないときはボタン不可視  */
}
.contact .privacy-check form:has(input:checked) input[type=button] {
  background: #222;
  border: #222 solid 1px;
  color: #e1e1e1;
  cursor: pointer;
  pointer-events: auto;
}
.contact .privacy-check form:has(input:checked) input[type=button]:focus {
  visibility: visible; /* チェックボタンが押されたときはボタン可視  */
}

/* -----------------------------------------------
* confirm Module
* 確認ページ用
-------------------------------------------------- */
.confirm {
  padding-top: 128px;
  z-index: 3;
}
.confirm .inner-block {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.confirm .c-kv-simple .mv-txt {
  gap: 160px;
}
.confirm .c-kv-simple .mv-txt .sub-txt {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  line-height: 1.8;
  font-weight: 500;
}
.confirm .c-kv-simple .mv-txt .ttl {
  position: relative;
}
.confirm .c-kv-simple .mv-txt .ttl::after {
  position: absolute;
  content: "";
  top: 0;
  right: -80px;
  height: 100%;
  width: 1px;
  background-color: var(--secondary);
}
.confirm .contact-section {
  margin-block: 80px;
  position: relative;
  z-index: 5;
}
.confirm .contact-outer-wrap {
  margin-inline: 40px;
}
.confirm .contact-outer-wrap > .txt {
  text-align: center;
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.8;
  margin-block: 40px;
}
.confirm .contact-inner-wrap {
  margin-top: 30px;
}
.confirm .c-contact-step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.confirm .c-contact-step li {
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 10px 0 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33.3333333333%;
  height: 90px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-right: 1px solid var(--gray);
  background: var(--light-gray);
  position: relative;
}
.confirm .c-contact-step li:last-child {
  border-right: none;
}
.confirm .c-contact-step li:last-child::after {
  display: none;
}
.confirm .c-contact-step li::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 40px;
}
.confirm .c-contact-step li.active {
  color: #fff;
  border: none;
  background: var(--primary);
}
.confirm .c-contact-step li.active::after {
  border-color: var(--white);
}
.confirm .c-contact-step li .en {
  display: block;
  font-size: 14px;
}
.confirm .c-contact-step li .ja {
  font-size: calmp(16px, 20px, min(20px, 1.0416666667vw));
}
.confirm .contact-section .q-wrap {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-bottom: 1px solid #ccc;
}
.confirm .contact-section .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.confirm .contact-section .input-area {
  width: calc(100% - 270px);
}
.confirm .contact-section .contact-label {
  font-size: 18px;
  font-weight: bold;
}
.confirm .contact-section .required-txt {
  padding: 1px 11px 3px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  background: var(--secondary);
  position: absolute;
  right: 0;
  font-weight: bold;
  margin: auto;
}
.confirm .contact-section .error-txt {
  margin-top: 4px;
  color: #FF4027;
  font-size: 16px;
  font-weight: 700;
}
.confirm .contact-section input[type=text],
.confirm .contact-section input[type=tel],
.confirm .contact-section input[type=post-code],
.confirm .contact-section input[type=address],
.confirm .contact-section input[type=email],
.confirm .contact-section textarea,
.confirm .contact-section select {
  padding: 16px;
  background-color: var(--white);
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.confirm .contact-section input[type=text].errored,
.confirm .contact-section input[type=tel].errored,
.confirm .contact-section input[type=post-code].errored,
.confirm .contact-section input[type=address].errored,
.confirm .contact-section input[type=email].errored,
.confirm .contact-section textarea.errored,
.confirm .contact-section select.errored {
  border: 1px solid #FF4027;
}
.confirm .contact-section .radio-group, .confirm .contact-section .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.confirm .contact-section .radio-group .wpcf7-radio, .confirm .contact-section .radio-group .wpcf7-checkbox, .confirm .contact-section .checkbox-group .wpcf7-radio, .confirm .contact-section .checkbox-group .wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.confirm .contact-section .radio-group label, .confirm .contact-section .checkbox-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
.confirm .contact-section .radio-group label::before, .confirm .contact-section .radio-group label::after, .confirm .contact-section .checkbox-group label::before, .confirm .contact-section .checkbox-group label::after {
  content: "";
  position: absolute;
}
.confirm .contact-section .radio-group label::before, .confirm .contact-section .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: #ccc;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.confirm .contact-section .radio-group label::after, .confirm .contact-section .checkbox-group label::after {
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 15px;
  background: var(--secondary);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.confirm .contact-section .radio-group label:has(input:checked)::after, .confirm .contact-section .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.confirm .contact-section .radio-group label:has(input:checked)::before, .confirm .contact-section .checkbox-group label:has(input:checked)::before {
  background: #fff;
}
.confirm .contact-section .radio-group + .error-txt, .confirm .contact-section .checkbox-group + .error-txt {
  margin-top: 8px;
}
.confirm .contact-section .select-wrap {
  position: relative;
}
.confirm .contact-section .select-wrap select {
  cursor: pointer;
}
.confirm .contact-section .select-wrap::before {
  z-index: 1;
  content: "";
  border: solid rgb(179, 29, 35);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -3px;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.confirm .wpcf7-response-output {
  display: none !important;
}
.confirm .wpcf7-not-valid-tip {
  display: none !important;
}
.confirm .btn-wrap {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.confirm .c-btn01.back-btn {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
}
.confirm .c-btn01.back-btn.arrow .inn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.confirm .c-btn01.back-btn.arrow .inn-wrap::after {
  left: 0;
  rotate: 180deg;
  border-color: var(--primary);
}

/* -----------------------------------------------
* complete
* お問い合わせ完了
-------------------------------------------------- */
.complete {
  padding-top: 128px;
}
.complete .c-kv-simple .logomark {
  z-index: 0;
  height: 250%;
}
.complete .contents {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.complete .contents .fz-30 {
  font-size: clamp(20px, 30px, min(30px, 1.5625vw));
  font-weight: 700;
  margin-bottom: 20px;
}
.complete .contents .text {
  margin-bottom: 40px;
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  line-height: 1.8;
  color: #333333;
  margin: 0;
  text-align: center;
  font-weight: 500;
}
.complete .contents .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.complete .cta-section {
  z-index: 1;
  position: relative;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.building-renovation .txt,
.building-renovation .note {
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  font-weight: 500;
  line-height: 1.8;
}
.building-renovation .mv-section {
  background: url(../img/building-renovation/mv-img.jpg.webp) no-repeat center center/cover;
}
.building-renovation .restoration-section {
  background-color: #F9F9F9;
}
.building-renovation .restoration-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.building-renovation .restoration-section .flex-wrap.mb-64 {
  margin-bottom: 40px;
}
.building-renovation .restoration-section .flex-wrap .img-wrap {
  max-width: 539px;
}
.building-renovation .restoration-section .flex-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.building-renovation .restoration-section .inn {
  max-width: 690px;
  width: 100%;
}
.building-renovation .restoration-section .inn .c-ttl01 .en {
  line-height: 1.8;
}
.building-renovation .restoration-section .inn .content:last-child {
  margin-bottom: 0;
}
.building-renovation .restoration-section .content {
  margin-bottom: 40px;
}
.building-renovation .restoration-section .content:last-child {
  margin-bottom: 0;
}
.building-renovation .restoration-section .chart-img-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.building-renovation .restoration-section .chart-img-wrap .img-box {
  width: 100%;
  max-width: 1120px;
  border: 1px solid #8DC221;
  background-color: #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
}
.building-renovation .restoration-section .chart-img-wrap .img-box img {
  width: 100%;
  height: auto;
  display: block;
}
.building-renovation .restoration-section .chart-img-wrap .img-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  font-weight: 500;
}
.building-renovation .restoration-section .chart-img-wrap .img-text .img-text01 {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-right: 8px;
}
.building-renovation .restoration-section .chart-img-wrap .img-text .img-text02 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.building-renovation .deterioration-section .ttl-wrap {
  margin-bottom: 40px;
}
.building-renovation .strengths-section {
  background-color: #F9F9F9;
}
.building-renovation .strengths-section .ttl-wrap {
  margin-bottom: 40px;
}
.building-renovation .strengths-section .ttl-wrap .c-ttl01 .en {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.building-renovation .strengths-section .ttl-wrap .c-ttl01 .ttl-main {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.building-renovation .strengths-section .ttl-wrap .c-ttl01 .ttl-main::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #8DC221;
  margin-left: 16px;
}
.building-renovation .strengths-section .ttl-wrap .c-ttl01 .yellow-green {
  font-size: 40px;
  color: #8DC221;
}
.building-renovation .strengths-section .ttl-wrap .txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  margin-top: 16px;
}
.building-renovation .strengths-section .c-strengths-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.building-renovation .strengths-section .c-strengths-list li {
  width: 100%;
}
.building-renovation .strengths-section .c-strengths-list .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.building-renovation .strengths-section .c-strengths-list .flex-wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.building-renovation .strengths-section .c-strengths-list .flex-wrap .inn {
  max-width: 640px;
  width: 100%;
}
.building-renovation .strengths-section .c-strengths-list .flex-wrap .img-wrap {
  width: 560px;
  height: 336px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.building-renovation .strengths-section .c-strengths-list .flex-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
.building-renovation .strengths-section .c-strengths-list .num-ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.building-renovation .strengths-section .c-strengths-list .num-ttl-wrap .strengths-item-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #006933;
}
.building-renovation .strengths-section .c-strengths-list .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
}
.building-renovation .service-section {
  position: relative;
}
.building-renovation .service-section .img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.building-renovation .service-section .service-content {
  position: relative;
  z-index: 2;
}
.building-renovation .service-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}
.building-renovation .service-section .c-ttl01 {
  min-width: 318px;
}
.building-renovation .service-section .txt {
  font-size: 20px;
  line-height: 1.75;
  margin-top: 16px;
}
.building-renovation .service-section .service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px 16px;
}
.building-renovation .service-section .service-list li {
  width: calc((100% - 32px) / 3);
}
.building-renovation .service-section .service-list li img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 4px;
}
.building-renovation .service-section .service-list li .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 16px;
}
.building-renovation .flow-section {
  background-color: #F9F9F9;
}
.building-renovation .flow-section .c-flow-container {
  max-width: 1280px;
  margin: 0 auto;
  display: block;
  margin-top: 64px;
}
.building-renovation .flow-section .c-flow-container .c-flow-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #8DC221;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-attention-badge {
  position: absolute;
  top: -25px;
  left: 40px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 344px;
  height: 50px;
  background-color: #8DC221;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box {
  width: 480px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #F5FFE2;
  padding: 40px;
  border-right: 1px solid #8DC221;
  border-radius: 4px 0 0 4px;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .flow-num-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .flow-num-ttl .num {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #006933;
  position: relative;
  line-height: 1;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .flow-num-ttl .num::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #006933;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .flow-num-ttl .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #006933;
  line-height: 1.4;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box {
  width: 100%;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 4px 4px 0;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 24px;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label img {
  width: auto;
  height: 52px;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label::after {
  position: absolute;
  content: "クリステル工業のこだわり";
  color: #333333;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-left: 78px;
  padding-right: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  z-index: 2;
  pointer-events: none;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-list li:last-child {
  margin-bottom: 0;
}
.building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #8DC221;
  border-radius: 50%;
}
.building-renovation .flow-section .c-flow-container .c-flow-item.no-kodawari .flow-main-box {
  display: block;
  width: 100%;
  padding-right: 0;
  border-right: none;
  border-radius: 4px;
}
.building-renovation .flow-section .c-flow-container .arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px auto;
  width: 48px;
  height: 48px;
}
.building-renovation .target-section {
  background-color: var(--white);
}
.building-renovation .target-section .target-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.building-renovation .target-section .target-row.mb-40 {
  margin-bottom: 40px;
}
.building-renovation .target-section .target-row .target-inn:nth-child(1) {
  width: calc(100% - 539px - 40px);
}
.building-renovation .target-section .target-row .target-inn:nth-child(2) {
  width: 539px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.building-renovation .target-section .target-row .target-inn:nth-child(2) img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.building-renovation .target-section .target-main-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #006933;
}
.building-renovation .target-section .txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
}
.building-renovation .target-section .target-sub-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #006933;
  margin-bottom: 24px;
  position: relative;
  border-left: 2px solid #006933;
  padding: 5px 0 5px 24px;
}
.building-renovation .target-section .target-feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px 64px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 64px;
  margin-bottom: 64px;
}
.building-renovation .target-section .target-feature-list.effort {
  padding-bottom: 0;
  border-bottom: none;
}
.building-renovation .target-section .target-feature-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: calc((100% - 128px) / 3);
}
.building-renovation .target-section .target-feature-list li .ico-wrap {
  width: 96px;
  height: 96px;
  background-color: #F9F9F9;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.building-renovation .target-section .target-feature-list li .ico-wrap img {
  width: 96px;
  height: auto;
  padding: 20px;
}
.building-renovation .target-section .target-feature-list li .feature-ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #006933;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
}
.building-renovation .target-section .target-feature-list li .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  text-align: left;
  width: 100%;
}
.building-renovation .target-section .c-contact-box .c-ttl01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.building-renovation .target-section .c-contact-box .c-ttl01 .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.building-renovation .target-section .c-contact-box .c-ttl01 .en {
  color: #006933;
}
.building-renovation .target-section .c-contact-box .c-ttl01 .max-500 {
  display: none;
}
.building-renovation .target-section .c-contact-box .txt {
  text-align: center;
  margin-bottom: 24px;
}
.building-renovation .target-section .c-contact-box .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.building-renovation .target-section .c-contact-box .flex-wrap .c-btn01 {
  position: relative;
}
.building-renovation .target-section .c-contact-box .flex-wrap .c-btn01::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gray);
  top: 0;
  right: -40px;
}
.building-renovation .target-section .c-contact-box .flex-wrap.contact {
  padding-block: 0;
}
.building-renovation .target-section .c-contact-box .flex-wrap.tel {
  gap: 16px;
  margin-bottom: 16px;
  font-family: "Inter";
  font-size: 34px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  line-height: 1;
}
.building-renovation .target-section .c-contact-box .flex-wrap.detail {
  gap: 32px;
  margin-bottom: 0;
}
.building-renovation .target-section .c-contact-box .flex-wrap.detail .txt {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.building-renovation .target-section .c-contact-box .flex-wrap.detail .txt:first-child {
  position: relative;
}
.building-renovation .target-section .c-contact-box .flex-wrap.detail .txt:first-child::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gray);
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto;
}
.building-renovation .waterproofing-section {
  background-color: #F9F9F9;
}
.building-renovation .waterproofing-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.building-renovation .waterproofing-section .inn {
  max-width: 690px;
  width: 100%;
}
.building-renovation .waterproofing-section .inn .content:last-child {
  margin-bottom: 0;
}
.building-renovation .waterproofing-section .content {
  margin-bottom: 40px;
}
.building-renovation .waterproofing-section .content:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.news .news-list-section {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  padding: 80px 0;
  z-index: 3;
}
.news .news-list-section .inner-block {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.news .news-list-section .news-content-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
.news .news-list-section .news-main-area {
  width: 900px;
}
.news .news-list-section .news-main-area .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news .news-list-section .news-main-area .news-item {
  border-top: 1px solid #d9d9d9;
}
.news .news-list-section .news-main-area .news-item:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.news .news-list-section .news-main-area .news-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 98px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 24px;
  position: relative;
  padding: 0 16px;
}
.news .news-list-section .news-main-area .news-link .date {
  font-size: 16px;
  font-weight: bold;
  color: #006933;
  width: auto;
}
.news .news-list-section .news-main-area .news-link .badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 128px;
  height: 30px;
  background-color: #8DC221;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.news .news-list-section .news-main-area .news-link .title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.news .news-list-section .news-main-area .news-link .arrow-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 34px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
}
.news .news-list-section .news-main-area .news-link .arrow-btn img {
  width: 100%;
  height: auto;
}
.news .news-list-section .news-sidebar {
  width: 280px;
}
.news .news-list-section .news-sidebar .category-box {
  gap: 24px;
}
.news .news-list-section .news-sidebar .category-ttl {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #006933;
  margin: 0 0 24px 0;
  padding-left: 24px;
  line-height: 1.4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  height: 44px;
}
.news .news-list-section .news-sidebar .category-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 44px;
  background-color: #006933;
}
.news .news-list-section .news-sidebar .category-list {
  list-style: none;
  padding: 24px 24px 32px 24px;
  background-color: #F5FFE2;
}
.news .news-list-section .news-sidebar .category-list li {
  margin-bottom: 8px;
}
.news .news-list-section .news-sidebar .category-list li:last-child {
  margin-bottom: 0;
}
.news .news-list-section .news-sidebar .category-list li a {
  font-size: 20px;
  color: #006933;
  border-bottom: 1px solid #006933;
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  line-height: 1.8;
}
.news .news-list-section .news-sidebar .category-list li a:hover {
  opacity: 0.7;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.company .mv-section {
  background: url(../img/company/mv-img.jpg.webp) no-repeat center center/cover;
}
.company .message-section {
  background-color: var(--light-gray);
}
.company .message-section .grid-wrap {
  display: grid;
  gap: 41px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 42% 1fr;
}
.company .message-section .grid-wrap .img-wrap {
  text-align: center;
  max-width: 539px;
}
.company .message-section .grid-wrap .img-wrap .company {
  font-size: 20px;
  margin-top: 40px;
}
.company .message-section .grid-wrap .img-wrap .desc {
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.company .message-section .grid-wrap .img-wrap .desc .ttl {
  font-size: 24px;
}
.company .message-section .grid-wrap .img-wrap .desc .name {
  font-size: 30px;
}
.company .message-section .grid-wrap .content .l-line-ttl {
  margin-bottom: 34px;
}
.company .message-section .grid-wrap .content .txt + .txt {
  margin-top: 24px;
}
.company .message-section .grid-wrap .content .txt .c-marker {
  font-weight: bold;
  color: var(--primary);
}
.company .philosophy-section .grid-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.company .philosophy-section .grid-cont .cont {
  padding: 32px;
  padding-bottom: 24px;
  background-color: var(--light-green02);
}
.company .philosophy-section .grid-cont .cont .l-line-ttl {
  margin-bottom: 24px;
}
.company .philosophy-section .grid-cont .cont p {
  font-weight: 500;
  font-size: 20px;
  line-height: 2em;
}
.company .philosophy-section .grid-cont .cont p .bold {
  font-weight: bold;
}
.company .philosophy-section .grid-cont .cont .mark {
  background-color: var(--primary);
  color: var(--white);
  font-weight: bold;
  line-height: 0.2em;
  padding-inline: 6px;
  border-radius: 2px;
  aspect-ratio: 1/1;
}
.company .philosophy-section .grid-cont .cont .mark.en {
  padding-inline: 7px;
  margin-right: 2px;
}
.company .origin-section {
  background-color: var(--light-gray);
}
.company .origin-section .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.company .origin-section .flex-wrap.mb-64 {
  margin-bottom: 64px;
}
.company .origin-section .flex-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.company .origin-section .inn {
  max-width: 690px;
  width: 100%;
}
.company .origin-section .inn .content:last-child {
  margin-bottom: 0;
}
.company .origin-section .inn .txt + .txt {
  margin-top: 24px;
}
.company .origin-section .chart-img {
  display: block;
  width: 100%;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.company .character-section .grid-cont {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 40px;
}
.company .character-section .txt + .txt {
  margin-top: 24px;
}
.company .services-section {
  background-color: var(--light-gray);
}
.company .services-section .l-line-ttl {
  margin-bottom: 40px;
}
.company .services-section .grid-cont {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 40px;
}
.company .services-section .grid-cont + .l-line-ttl {
  margin-top: 40px;
}
.company .services-section .grid-cont .img {
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}
.company .services-section .grid-cont .ttl {
  color: var(--primary);
  font-weight: bold;
  font-size: clamp(18px, 24px, min(24px, 1.25vw));
  line-height: 1.4em;
}
.company .services-section .grid-cont .txt {
  font-size: clamp(15px, 20px, min(20px, 1.0416666667vw));
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
}
.company .profile-section .inner-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 86px;
}
.company .history-section {
  padding-block: 80px;
  font-size: clamp(16px, 1.2vw, 18px);
}
.company .history-section .inner-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 86px;
}
.company .history-section .inner-block .history-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.company .history-section .inner-block .history-wrap .l-line-ttl {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.company .history-section .inner-block .history-wrap .history-block {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.company .history-section .inner-block .history-wrap .history-block .history-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company .history-section .inner-block .history-wrap .history-block .history-list .first {
  margin-top: 43px 17px;
}
.company .history-section .inner-block .history-wrap .history-block .history-list li {
  padding-block: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  position: relative;
}
.company .history-section .inner-block .history-wrap .history-block .history-list li::before {
  content: "";
  position: absolute;
  left: 97px;
  top: 2rem;
  width: 2px;
  height: calc(141% + 1rem);
  background: var(--secondary);
}
.company .history-section .inner-block .history-wrap .history-block .history-list li:last-child::before {
  display: none;
}
.company .history-section .inner-block .history-wrap .history-block .history-list li .time {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: var(--primary);
  position: relative;
  width: 106px;
  font-weight: bold;
}
.company .history-section .inner-block .history-wrap .history-block .history-list li .time::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.company .history-section .inner-block .history-wrap .history-block .history-list li .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 24px;
  font-weight: 500;
}
.company .history-section .inner-block .history-wrap .history-block .history-list li .txt-wrap .date {
  width: 110px;
  font-weight: bold;
  max-width: 110px;
  width: 100%;
}
.company .history-section .inner-block .history-wrap .img-wrap {
  position: relative;
  right: -80px;
}
.company .history-section .inner-block .history-wrap .img-wrap .img-list {
  width: 320px;
}
.company .history-section .inner-block .history-wrap .img-wrap .img-list img {
  width: 100%;
  display: block;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.company .history-section .inner-block .history-wrap .img-wrap .img-list p {
  margin-top: 16px;
  text-align: center;
  font-size: clamp(14px, 14px + (100vw - 600px) / 300, 16px);
}
.company .history-section .inner-block .history-wrap .img-wrap li + li {
  margin-top: 16px;
}
.company .history-section .ib {
  display: inline-block;
}
.company .partners-section .cont-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.company .partners-section .cont-wrap .cont, .company .partners-section .cont-wrap .c-btn02 {
  width: 100%;
  height: 100%;
}
.company .partners-section .cont-wrap .c-btn02 .inn-wrap {
  width: 100%;
  height: 50px;
}
.company .partners-section .cont-wrap + .l-line-ttl {
  margin-top: 40px;
}
.company .partners-section .tag-wrap .cont {
  border-radius: 4px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 18px 24px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
.company .associations-section {
  background-color: var(--light-gray);
}
.company .associations-section .desc {
  margin-bottom: 40px;
}
.company .associations-section .cont-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.company .associations-section .cont-wrap .cont, .company .associations-section .cont-wrap .c-btn02 {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.company .associations-section .cont-wrap .c-btn02 .inn-wrap {
  width: 100%;
  height: 100%;
}
.company .associations-section .cont-wrap + .l-line-ttl {
  margin-top: 40px;
}
.company .access-section .info-wrap {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.company .access-section .info-wrap .w-ico {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.company .access-section .info-wrap .w-ico img {
  display: block;
  width: 32px;
  height: 32px;
}
.company .access-section .info-wrap .train-wrap {
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.company .access-section .map-wrap iframe {
  width: 100%;
  min-height: 426px;
}
.company .access-section .btn {
  display: block;
  margin-top: 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid var(--white);
  font-size: 20px;
}
.company .access-section .btn::after {
  content: "";
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  position: relative;
  top: 1px;
  transition: 0.3s ease-in-out;
}

/* -----------------------------------------------
* news Module
* news detailページ用
-------------------------------------------------- */
.news-detail .num,
.news-detail ol > li:before {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.news-detail p {
  font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
  color: var(--black);
  font-weight: 500;
  line-height: 1.8;
}
.news-detail .c-kv-simple .mv-txt .ttl {
  font-size: 30px;
}
.news-detail > .inner-block {
  margin-block: 80px;
}
.news-detail > .inner-block.max-920 {
  max-width: 1000px;
}
.news-detail .detail-section .ttl-wrap {
  border-bottom: 1px solid var(--gray);
  padding-block: 32px;
}
.news-detail .detail-section .ttl-wrap .date-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.news-detail .detail-section .ttl-wrap .date-block .date {
  color: var(--primary);
}
.news-detail .detail-section .ttl-wrap .date-block .tag {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  background-color: var(--secondary);
  padding: 4px 8px;
  border-radius: 4px;
}
.news-detail .detail-section .ttl-wrap .news-ttl {
  font-size: clamp(20px, 32px, min(32px, 1.6666666667vw));
  font-weight: 700;
  line-height: 1.6;
  color: var(--black);
}
.news-detail .article {
  padding-bottom: 64px;
}
.news-detail .article * + .ttl-wrap {
  padding-top: 40px;
}
.news-detail .article h3 {
  padding-left: 24px;
  font-size: clamp(18px, 24px, min(24px, 1.25vw));
  line-height: 1.4;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  margin-top: 40px;
}
.news-detail .article h3:not(:first-of-type) {
  margin-top: 80px;
}
.news-detail .article h3::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--primary);
  top: 0;
  left: 0;
}
.news-detail .article * + p,
.news-detail .article * + ul,
.news-detail .article * + ol,
.news-detail .article * + a,
.news-detail .article .wp-block-columns-is-layout-flex {
  margin-top: 40px;
}
.news-detail .article p + p {
  margin-top: 16px;
}
.news-detail .article p + p:has(> .link-ex) {
  margin-top: 40px;
}
.news-detail .article .wp-block-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-detail .article .wp-block-columns .wp-block-image {
  margin-top: 0;
}
.news-detail .article .wp-block-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: block;
  margin-top: 40px;
}
.news-detail .article p > a {
  font-size: clamp(16px, 20px, min(20px, 1.5503875969vw));
  color: var(--primary);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: var(--primary);
          text-decoration-color: var(--primary);
}
.news-detail .article p > a::after {
  display: inline-block;
  vertical-align: middle;
  background-image: url(/img/news/link_mark.svg);
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 8px;
}
.news-detail .article ul li {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  font-weight: 500;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}
.news-detail .article ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 22px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news-detail .article ol {
  counter-reset: number 0;
}
.news-detail .article ol li {
  font-size: clamp(16px, 18px, min(18px, 0.9375vw));
  font-weight: 500;
  line-height: 1.8;
}
.news-detail .article ol li:before {
  counter-increment: number 1;
  content: counter(number) ".";
  color: var(--secondary);
  padding-right: 4px;
  font-weight: 500;
  display: inline-block;
  width: 33px;
}
.news-detail .article .wp-block-buttons {
  margin-top: 40px;
}
.news-detail .article .wp-block-button__link {
  background: var(--primary);
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-size: clamp(14px, 20px, min(20px, 1.0416666667vw));
  font-weight: 700;
  line-height: 1;
  padding: 24px 20px 24px 20px;
  min-width: 300px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 8px;
}
.news-detail .article .wp-block-button__link:not([target=_blank])::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: 1px;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news-detail .article .wp-block-button__link[target=_blank] {
  min-width: 260px;
}
.news-detail .article .wp-block-button__link[target=_blank]::after {
  position: relative;
  content: "";
  -webkit-mask-image: url(/img/news/link_mark.svg);
          mask-image: url(/img/news/link_mark.svg);
  -webkit-mask-size: 18px 18px;
          mask-size: 18px 18px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--white);
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  right: 0;
}
.news-detail .c-paging-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 64px;
}
.news-detail .c-paging-area .c-btn01.arrow {
  max-width: 336px;
  width: 100%;
  background-color: var(--secondary);
}
.news-detail .c-paging-area .c-btn01.arrow .inn-wrap {
  grid-template-columns: auto 1fr;
}
.news-detail .c-paging-area .c-btn01.arrow .inn-wrap::after {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  rotate: -180deg;
}
.news-detail .c-paging-area .c-btn01.arrow:hover {
  background-color: var(--primary);
}
.news-detail .c-paging-area .prev,
.news-detail .c-paging-area .next {
  position: relative;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gray);
  border-radius: 5px;
}
.news-detail .c-paging-area .prev::after,
.news-detail .c-paging-area .next::after {
  position: absolute;
  content: "";
  -webkit-mask-image: url(/img/news/pagenation-arrow.svg);
          mask-image: url(/img/news/pagenation-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 21px;
  height: 16px;
  padding: 8px 5px;
  background-color: var(--primary);
}
.news-detail .c-paging-area .prev:hover,
.news-detail .c-paging-area .next:hover {
  background-color: var(--primary);
}
.news-detail .c-paging-area .prev:hover::after,
.news-detail .c-paging-area .next:hover::after {
  background-color: var(--white);
}
.news-detail .c-paging-area .next {
  rotate: 180deg;
}
@media screen and (width < 768px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-inline: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header .logo img {
    max-width: min(200px, 53.3333333333vw);
  }
  .c-header .sns-wrap a {
    padding: 0 min(12px, 3.2vw);
  }
  .c-header .sns-wrap .l-flex {
    gap: 8px;
  }
  .c-header .sns-wrap .inn {
    font-size: min(26px, 6.9333333333vw);
  }
  .c-footer .inner-block {
    padding-block: 48px;
  }
  .c-footer .logo img {
    max-height: 56px;
  }
  .c-footer .l-flex {
    gap: 24px;
  }
  .c-footer .tel .inn {
    font-size: clamp(32px, 32px, min(32px, 1.6666666667vw));
    font-weight: bold;
  }
  .c-footer .c-menu {
    display: none;
  }
  .c-footer .sns-wrap {
    margin-top: 0;
    gap: 29px;
  }
  .c-footer .balloon {
    font-size: clamp(14px, 14px, min(14px, 0.7291666667vw));
    font-weight: 500;
  }
  .c-footer .link {
    font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
    font-weight: 700;
  }
  .c-footer .link .ico {
    height: 40px;
    width: 40px;
  }
  .c-footer .link .ico img {
    max-width: 26px;
  }
  #pagetop {
    right: 20px;
  }
  #pagetop a {
    height: 50px;
    width: 50px;
  }
  #pagetop a::before {
    width: 11px;
    height: 11px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    left: 5px;
  }
  .c-ttl01 {
    margin-bottom: 24px;
  }
  .c-ttl01 .ja::before {
    height: 14px;
    width: 14px;
    top: 1px;
  }
  .c-ttl01 .ja {
    padding-left: 24px;
    margin-bottom: 8px;
  }
  .c-ttl01.lower {
    margin-bottom: 24px;
  }
  .c-ttl02 {
    margin-bottom: 16px;
  }
  .c-ttl-wrap .c-mv-ttl {
    margin-bottom: 22px;
  }
  .c-ttl-wrap .c-sub-txt {
    padding-left: 0;
    border-left: none;
  }
  .l-line-ttl {
    margin-bottom: 16px;
    padding-left: 16px;
  }
  .l-line-ttl.pb40 {
    margin-bottom: 20px;
  }
  .c-section .inner-block {
    padding-block: 48px;
  }
  .c-txt + .c-txt {
    margin-top: 16px;
  }
  .c-txt.sp-fz-18 {
    font-size: clamp(18px, 18px, min(18px, 0.9375vw));
    font-weight: 500;
  }
  .c-list {
    display: block;
  }
  .c-list li {
    width: 100%;
    margin-top: 24px;
  }
  .c-list li .txt-wrap {
    margin-top: 16px;
  }
  .c-list li .txt-wrap .green {
    margin-bottom: 8px;
  }
  .cta-section {
    background: url(../img/common/cta-bg_sp.jpg.webp) no-repeat center center/cover;
  }
  .cta-section .ttl-wrap {
    max-width: 100%;
  }
  .cta-section .contact-wrap .ttl {
    font-size: clamp(16px, 20px, min(20px, 1.0416666667vw));
    font-weight: 700;
    margin-bottom: 8px;
  }
  .cta-section .contact-wrap .tel {
    gap: 8px;
    margin: 0 auto 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .cta-section .contact-wrap .l-flex .txt {
    font-size: clamp(14px, 14px, min(14px, 0.7291666667vw));
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .c-deterioration-list .flex-wrap.bg-green {
    padding: 12px 20px;
  }
  .c-deterioration-list .c-list-ttl {
    font-size: clamp(18px, 24px, min(24px, 1.25vw));
    font-weight: bold;
  }
  .c-deterioration-list .txt-wrap .txt-box-wrap::after {
    font-size: 16px;
  }
  .c-deterioration-list .txt-wrap .txt {
    margin-top: 15px;
  }
  .img-section .flex-wrap.mb-64 {
    margin-bottom: 30px;
  }
  .img-section .flex-wrap .content {
    margin-bottom: 20px;
  }
  .icn-wrap {
    display: block;
    margin-top: 24px;
  }
  .icn-wrap .icn-block + .icn-block, .icn-wrap .icn-block + .icn-block-white,
  .icn-wrap .icn-block-white + .icn-block,
  .icn-wrap .icn-block-white + .icn-block-white {
    margin-top: 24px;
  }
  .icn-wrap .txt {
    padding-top: 8px;
    font-size: 16px;
  }
  .pagination-wrap {
    margin-top: 40px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pagination-wrap .pagination {
    gap: 6px;
    max-width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination-wrap .pagination li {
    font-size: 16px;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    min-width: 0;
  }
  .pagination-wrap .pagination li a, .pagination-wrap .pagination li.ellipsis {
    width: 44px;
    height: 44px;
    width: clamp(32px, 8vw, 44px);
    height: clamp(32px, 8vw, 44px);
  }
  .pagination-wrap .pagination li.prev a img, .pagination-wrap .pagination li.next a img {
    width: 20px;
  }
  .c-table01 th, .c-table01 td {
    padding: 16px 8px;
    font-size: 14px;
  }
  .c-table01 th {
    min-width: 120px;
    width: 120px;
  }
  .strengths-section .strengths-list.c-list {
    display: block;
  }
  .strengths-section .strengths-list.c-list li img {
    margin-top: 16px;
  }
  .c-btn01 {
    min-width: auto;
    padding: 21px 51px;
    width: 100%;
  }
  .c-btn01.arrow .inn-wrap {
    gap: 16px;
  }
  .c-btn01.arrow .inn-wrap::after {
    width: 8px;
    height: 8px;
  }
  .c-btn01.back-arrow {
    padding: 21px 40px 21px 60px;
    width: 100%;
  }
  .c-btn01.back-arrow .inn-wrap::before {
    left: -24px;
    width: 8px;
    height: 8px;
  }
  .c-btn02 {
    padding: 8px 16px;
    font-size: 16px;
  }
  .c-btn03 .inn {
    padding: 14px;
  }
  .c-btn03 .inn::after {
    width: 8px;
    height: 8px;
  }
  .c-kv .mv-txt {
    margin-top: 20px;
  }
  .c-kv .mv-txt-logo {
    text-align: center;
    width: 50px;
  }
  .c-kv-simple {
    padding: 40px 0;
  }
  .c-kv-simple .logomark {
    height: 220%;
  }
  .c-kv-simple .inner-block {
    padding: 0 20px;
  }
  .c-kv-simple .mv-txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
  .c-kv-simple .mv-txt .ttl {
    font-size: 36px;
    height: auto;
  }
  .home .mv-section {
    background: url(../img/home/mv-bg_sp.jpg.webp) no-repeat center center/cover;
  }
  .home .mv-section .inner-block {
    padding: 48px 0 237px;
  }
  .home .mv-section .mv-txt-wrap {
    bottom: min(94px, 25.0666666667vw);
    left: min(20px, 5.3333333333vw);
  }
  .home .mv-section .mv-ttl .inn {
    padding: 3px 11px;
    font-size: clamp(20px, 24px, min(24px, 1.25vw));
    font-weight: bold;
  }
  .home .mv-section .mv-ttl .inn + .inn {
    margin-top: 8px;
  }
  .home .mv-section .mv-ttl .large {
    font-size: clamp(22px, 32px, min(32px, 1.6666666667vw));
    font-weight: bold;
  }
  .home .mv-section .mv-txt {
    margin-top: 16px;
  }
  .home .mv-section .mv-txt-logo {
    left: 0;
    bottom: min(48px, 12.8vw);
    text-align: center;
  }
  .home .mv-section .mv-txt-logo img {
    max-width: 235px;
  }
  .home .link-section .inner-block {
    padding-block: 48px;
  }
  .home .link-section .link-list {
    gap: 16px;
    grid-template-columns: 100%;
  }
  .home .link-section .link-list a {
    padding: 6px 24px;
  }
  .home .link-section .link-list .img {
    display: none;
  }
  .home .link-section .link-list .ttl {
    font-size: clamp(18px, 24px, min(24px, 1.25vw));
    font-weight: bold;
  }
  .home .link-section .link-list .txt {
    display: none;
    font-size: clamp(16px, 16px, min(16px, 0.8333333333vw));
    font-weight: 500;
  }
  .home .l-section .l-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home .l-section .l-left {
    max-width: calc(100% + 20px);
  }
  .home .l-section .l-right {
    max-width: 100%;
  }
  .home .l-section .c-ttl01 {
    margin-bottom: 0;
  }
  .home .concept-section .inner-block {
    padding-block: 48px;
  }
  .home .concept-section .l-left {
    margin-left: calc(50% - 50vw);
  }
  .home .strength-section .l-left {
    margin-right: calc(50% - 50vw);
  }
  .home .strength-section .strength-list li + li {
    margin-top: 17px;
  }
  .home .strength-section .strength-list .num {
    font-size: clamp(18px, 24px, min(24px, 1.25vw));
    font-weight: bold;
    top: -1px;
  }
  .home .strength-section .strength-list .ttl {
    font-size: clamp(18px, 24px, min(24px, 1.25vw));
    font-weight: bold;
  }
  .home .service-section .service-list {
    grid-template-columns: 100%;
    gap: min(40px, 10.6666666667vw);
  }
  .home .service-section .ttl {
    font-size: clamp(20px, 24px, min(24px, 1.25vw));
    font-weight: bold;
    margin-top: 16px;
  }
  .home .service-section .c-txt {
    margin-top: 9px;
  }
  .home .service-section .c-btn01 {
    margin-top: 32px;
  }
  .home .works-section .works-list {
    grid-template-columns: 100%;
    margin-top: 24px;
    gap: 36px;
  }
  .home .works-section .c-txt {
    margin-top: 5px;
  }
  .home .news-section .news-list .tag {
    width: 117px;
    margin-left: 0;
  }
  .home .news-section .news-list .c-arrow {
    height: 31px;
    width: 32px;
  }
  .home .recruit-section .inner-block {
    -webkit-padding-after: 60px;
            padding-block-end: 60px;
  }
  .home .recruit-section .c-ttl01 {
    margin-bottom: 17px;
  }
  .home .recruit-section .img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    max-width: 89.3333333333vw;
    margin: 0 auto 16px;
  }
  .home .recruit-section .c-ttl02 {
    font-size: clamp(22px, 32px, min(32px, 1.6666666667vw));
    font-weight: bold;
    margin-bottom: 25px;
  }
  .home .download-section .ttl {
    padding-left: 40px;
  }
  .home .download-section .ttl::before {
    height: 24px;
    width: 24px;
    top: 0;
  }
  .home .download-section .ttl {
    font-size: clamp(20px, 24px, min(24px, 1.25vw));
    font-weight: bold;
  }
  .home .download-section .c-btn01 {
    padding: 20px;
  }
  .c-kv-simple .mv-txt.tax {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .c-kv-simple .mv-txt.tax .line {
    width: 20px;
  }
  .c-kv-simple .mv-txt.tax .tax_text {
    font-size: 20px;
  }
  .works-content {
    padding: 40px 0;
  }
  .works-content .inner-block {
    padding: 0 20px;
  }
  .works-content .filter-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
    gap: 8px;
    margin-bottom: 40px;
  }
  .works-content .filter-area a {
    font-size: 16px;
  }
  .works-content .filter-area .filter-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .works-content .filter-area .filter-row dt {
    font-size: 16px;
  }
  .works-content .works-list {
    grid-template-columns: 100%;
    gap: 36px;
  }
  .works-content .work .c-txt {
    margin-top: 5px;
  }
  .works_detail-content {
    padding: 40px 0;
  }
  .works_detail-content .inner-block {
    padding: 0 20px;
  }
  .works_detail-content .col-ttl {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .works_detail-content .works_comparison-area {
    margin-bottom: 40px;
  }
  .works_detail-content .works_comparison-area .comparison-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 24px;
    margin-bottom: 24px;
    gap: 24px;
  }
  .works_detail-content .works_comparison-area .comparison-row:last-child {
    gap: 44px;
  }
  .works_detail-content .works_comparison-area .comparison-row .comparison-col {
    width: 100%;
  }
  .works_detail-content .works_comparison-area .comparison-row .comparison-col .img-box .badge {
    font-size: 16px;
    padding: 2px 16px;
    top: -33px;
  }
  .works_detail-content .works_comparison-area .comparison-row .comparison-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: auto;
    height: 40px;
    margin: -20px 0;
  }
  .works_detail-content .customer-voice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 24px 20px;
  }
  .works_detail-content .customer-voice .voice-avatar {
    width: 120px;
    height: 120px;
  }
  .works_detail-content .customer-voice .voice-body {
    width: 100%;
  }
  .works_detail-content .customer-voice .voice-body .voice-text {
    font-size: 16px;
  }
  .waterproofing .about-section .about-list img {
    margin-bottom: 12px;
  }
  .waterproofing .deterioration-section .ttl-wrap {
    margin-bottom: 20px;
  }
  .waterproofing .survey-section .flex-wrap.mb-64 {
    margin-bottom: 40px;
  }
  .waterproofing .quality-section .img-box.mt-40 {
    margin-top: 20px;
  }
  .waterproofing .quality-section .box {
    margin-top: 30px;
  }
  .waterproofing .quality-section .c-list li img {
    width: 24px;
  }
  .waterproofing .quality-section .c-list li .txt-wrap {
    gap: 8px;
  }
  .waterproofing .flow-section .fz-24 {
    line-height: 1.4;
  }
  .waterproofing .flow-section .c-list li img {
    margin-top: 16px;
  }
  .waterproofing .flow-section .c-list + .c-list {
    margin-top: 0;
  }
  .waterproofing .areas-section .areas-list li .txt {
    margin-top: 10px;
  }
  .waterproofing .areas-section .c-contact-box .flex-wrap .c-btn01 {
    padding: 20px;
  }
  .waterproofing .areas-section .c-contact-box .flex-wrap.detail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .recruit .schedule-wrap .schedule-block .schedule-list li::before {
    height: calc(113% + 1rem);
  }
  .recruit .icn-block-white .txt {
    margin-top: 0px;
  }
  .recruit .jobs-section .c-btn03-wrap {
    padding: 0;
    gap: 16px;
    margin-top: 24px;
  }
  .recruit .entry-section .flex-wrap .entry-wrap {
    margin-left: 0px;
    margin-top: 320px;
    padding: 32px 20px 32px 20px;
  }
  .recruit .entry-section .flex-wrap .entry-wrap a {
    padding: 21px 20px;
  }
  .recruit .green {
    font-size: 16px;
  }
  .c-kv-simple .mv-txt .ttl {
    font-size: 24px;
  }
  .contents {
    padding: 60px 20px;
  }
  .contents .text {
    margin-bottom: 30px;
  }
  .contents .text .text-not-found {
    font-size: 16px;
    text-align: start;
  }
  .contact .inner-block {
    padding: 0 20px;
  }
  .contact .c-kv-simple .logomark {
    height: 140%;
  }
  .contact .c-kv-simple .mv-txt .sub-txt {
    margin-top: 24px;
  }
  .contact .c-kv-simple .mv-txt .ttl {
    font-size: 30px;
  }
  .contact .contact-section {
    margin-top: 40px;
  }
  .contact .contact-outer-wrap {
    margin-inline: 0;
  }
  .contact .contact-outer-wrap > .sub-txt {
    text-align: left;
  }
  .contact .c-contact-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
    margin-inline: 0;
  }
  .contact .c-contact-step li {
    width: 100%;
    height: 60px;
    font-size: 16px;
    padding: 0;
  }
  .contact .c-contact-step li::after {
    width: 8px;
    height: 8px;
  }
  .contact .contact-section .q-wrap {
    padding: 16px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .contact .contact-section .label-area {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    width: 100%;
  }
  .contact .contact-section .input-area {
    width: 100%;
  }
  .contact .contact-section .contact-label {
    font-size: 16px;
  }
  .contact .contact-section input[type=text]::-webkit-input-placeholder, .contact .contact-section input[type=tel]::-webkit-input-placeholder, .contact .contact-section input[type=post-code]::-webkit-input-placeholder, .contact .contact-section input[type=address]::-webkit-input-placeholder, .contact .contact-section input[type=email]::-webkit-input-placeholder, .contact .contact-section textarea::-webkit-input-placeholder, .contact .contact-section select::-webkit-input-placeholder {
    font-size: 16px;
  }
  .contact .contact-section input[type=text]::-moz-placeholder, .contact .contact-section input[type=tel]::-moz-placeholder, .contact .contact-section input[type=post-code]::-moz-placeholder, .contact .contact-section input[type=address]::-moz-placeholder, .contact .contact-section input[type=email]::-moz-placeholder, .contact .contact-section textarea::-moz-placeholder, .contact .contact-section select::-moz-placeholder {
    font-size: 16px;
  }
  .contact .contact-section input[type=text]:-ms-input-placeholder, .contact .contact-section input[type=tel]:-ms-input-placeholder, .contact .contact-section input[type=post-code]:-ms-input-placeholder, .contact .contact-section input[type=address]:-ms-input-placeholder, .contact .contact-section input[type=email]:-ms-input-placeholder, .contact .contact-section textarea:-ms-input-placeholder, .contact .contact-section select:-ms-input-placeholder {
    font-size: 16px;
  }
  .contact .contact-section input[type=text]::-ms-input-placeholder, .contact .contact-section input[type=tel]::-ms-input-placeholder, .contact .contact-section input[type=post-code]::-ms-input-placeholder, .contact .contact-section input[type=address]::-ms-input-placeholder, .contact .contact-section input[type=email]::-ms-input-placeholder, .contact .contact-section textarea::-ms-input-placeholder, .contact .contact-section select::-ms-input-placeholder {
    font-size: 16px;
  }
  .contact .contact-section input[type=text]::placeholder,
  .contact .contact-section input[type=tel]::placeholder,
  .contact .contact-section input[type=post-code]::placeholder,
  .contact .contact-section input[type=address]::placeholder,
  .contact .contact-section input[type=email]::placeholder,
  .contact .contact-section textarea::placeholder,
  .contact .contact-section select::placeholder {
    font-size: 16px;
  }
  .contact .contact-section input[type=text],
  .contact .contact-section input[type=tel],
  .contact .contact-section input[type=post-code],
  .contact .contact-section input[type=address],
  .contact .contact-section input[type=email],
  .contact .contact-section textarea,
  .contact .contact-section select {
    padding: 16px 10px;
  }
  .contact .contact-section .radio-group, .contact .contact-section .checkbox-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact-section .radio-group .wpcf7-radio, .contact .contact-section .radio-group .wpcf7-checkbox, .contact .contact-section .checkbox-group .wpcf7-radio, .contact .contact-section .checkbox-group .wpcf7-checkbox {
    gap: 8px;
    font-size: 16px;
    padding-block: 16px;
  }
  .contact .btn-wrap {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .privacy {
    text-align: left;
    font-size: 16px;
  }
  .contact .privacy-check label {
    font-size: 16px;
  }
  .confirm .inner-block {
    padding: 0 20px;
  }
  .confirm .c-kv-simple .logomark {
    height: 140%;
  }
  .confirm .c-kv-simple .mv-txt .sub-txt {
    margin-top: 24px;
  }
  .confirm .c-kv-simple .mv-txt .ttl {
    font-size: 30px;
  }
  .confirm .contact-section {
    margin-block: 40px;
  }
  .confirm .contact-outer-wrap {
    margin-inline: 0;
  }
  .confirm .c-contact-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
  }
  .confirm .c-contact-step li {
    padding: 0;
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
  .confirm .c-contact-step li::after {
    width: 8px;
    height: 8px;
  }
  .confirm .contact-section .q-wrap {
    padding: 20px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .confirm .contact-section .label-area {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
    width: 100%;
  }
  .confirm .contact-section .input-area {
    width: 100%;
    font-size: 16px;
  }
  .confirm .contact-section .contact-label {
    font-size: 16px;
  }
  .confirm .contact-section input[type=text],
  .confirm .contact-section input[type=tel],
  .confirm .contact-section input[type=post-code],
  .confirm .contact-section input[type=address],
  .confirm .contact-section input[type=email],
  .confirm .contact-section textarea,
  .confirm .contact-section select {
    padding: 16px 10px;
  }
  .confirm .contact-section .radio-group, .confirm .contact-section .checkbox-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .confirm .btn-wrap {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .complete .c-kv-simple .logomark {
    height: 220%;
  }
  .complete .c-kv-simple .mv-txt .ttl {
    font-size: 30px;
  }
  .complete .contents {
    padding: 60px 20px;
  }
  .complete .contents .text {
    margin-bottom: 30px;
  }
  .complete .contents .btn {
    margin-top: 20px;
  }
  .building-renovation .restoration-section .content {
    margin-bottom: 20px;
  }
  .building-renovation .restoration-section .chart-img-wrap {
    margin-top: 24px;
  }
  .building-renovation .restoration-section .chart-img-wrap .img-text .img-text02 br {
    display: none;
  }
  .building-renovation .deterioration-section .ttl-wrap {
    margin-bottom: 20px;
  }
  .building-renovation .strengths-section .ttl-wrap {
    margin-bottom: 20px;
  }
  .building-renovation .strengths-section .ttl-wrap .c-ttl01 .en {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .building-renovation .strengths-section .ttl-wrap .c-ttl01 .ttl-main::after {
    display: none;
  }
  .building-renovation .strengths-section .ttl-wrap .c-ttl01 .yellow-green {
    font-size: 24px;
  }
  .building-renovation .strengths-section .ttl-wrap .txt {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .building-renovation .strengths-section .c-strengths-list {
    gap: 32px;
  }
  .building-renovation .strengths-section .c-strengths-list .num-ttl-wrap {
    margin-bottom: 16px;
    gap: 8px;
  }
  .building-renovation .strengths-section .c-strengths-list .num-ttl-wrap .strengths-item-ttl {
    font-size: 18px;
  }
  .building-renovation .strengths-section .c-strengths-list .txt {
    font-size: 16px;
    line-height: 1.6;
  }
  .building-renovation .strengths-section .c-strengths-list .txt br {
    display: none;
  }
  .building-renovation .service-section .txt {
    font-size: 16px;
    margin-top: 10px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .flow-num-ttl {
    margin-bottom: 16px;
    padding-bottom: 0px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .flow-num-ttl .ttl {
    font-size: 20px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box .txt {
    font-size: 16px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label {
    margin-bottom: 16px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label img {
    width: 100%;
    height: 100%;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-list li {
    font-size: 16px;
  }
  .building-renovation .flow-section .c-flow-container .arrow {
    width: 32px;
    height: 32px;
    margin: 4px auto;
  }
  .building-renovation .target-section .target-row.mb-40 {
    margin-bottom: 24px;
  }
  .building-renovation .target-section .target-main-ttl {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }
  .building-renovation .target-section .txt {
    font-size: 16px;
    line-height: 1.6;
  }
  .building-renovation .target-section .txt br {
    display: none;
  }
  .building-renovation .target-section .target-sub-ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .building-renovation .target-section .target-feature-list {
    gap: 20px;
    padding-bottom: 48px;
    margin-bottom: 40px;
  }
  .building-renovation .target-section .target-feature-list li {
    width: 100% !important;
  }
  .building-renovation .target-section .target-feature-list li .ico-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  .building-renovation .target-section .target-feature-list li .ico-wrap img {
    padding: 20px;
  }
  .building-renovation .target-section .target-feature-list li .feature-ttl {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .building-renovation .target-section .target-feature-list li .feature-ttl br {
    display: inline;
  }
  .building-renovation .target-section .target-feature-list li .txt {
    font-size: 16px;
  }
  .building-renovation .waterproofing-section .flex-wrap img {
    margin-bottom: 20px;
  }
  .building-renovation .waterproofing-section .content {
    margin-bottom: 20px;
  }
  .news .news-list-section .news-main-area .news-link .badge {
    width: 110px;
    height: 26px;
    font-size: 14px;
  }
  .news .news-list-section .news-main-area .news-link .title {
    font-size: 16px;
    width: calc(100% - 52px);
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .news .news-list-section .news-sidebar .category-ttl {
    font-size: 20px;
    height: 36px;
    margin-bottom: 16px;
  }
  .news .news-list-section .news-sidebar .category-list li a {
    font-size: 16px;
    display: inline-block;
  }
  .company .message-section .grid-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .company .message-section .grid-wrap .img-wrap {
    margin: auto;
    max-width: 400px;
    margin-bottom: 24px;
  }
  .company .message-section .grid-wrap .img-wrap .company {
    font-size: 16px;
    margin-top: 24px;
  }
  .company .message-section .grid-wrap .img-wrap .desc {
    margin-top: 0;
    gap: 8px;
  }
  .company .message-section .grid-wrap .img-wrap .desc .ttl {
    font-size: 16px;
  }
  .company .message-section .grid-wrap .img-wrap .desc .name {
    font-size: 24px;
  }
  .company .message-section .grid-wrap .content .txt + .txt {
    margin-top: 16px;
  }
  .company .philosophy-section .grid-cont {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .company .philosophy-section .grid-cont .cont {
    padding: 24px 16px;
  }
  .company .philosophy-section .grid-cont .cont p {
    font-size: 16px;
  }
  .company .philosophy-section .grid-cont .cont .mark {
    padding-inline: 3px;
  }
  .company .philosophy-section .grid-cont .cont .mark.en {
    padding-inline: 5px;
  }
  .company .origin-section .flex-wrap.mb-64 {
    margin-bottom: 30px;
  }
  .company .origin-section .flex-wrap .img-wrap {
    margin: auto;
    max-width: 400px;
  }
  .company .origin-section .inn .txt + .txt {
    margin-top: 16px;
  }
  .company .origin-section .chart-img {
    background-color: var(--white);
  }
  .company .origin-section .chart-img img {
    display: block;
    margin: auto;
    max-width: 400px;
    width: 100%;
  }
  .company .character-section .grid-cont {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .company .character-section .txt + .txt {
    margin-top: 16px;
  }
  .company .character-section .img-wrap {
    margin: auto;
    max-width: 600px;
  }
  .company .services-section .l-line-ttl {
    margin-bottom: 24px;
  }
  .company .services-section .grid-cont {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .company .services-section .grid-cont .img {
    margin-bottom: 8px;
  }
  .company .services-section .grid-cont .ttl {
    font-size: 18px;
  }
  .company .services-section .grid-cont .txt {
    margin-top: 8px;
    font-size: 14px;
  }
  .company .profile-section .inner-block {
    gap: 0;
  }
  .company .history-section {
    padding-block: 48px;
  }
  .company .history-section .inner-block {
    gap: 0;
  }
  .company .history-section .inner-block .history-wrap {
    display: block;
    margin-top: 0;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list li {
    padding-block: 0;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list li .time::after {
    width: 12px;
    height: 12px;
    right: 8px;
  }
  .company .history-section .inner-block .history-wrap .img-wrap .img-list p {
    margin-top: 4px;
  }
  .company .partners-section .cont-wrap {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }
  .company .partners-section .cont-wrap .cont, .company .partners-section .cont-wrap .c-btn02 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .company .partners-section .tag-wrap .cont {
    padding: 16px 8px;
    font-size: 16px;
  }
  .company .associations-section .cont-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .company .associations-section .cont-wrap .cont, .company .associations-section .cont-wrap .c-btn02 {
    height: 100%;
  }
  .company .associations-section .cont-wrap .c-btn02 {
    padding: 16px;
  }
  .company .access-section .info-wrap {
    display: block;
    font-size: 14px;
    margin-bottom: 24px;
  }
  .company .access-section .info-wrap .w-ico {
    gap: 4px;
  }
  .company .access-section .info-wrap .w-ico img {
    width: 24px;
    height: 24px;
  }
  .company .access-section .info-wrap .train-wrap {
    display: block;
    margin-top: 8px;
  }
  .company .access-section .map-wrap iframe {
    min-height: 300px;
  }
  .company .access-section .btn {
    margin-top: 16px;
    font-size: 16px;
  }
  .company .access-section .btn::after {
    width: 8px;
    height: 8px;
  }
  .news-detail > .inner-block {
    margin-block: 48px;
  }
  .news-detail .detail-section .ttl-wrap {
    padding-block: 18px;
  }
  .news-detail .detail-section .ttl-wrap .date-block {
    margin-bottom: 8px;
  }
  .news-detail .detail-section .ttl-wrap .date-block .tag {
    font-size: 14px;
  }
  .news-detail .article {
    padding-bottom: 40px;
  }
  .news-detail .article * + .ttl-wrap {
    padding-top: 0;
  }
  .news-detail .article h3 {
    margin-bottom: 16px;
    padding-left: 16px;
    font-size: 18px;
  }
  .news-detail .article * + p,
  .news-detail .article * + ul,
  .news-detail .article * + ol,
  .news-detail .article * + a,
  .news-detail .article .wp-block-columns-is-layout-flex {
    margin-top: 20px;
  }
  .news-detail .article p + p:has(> .link-ex) {
    margin-top: 20px;
  }
  .news-detail .article .wp-block-columns {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-detail .article .wp-block-image {
    margin-top: 20px;
  }
  .news-detail .article .wp-block-buttons {
    margin-top: 20px;
  }
  .news-detail .article .wp-block-button__link {
    min-width: auto;
    padding: 21px 51px;
    width: 100%;
  }
  .news-detail .article .wp-block-button__link:not([target=_blank])::after {
    width: 8px;
    height: 8px;
  }
  .news-detail .c-paging-area {
    gap: 10px;
    margin-top: 0;
  }
  .news-detail .c-paging-area .c-btn01.arrow {
    padding-inline: 0;
    width: 70%;
  }
  .news-detail .c-paging-area .c-btn01.arrow .inn-wrap {
    gap: 8px;
  }
  .news-detail .c-paging-area .prev,
  .news-detail .c-paging-area .next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (768px <= width) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-inline: 40px;
    max-width: 1360px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .cta-section .inner-block {
    padding-block: 60px;
  }
  .strengths-section .strengths-list.c-list li .green {
    font-size: 24px;
  }
  .c-btn01.min-240 {
    min-width: 240px;
    padding: 26px 36px 26px 51px;
  }
  .c-btn01.min-220 {
    min-width: 220px;
    padding: 26px 36px 26px 51px;
  }
  .c-kv .inner-block {
    min-height: 490px;
  }
  .home .mv-section .inner-block {
    height: calc(100vh - 128px);
  }
  .home .mv-section .movie-wrap img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .home .mv-section .mv-txt-wrap {
    top: 12%;
  }
  .home .mv-section .mv-txt-logo {
    width: calc((100svh - 120px) * 0.1044467425);
  }
  .home .link-section {
    margin-top: max(-50px, -2.6041666667vw);
  }
  .home .concept-section .l-flex {
    margin-left: calc(50% - 50vw);
  }
  .home .concept-section .l-left {
    margin-top: 47px;
  }
  .home .strength-section .l-flex {
    margin-right: calc(50% - 50vw);
  }
  .home .works-section .img {
    max-height: 240px;
  }
  .home .news-section .bg-area .l-left {
    min-width: min(400px, 20.8333333333vw);
    padding-top: 32px;
  }
  .home .recruit-section .img {
    position: absolute;
    bottom: min(33px, 1.71875vw);
    right: min(49px, 2.5520833333vw);
  }
  .works-content .work .img {
    max-height: 240px;
  }
  .waterproofing .quality-section .box .l-line-ttl {
    margin-bottom: 40px;
  }
  .waterproofing .quality-section .c-list li .txt-wrap {
    min-height: calc(clamp(18px, 24px, min(24px, 1.25vw)) * 1.8 * 2);
  }
  .waterproofing .flow-section .c-list li .green {
    font-size: 24px;
  }
  .waterproofing .areas-section .c-ttl01 {
    min-width: 318px;
  }
  .contact .contact-section .contact-label {
    max-width: 150px;
  }
  .confirm .contact-section .contact-label {
    max-width: 150px;
  }
  .company .partners-section .cont-wrap .c-btn02 {
    min-height: 84px;
  }
  .company .associations-section .cont-wrap .cont, .company .associations-section .cont-wrap .c-btn02 {
    min-height: 84px;
  }
}
@media screen and (width < 1020px) {
  main {
    padding-top: 60px;
  }
  .c-header .inner-block {
    padding-inline: 10px;
    padding-block: 10px;
  }
  .c-header .l-right {
    background: var(--white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 24px;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 20px 15px;
  }
  .c-header .l-right.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .top-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-header .sns-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-header .btn-wrap {
    grid-template-columns: 100%;
    gap: 8px;
    margin: 24px auto 0;
  }
  .c-header .c-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-header .c-menu li {
    border-top: 1px solid var(--gray);
  }
  .c-header .c-menu li:last-child {
    border-bottom: 1px solid var(--gray);
  }
  .c-header .c-menu a {
    padding: min(10px, 2.6666666667vw);
  }
  .c-header .c-btn01 {
    padding: 18px 15px;
    max-width: 240px;
    min-width: 240px;
  }
  .contact {
    padding-top: 60px;
  }
  .confirm {
    padding-top: 60px;
  }
  .complete {
    padding-top: 60px;
  }
}
@media screen and (1021px <= width) and (width < 1260px) {
  .c-header .top-wrap {
    gap: min(20px, 1.5873015873vw);
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .c-header .c-btn01 {
    padding: 18px 10px;
    max-width: 150px;
    min-width: 150px;
  }
}
@media (any-hover: hover) {
  .c-header .sns-wrap a:hover .c-svg {
    fill: var(--secondary);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu a:hover {
    color: var(--secondary);
  }
  .c-footer .c-menu a:hover {
    color: var(--secondary);
  }
  .c-footer .link:hover {
    color: var(--secondary);
  }
  .c-footer .link:hover .ico {
    background: var(--gray);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #pagetop a:hover {
    background: var(--light-green);
  }
  #pagetop a:hover::before {
    border-top-color: var(--secondary);
    border-right-color: var(--secondary);
  }
  .c-btn01:hover {
    background: var(--secondary);
  }
  .c-btn01.light-green:hover {
    background: var(--primary);
  }
  .c-btn02:hover::before {
    opacity: 1;
  }
  .home .news-section .news-list a:hover {
    opacity: 0.8;
  }
  .contact .c-btn01.back-btn.arrow:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  .contact .c-btn01.back-btn.arrow:hover .inn-wrap::after {
    border-color: var(--white);
  }
  .confirm .c-btn01.back-btn.arrow:hover {
    background-color: var(--secondary);
    color: var(--white);
  }
  .confirm .c-btn01.back-btn.arrow:hover .inn-wrap::after {
    border-color: var(--white);
  }
  .confirm .c-btn01.back-btn:hover {
    border-color: var(--secondary);
  }
  .news .news-list-section .news-main-area .news-link:hover {
    background-color: #F5FFE2;
  }
  .company .access-section .btn:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
  }
  .news-detail .article .wp-block-button__link:hover {
    background: var(--secondary);
  }
}
@media screen and (1021px <= width) {
  .c-header .c-menu li:not(:first-child) {
    border-left: 1px solid var(--gray);
  }
  .c-header .c-menu li:first-child a {
    padding-left: 0;
  }
  .c-btn-menu {
    display: none;
  }
}
@media screen and (width < 1120px) {
  .c-footer .l-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .c-footer .l-left {
    max-width: 100%;
  }
  .c-footer .l-right {
    max-width: 100%;
    margin-left: auto;
    padding-top: 0;
  }
}
@media screen and (width < 1120px) and (width < 768px) {
  .c-footer .l-right {
    margin-left: inherit;
    width: 100%;
  }
}
@media screen and (width < 1000px) {
  .c-num {
    padding-bottom: 4px;
  }
  .c-contact-box {
    padding: 20px 40px;
  }
  .c-deterioration-list .flex-wrap.g-34 {
    padding: 20px;
  }
  .img-section .flex-wrap {
    display: block;
  }
  .img-section .flex-wrap img {
    width: 100%;
  }
  .icn-wrap .icn-block .icn-img {
    width: 80px;
    height: 80px;
  }
  .icn-wrap .icn-block-white .icn-img {
    width: 80px;
    height: 80px;
  }
  .strengths-section .strengths-list.c-list li {
    width: calc((100% - 40px) / 2);
  }
  .c-kv-simple .inner-block .mv-txt {
    display: block;
    gap: 20px;
  }
  .c-kv-simple .inner-block .mv-txt .tag-wrap {
    margin-top: 20px;
  }
  .waterproofing .survey-section .flex-wrap .img-wrap img {
    width: 100%;
  }
  .waterproofing .survey-section .inn {
    width: calc(60% - 20px);
  }
  .waterproofing .survey-section .content:last-child .txt {
    margin-bottom: 24px;
  }
  .waterproofing .quality-section .inner-block > .flex-wrap {
    display: block;
  }
  .waterproofing .quality-section .img-box img {
    width: 100%;
  }
  .waterproofing .flow-section .c-list.before li::before {
    background: url(/img/common/arrow.svg) no-repeat center/contain;
    position: absolute;
    content: "";
    width: 17px;
    height: 30px;
    top: auto;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .waterproofing .flow-section .c-list li:not(:last-child)::before {
    background: url(/img/common/arrow.svg) no-repeat center/contain;
    position: absolute;
    content: "";
    width: 17px;
    height: 30px;
    top: auto;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .waterproofing .areas-section .flex-wrap {
    display: block;
  }
  .waterproofing .areas-section .areas-list {
    margin-top: 20px;
  }
  .waterproofing .areas-section .areas-list li img {
    width: 100%;
    display: block;
  }
  .waterproofing .areas-section .c-contact-box .flex-wrap .c-btn01::before {
    display: none;
  }
  .waterproofing .areas-section .c-contact-box .flex-wrap .c-btn01 {
    margin: auto;
  }
  .waterproofing .areas-section .c-contact-box .flex-wrap.tel {
    text-align: center;
    margin-top: 20px;
  }
  .waterproofing .areas-section .c-contact-box .flex-wrap.detail .txt:first-child::after {
    display: none;
  }
  .waterproofing .restoration-section .flex-wrap .inn:nth-child(2) {
    width: 40%;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers {
    width: calc(50% - 8px);
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers {
    padding: 14px;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers img {
    width: 50px;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block {
    margin-top: 8px;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block .ttl {
    font-size: 18px;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block .num {
    font-size: 32px;
  }
  .recruit .numbers-section .numbers-wrap .numbers-block .box-list .numbers .txt-block .unit {
    font-size: 16px;
  }
  .recruit .schedule-wrap {
    display: block;
  }
  .recruit .schedule-wrap .schedule-block .schedule-list li {
    display: block;
  }
  .recruit .schedule-wrap .schedule-block .schedule-list li .txt-wrap {
    padding-left: 30px;
    display: block;
  }
  .recruit .jobs-section .recruit-tab {
    width: 100%;
    gap: 8px;
  }
  .recruit .jobs-section .requirements {
    grid-template-columns: 1fr;
  }
  .recruit .jobs-section .requirements > dt,
  .recruit .jobs-section .requirements > dd {
    padding: 8px;
  }
  .contact .c-contact-step {
    display: block;
  }
  .contact .c-contact-step li {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--gray);
  }
  .contact .c-contact-step li:first-child {
    border-top: 1px solid var(--gray);
  }
  .confirm .c-contact-step {
    display: block;
  }
  .confirm .c-contact-step li {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--gray);
  }
  .confirm .c-contact-step li:first-child {
    border-top: 1px solid var(--gray);
  }
  .building-renovation .restoration-section .flex-wrap {
    display: block;
  }
  .building-renovation .restoration-section .flex-wrap .img-wrap {
    width: 100%;
    margin-inline: auto;
    margin-top: 24px;
  }
  .building-renovation .restoration-section .inn {
    margin-bottom: 20px;
  }
  .building-renovation .restoration-section .content:last-child .txt {
    margin-bottom: 20px;
  }
  .building-renovation .strengths-section .c-strengths-list .flex-wrap {
    display: block;
  }
  .building-renovation .strengths-section .c-strengths-list .flex-wrap .inn {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .building-renovation .strengths-section .c-strengths-list .flex-wrap .img-wrap {
    width: 100%;
    height: auto;
    margin-inline: auto;
    margin-top: 16px;
  }
  .building-renovation .service-section .flex-wrap {
    display: block;
  }
  .building-renovation .service-section .service-list {
    margin-top: 24px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-attention-badge {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    font-size: 16px;
    margin-bottom: 0;
    border-radius: 0;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item {
    display: block;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-main-box {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    border-bottom: 1px solid #8DC221;
    border-right: none;
    margin-bottom: 0;
    padding: 20px;
    border-radius: 4px 4px 0 0;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box {
    display: block;
    padding: 20px;
    border-radius: 0 0 4px 4px;
  }
  .building-renovation .flow-section .c-flow-container .c-flow-item.no-kodawari .flow-main-box {
    display: block;
    width: 100%;
    padding-right: 20px;
    margin-bottom: 24px;
    border-bottom: none;
    border-right: none;
    margin-bottom: 0;
  }
  .building-renovation .target-section .target-row {
    display: block;
  }
  .building-renovation .target-section .target-row .target-inn:nth-child(1) {
    width: 100%;
    margin-bottom: 24px;
  }
  .building-renovation .target-section .target-row .target-inn:nth-child(2) {
    width: 100%;
    margin-inline: auto;
  }
  .building-renovation .target-section .target-feature-list li {
    width: calc((100% - 64px) / 2);
  }
  .building-renovation .target-section .c-contact-box .flex-wrap .c-btn01::before {
    display: none;
  }
  .building-renovation .target-section .c-contact-box .flex-wrap .c-btn01 {
    margin: auto;
    padding: 20px 20px;
  }
  .building-renovation .target-section .c-contact-box .flex-wrap.tel {
    text-align: center;
    margin-top: 20px;
    font-size: 26px;
  }
  .building-renovation .target-section .c-contact-box .flex-wrap.detail .txt:first-child::after {
    display: none;
  }
  .building-renovation .waterproofing-section .flex-wrap {
    display: block;
  }
  .building-renovation .waterproofing-section .flex-wrap .img-wrap {
    width: 100%;
    margin-inline: auto;
    margin-top: 24px;
  }
  .building-renovation .waterproofing-section .flex-wrap img {
    width: 100%;
  }
  .building-renovation .waterproofing-section .inn {
    margin-bottom: 0;
  }
  .building-renovation .waterproofing-section .content:last-child .txt {
    margin-bottom: 20px;
  }
  .company .origin-section .flex-wrap {
    display: block;
  }
  .company .origin-section .inn {
    margin-bottom: 20px;
  }
  .company .profile-section .inner-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .company .history-section .inner-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list li .txt-wrap {
    padding-left: 30px;
    display: block;
    gap: 16px;
  }
}
@media screen and (width < 1000px) and (width < 768px) {
  .c-contact-box {
    padding: 20px;
  }
  .strengths-section .strengths-list.c-list li {
    width: 100%;
  }
  .waterproofing .areas-section .flex-wrap {
    margin-bottom: 30px;
  }
  .waterproofing .areas-section .areas-list {
    margin-top: 20px;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list li .txt-wrap {
    padding-left: 0;
  }
}
@media screen and (768px <= width) and (width < 1360px) {
  .cta-section .box-area {
    padding: 40px 60px;
  }
}
@media screen and (width < 980px) {
  .cta-section .box-area {
    grid-template-columns: 100%;
    padding: 40px 20px;
  }
}
@media screen and (width < 1360px) {
  .cta-section .contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-section .contact-wrap .tel {
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (width < 1360px) and (width < 980px) {
  .cta-section .contact-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (1361px <= width) {
  .cta-section .contact-wrap .wrap:nth-child(1) {
    max-width: 320px;
  }
  .cta-section .contact-wrap .wrap:nth-child(2) {
    max-width: calc(100% - 344px);
  }
}
@media screen and (768px <= width) and (width < 980px) {
  .cta-section .contact-wrap .wrap {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (width < 1000px) and (width < 820px) {
  .c-deterioration-list .flex-wrap.g-34 {
    display: block;
  }
}
@media screen and (width < 820px) {
  .c-deterioration-list .flex-wrap.g-34 > img {
    max-width: 100%;
    width: 100%;
  }
  .c-deterioration-list .txt-wrap .txt-box-wrap {
    margin-top: 20px;
  }
}
@media screen and (768px <= width) and (width < 1200px) {
  .home .link-section {
    margin-top: max(-100px, -5.2083333333vw);
  }
  .company .philosophy-section .grid-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (768px <= width) and (width < 1200px) and (width < 1000px) {
  .home .link-section {
    margin-top: max(-130px, -6.7708333333vw);
  }
}
@media screen and (768px <= width) and (width < 1200px) and (width < 1000px) and (width < 900px) {
  .home .link-section {
    margin-top: max(-200px, -10.4166666667vw);
  }
}
@media screen and (768px <= width) and (width < 900px) {
  .home .link-section .link-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (768px <= width) and (width < 1050px) {
  .home .link-section .link-list a {
    padding: 15px 15px 20px;
  }
}
@media screen and (width < 1100px) {
  .home .news-section .bg-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
  }
  .home .news-section .bg-area .l-left {
    width: 100%;
  }
  .home .news-section .news-list {
    width: 100%;
  }
  .waterproofing .flow-section .c-list {
    gap: 40px;
  }
  .waterproofing .flow-section .c-list li {
    width: calc((100% - 120px) / 4);
  }
  .waterproofing .areas-section .areas-list li {
    width: calc((100% - 16px) / 2);
  }
  .building-renovation .service-section .service-list li {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (width < 1100px) and (width < 768px) {
  .home .news-section .bg-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 40px 20px;
    gap: 0;
  }
  .waterproofing .areas-section .areas-list li {
    width: 100%;
  }
}
@media screen and (768px <= width) and (width < 1100px) {
  .home .news-section .bg-area .l-left {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home .news-section .c-ttl01 {
    margin-bottom: 0;
  }
  .home .news-section .c-btn01 {
    margin-top: 0;
  }
  .home .recruit-section .img {
    max-width: min(550px, 50vw);
  }
}
@media screen and (width < 930px) {
  .home .news-section .news-list a {
    grid-template-columns: 1fr;
    padding: 16px 0;
    gap: 7px;
  }
  .home .news-section .news-list .wrap {
    grid-template-columns: auto 1fr;
    gap: 27px;
  }
  .home .news-section .news-list .wrap:last-child {
    gap: 10px;
  }
}
@media screen and (768px <= width) and (width < 1100px) and (width < 1000px) {
  .home .recruit-section .img {
    bottom: inherit;
    top: 20px;
  }
}
@media screen and (width < 950px) {
  .home .download-section .bg-box {
    grid-template-columns: 100%;
    padding: 40px 20px;
    gap: 24px;
  }
}
@media screen and (768px <= width) and (width < 950px) {
  .home .download-section .c-btn01 + .c-btn01 {
    margin-top: 0;
  }
  .home .download-section .btn-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .download-section .btn-wrap.btn-single {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1200px) {
  .works_detail-content .works_overview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .works_detail-content .works_overview .overview-img-wrap {
    max-width: 100%;
    width: 100%;
  }
  .works_detail-content .works_overview .overview-img-wrap .main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/2;
    margin-bottom: 12px;
  }
  .works_detail-content .works_overview .overview-img-wrap .thumb-list {
    gap: 12px;
  }
  .works_detail-content .works_overview .overview-info {
    width: 100%;
    margin-top: 0;
  }
  .works_detail-content .works_overview .overview-info .overview-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works_detail-content .works_overview .overview-info .overview-table th, .works_detail-content .works_overview .overview-info .overview-table td {
    font-size: 16px;
    padding: 12px;
  }
  .works_detail-content .works_overview .overview-info .overview-table th {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (width < 768px) {
  .works_detail-content .works_overview .overview-img-wrap .main-img {
    aspect-ratio: 4/3;
  }
}
@media screen and (width < 1200px) {
  .works_detail-content .works_overview .overview-img-wrap .thumb-list li {
    max-width: calc((100% - 36px) / 4);
  }
  .waterproofing .about-section .about-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .waterproofing .about-section .about-list li {
    width: calc((100% - 30px) / 2);
  }
  .waterproofing .quality-section .inn {
    max-width: 55%;
  }
  .waterproofing .quality-section .c-list {
    gap: 30px;
  }
  .waterproofing .quality-section .c-list li {
    width: calc((100% - 60px) / 3);
  }
  .contact .c-kv-simple .mv-txt {
    gap: 80px;
  }
  .contact .c-kv-simple .mv-txt .ttl::after {
    right: -40px;
  }
  .confirm .c-kv-simple .mv-txt {
    gap: 80px;
  }
  .confirm .c-kv-simple .mv-txt .ttl::after {
    right: -40px;
  }
  .company .history-section .inner-block .history-wrap {
    display: block;
    gap: 10px;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list li::before {
    height: calc(100% + 16px);
  }
  .company .history-section .inner-block .history-wrap .img-wrap .img-list {
    margin-top: 24px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .company .history-section .inner-block .history-wrap .img-wrap li + li {
    margin-top: 0;
  }
}
@media screen and (width < 1200px) and (width < 768px) {
  .works_detail-content .works_overview .overview-img-wrap .thumb-list li {
    aspect-ratio: 4/3;
  }
  .waterproofing .about-section .about-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .waterproofing .about-section .about-list li {
    width: 100%;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list {
    gap: 16px;
  }
  .company .history-section .inner-block .history-wrap .history-block .history-list li::before {
    height: calc(92% + 1rem);
    left: 91px;
    top: 17px;
  }
  .company .history-section .inner-block .history-wrap .img-wrap .img-list {
    margin-top: 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media screen and (401px <= width) {
  .waterproofing .deterioration-section .c-list-ttl .max-400 {
    display: none;
  }
}
@media screen and (width < 870px) {
  .waterproofing .survey-section .flex-wrap {
    display: block;
  }
  .waterproofing .survey-section .flex-wrap .img-wrap {
    width: 100%;
  }
  .waterproofing .survey-section .content img {
    margin: auto;
  }
}
@media screen and (width < 1000px) and (width < 870px) {
  .waterproofing .survey-section .inn {
    width: 100%;
  }
}
@media screen and (width < 1330px) {
  .waterproofing .survey-section .c-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .waterproofing .survey-section .c-list li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (width < 1330px) and (width < 768px) {
  .waterproofing .survey-section .c-list li {
    width: 100%;
  }
}
@media screen and (width < 1200px) and (width < 1000px) {
  .waterproofing .quality-section .inn {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .waterproofing .quality-section .c-list {
    display: block;
  }
  .waterproofing .quality-section .c-list li {
    width: 100%;
    padding-bottom: 20px;
  }
}
@media screen and (width < 1100px) and (width < 1000px) {
  .waterproofing .flow-section .c-list {
    display: block;
  }
  .waterproofing .flow-section .c-list li {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (width < 1100px) and (width < 1000px) and (width < 768px) {
  .waterproofing .flow-section .c-list li {
    margin-top: 24px;
  }
}
@media screen and (1001px <= width) {
  .waterproofing .flow-section .c-list li:not(:last-child)::before {
    background: url(/img/common/arrow.svg) no-repeat center/contain;
    position: absolute;
    content: "";
    width: 17px;
    height: 30px;
    top: 0;
    bottom: 0;
    right: -45px;
    margin: auto;
  }
}
@media screen and (1001px <= width) and (width < 1100px) {
  .waterproofing .flow-section .c-list li:not(:last-child)::before {
    width: 10px;
    height: 20px;
    right: -25px;
  }
}
@media screen and (width < 500px) {
  .waterproofing .areas-section .c-contact-box .c-ttl01 .en {
    text-align: center;
    line-height: 1.3;
  }
  .waterproofing .areas-section .c-contact-box .c-ttl01 .max-500 {
    display: block;
  }
  .building-renovation .target-section .c-contact-box .c-ttl01 .en {
    text-align: center;
    line-height: 1.3;
  }
  .building-renovation .target-section .c-contact-box .c-ttl01 .max-500 {
    display: block;
  }
}
@media screen and (width < 860px) {
  .waterproofing .areas-section .c-contact-box .flex-wrap.contact {
    display: block;
  }
  .building-renovation .target-section .c-contact-box .flex-wrap.contact {
    display: block;
  }
}
@media screen and (width < 640px) {
  .waterproofing .restoration-section .flex-wrap {
    display: block;
  }
  .waterproofing .restoration-section .flex-wrap .inn.img-pc {
    display: none;
  }
  .waterproofing .restoration-section .flex-wrap .txt {
    margin-bottom: 24px;
  }
}
@media screen and (width < 1000px) and (width < 640px) {
  .waterproofing .restoration-section .flex-wrap .inn:nth-child(2) {
    width: 100%;
  }
}
@media screen and (641px <= width) {
  .waterproofing .restoration-section .flex-wrap .inn.img-sp {
    display: none;
  }
}
@media screen and (width < 1200px) and (width < 900px) {
  .contact .c-kv-simple .mv-txt {
    display: block;
    gap: 0;
  }
  .confirm .c-kv-simple .mv-txt {
    display: block;
    gap: 0;
  }
}
@media screen and (width < 900px) {
  .contact .c-kv-simple .mv-txt .ttl::after {
    display: none;
  }
  .confirm .c-kv-simple .mv-txt .ttl::after {
    display: none;
  }
}
@media screen and (width < 1300px) {
  .contact .c-contact-step li::after {
    right: 25px;
  }
  .confirm .c-contact-step li::after {
    right: 25px;
  }
}
@media screen and (width < 1300px) and (width < 1000px) {
  .contact .c-contact-step li::after {
    display: none;
  }
  .confirm .c-contact-step li::after {
    display: none;
  }
}
@media screen and (431px <= width) {
  .complete .contents .max-430 {
    display: none;
  }
}
@media screen and (671px <= width) {
  .complete .contents .max-670 {
    display: none;
  }
}
@media screen and (width < 460px) {
  .complete .contents .max-670 {
    display: none;
  }
}
@media (max-width: 767px) {
  .building-renovation .service-section .service-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .building-renovation .service-section .service-list li {
    width: 100%;
  }
  .building-renovation .service-section .service-list li .txt {
    font-size: 16px;
    margin-top: 10px;
  }
  .building-renovation .flow-section .c-flow-container {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label::after {
    padding-left: 78px;
    font-size: 16px;
    padding-right: 15px;
  }
}
@media (max-width: 400px) {
  .building-renovation .flow-section .c-flow-container .c-flow-item .flow-kodawari-box .kodawari-label::after {
    padding-left: 58px;
  }
}
@media (max-width: 1050px) {
  .news .news-list-section {
    padding: 40px 0;
  }
  .news .news-list-section .inner-block {
    padding: 0 20px;
  }
  .news .news-list-section .news-content-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .news .news-list-section .news-main-area {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .news .news-list-section .news-main-area .news-link {
    height: auto;
    padding: 20px 52px 20px 0;
    gap: 12px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .news .news-list-section .news-main-area .news-link .arrow-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 0;
  }
  .news .news-list-section .news-sidebar {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
    margin-bottom: 32px;
  }
  .news .news-list-section .news-sidebar .category-ttl::before {
    height: 30px;
  }
  .news .news-list-section .news-sidebar .category-list {
    padding: 16px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 12px 16px;
  }
  .news .news-list-section .news-sidebar .category-list li {
    margin-bottom: 0;
  }
}
@media screen and (768px <= width) and (width < 1000px) {
  .company .origin-section .flex-wrap .img-wrap {
    width: 80%;
    margin-inline: auto;
    margin-top: 24px;
  }
}
@media screen and (768px <= width) and (width < 1400px) {
  .company .services-section .grid-cont {
    gap: 24px;
  }
}
@media screen and (width < 1500px) {
  .company .history-section .inner-block .history-wrap .img-wrap {
    right: 0;
  }
}
@media screen and (width < 768px) and (width < 400px) {
  .company .partners-section .cont-wrap {
    grid-template-columns: 1fr;
  }
  .company .associations-section .cont-wrap {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */