@charset "UTF-8";
:root {
  /* fonts */
  --font-main: "Zen Kaku Gothic New", sans-serif;
  --font-sub: "Josefin Sans", sans-serif;
  /* colors */
  --color-main-100: #c75d2c;
  --color-main-200: #000;
  --color-main-300: #000;
  --color-main-400: #000;
  --color-main-500: #000;
  --color-accent-100: #000;
  --color-accent-200: #000;
  --color-txt-100: #5d3d2d;
  --color-txt-100-rgb: 93 61 45;
  --color-txt-200: #d9d9d9;
  --color-txt-300: #f2f2f2;
  --color-txt-400: #000;
  --color-border-100: #000;
  --color-border-200: #000;
  --color-line-100: #06c755;
  --color-base-100: #eeeae8;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-white-rgb: 255 255 255;
  --color-black: #000000;
  --color-black-rgb: 0 0 0;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media (min-width: 768px) {
  :root {
    --cmn-pd-md: 80px;
    --cmn-rad-md: 25px;
    --cmn-rad-lg: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --cmn-pd-sm: 30px;
    --cmn-pd-md: 60px;
    --cmn-rad-md: 25px;
    --cmn-rad-lg: 30px;
    --cmn-rad-xl: 30px;
    --ttl-mb-md: 36px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
/*==========================================
PC
===========================================*/
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-main-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.06em;
  width: 200px;
  padding: 15px 10px;
  color: var(--color-white);
  background: var(--color-main-100);
  border-radius: 100px;
}
.btn-main-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/22;
  width: 20px;
  right: 10px;
  top: calc(50% + 0px);
  translate: 0 -50%;
  background: url(/img/common/arw01.png) no-repeat;
  background-size: contain;
}
.btn-main-100 .btn-cont {
  display: inline-block;
  translate: -10px;
}

.btn-white-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.08em;
  width: 90%;
  max-width: 280px;
  padding: 15px 10px;
  color: var(--color-txt-100);
  background: var(--color-white);
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
          box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
  border-radius: 1000px;
}
.btn-white-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/22;
  width: 20px;
  right: 12px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw02.png) no-repeat;
  background-size: contain;
}
.btn-white-100 .btn-cont {
  display: inline-block;
  translate: -6px;
}

.btn-white-200, .btn-white-400, .btn-white-300 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
  width: 200px;
  padding: 15px 10px;
  color: var(--color-txt-100);
  background: var(--color-white);
  border-radius: 100px;
}
.btn-white-200::before, .btn-white-400::before, .btn-white-300::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/22;
  width: 18px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw02.png) no-repeat;
  background-size: contain;
}

.btn-white-300 {
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}

.btn-white-400 {
  font-size: 13px;
  width: 100%;
}

.btn-line-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
  width: 240px;
  padding: 20px 10px;
  color: var(--color-txt-100);
  background: var(--color-white);
  border-radius: 35px;
  border: solid 1px var(--color-txt-200);
}
.btn-line-100 .btn-cont {
  --icon-width: 37;
  --icon-height: 37;
  --icon-gap: 16;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: calc(var(--icon-width) * 1px + var(--icon-gap) * 1px);
  padding-left: 45px;
}
.btn-line-100 .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  width: 30px;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/line-icon.png) no-repeat;
  background-size: contain;
}

.ttl, .top-news-ttl .ttl-main, .top-service-ttl .ttl-main, .top-works-ttl .ttl-main, .cmn-contact-ttl .ttl-main, .top-company-ttl .ttl-main, .strength-ttl .ttl-main, .intro-ttl .ttl-main, .maintenance-lead-ttl .ttl-main, .sub-works-ttl .ttl-main, .message-ttl .ttl-main, .com-info-ttl .ttl-main, .form-ttl .ttl-main,
.complete-ttl .ttl-main,
.notfound-ttl .ttl-main,
.privacy-ttl .ttl-main,
.site-map-ttl .ttl-main,
.news-ttl .ttl-main, .ttl-temp {
  font-family: var(--font-main);
  color: var(--color-main-100);
  font-size: 18px;
  line-height: 1.9166666667;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
}

.ttl02, .top-commitment-ttl {
  font-family: var(--font-main);
  color: var(--color-txt-100);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
}

.ttl-english01, .top-news-ttl .ttl-sub {
  font-family: var(--font-sub);
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
  color: var(--color-main-100);
}

.ttl-english02, .top-about .ttl-sub {
  font-family: var(--font-sub);
  font-size: 60px;
  line-height: 1;
  font-weight: var(--font-bold);
  color: var(--color-txt-300);
}

.ttl-english03, .top-service-ttl .ttl-sub, .top-works-ttl .ttl-sub, .cmn-contact-ttl .ttl-sub, .top-company-ttl .ttl-sub, .strength-ttl .ttl-sub, .intro-ttl .ttl-sub, .maintenance-lead-ttl .ttl-sub, .sub-works-ttl .ttl-sub, .message-ttl .ttl-sub, .com-info-ttl .ttl-sub, .form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub {
  font-family: var(--font-sub);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
  color: var(--color-main-100);
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-black);
  color: var(--color-main-100);
}

.ttl-temp {
  line-height: 1.5789473684;
}

.sub-ttl {
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 3.0909090909;
  letter-spacing: 0.22em;
  font-weight: var(--font-bold);
  color: var(--color-main-200);
}

.txt, .top-commitment-txt, .strength-txt, .maint-body-check, .inspection-check, .drive-check, .engine-check, .interior-check {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 2;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt02, .top-about-txt, .cmn-contact-txt, .top-company-header, .top-company-data, .strength-lead, .intro-txt, .maintenance-lead-txt, .maint-body-txt, .inspection-txt, .drive-txt, .engine-txt, .interior-txt, .sub-works-header .time, .sub-works-txt, .message-txt, .com-info-header, .com-info-data, #contact .form-txt, #contact .form-box .opening,
#contact .form-box .holiday {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 2.1176470588;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-news-date, .top-news-item .date, .top-works-item .time, .detail .date {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: var(--font-normal);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}

.txt-news-tag, .top-news-item .tag, .top-works-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: var(--font-normal);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}

.txt-news-ttl, .top-news-item-ttl, .news .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: var(--font-normal);
  line-height: 1.7647058824;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}

.txt-hd-nav {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1;
  color: var(--color-txt-100);
  font-weight: var(--font-bold);
}

.txt-hd-nav-sub {
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
  font-weight: var(--font-normal);
}

.txt-ft-nav, .footer .nav-list, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1;
  color: var(--color-white);
  font-weight: var(--font-bold);
}

.txt-ft-nav-sm {
  font-size: 14px;
  line-height: 1;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-lg {
  font-family: var(--font-sub);
  font-size: 24px;
  font-weight: var(--font-bold);
  position: relative;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}
.tel-num {
  --icon-width: 38;
  --icon-height: 38;
  display: block;
  line-height: 1;
  padding-left: calc(11px + var(--icon-width) * 1px);
  padding-left: 36px;
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  width: 26px;
  left: 0;
  top: calc(50% - 2px);
  translate: 0 -50%;
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.tel-lg {
  font-size: 40px;
}
.tel-lg .tel-num {
  --icon-width: 28;
  --icon-height: 28;
  display: block;
  line-height: 1;
  padding-left: 10px;
  padding-left: calc(15px + var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-lg .tel-num::before {
  background: url(/img/common/tel-icon-lg.png) no-repeat;
  background-size: contain;
}

/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.site-map-list {
  font-size: 16px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 15px 0 15px 30px;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.privacy .ttl02, .privacy .top-commitment-ttl {
  font-size: 20px;
  font-family: var(--font-main);
  padding-bottom: 7px;
  margin-bottom: 12px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 50px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-400);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-400);
  --color-contact-th-txt: #fff;
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
    padding: 1em;
  }
  #contact .contact-submits-wrap button[name=back] {
    color: #444;
    background: #fff;
    border: 1px solid #444;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.complete-box {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  --color-pagenation-def-txt: var(--color-txt-100);
  --color-pagenation-border: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  gap: 20px;
  font-size: 13px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-pagenation-def-txt);
  line-height: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8.5px 0;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-pagenation-border);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  --tag-change-border-radius: 3px;
  --tag-change-margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--tag-change-margin-bottom);
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 14px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: var(--tag-change-border-radius);
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 9px 16px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 60px;
  --color-page-btn-pt: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--color-page-btn-mt);
  padding-top: var(--color-page-btn-pt);
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-column: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.page-btn .left a {
  position: relative;
  z-index: 1;
  padding-left: 22px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  grid-column: 3/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.page-btn .right a {
  position: relative;
  z-index: 1;
  padding-right: 22px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  grid-column: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news {
  --news-img-width: 25%;
  --news-img-max-width: 160px;
  --news-margin-right: 15px;
}
.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  width: var(--news-img-width);
  max-width: var(--news-img-max-width);
  margin-right: var(--news-margin-right);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news .news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail {
  --color-news-detail: var(--color-txt-100);
  --fontsize-news-detail: 20px;
  --font-weight-news-detail: var(--font-medium);
  --news-detail-margin-bottom: 12px;
}
.detail-ttl {
  font-size: var(--fontsize-news-detail);
  font-weight: var(--font-weight-news-detail);
  color: var(--color-news-detail);
  margin-bottom: var(--news-detail-margin-bottom);
  line-height: 1.5;
}

/*common ---------------------------------------------*/
.cmn-txt-mb {
  margin-bottom: 1em;
}

.color-main-100 {
  color: var(--color-main-100);
}

/*header ---------------------------------------------*/
.header {
  width: 100%;
  height: 75px;
  overflow-x: clip;
  position: relative;
  z-index: 1;
  padding: 10px;
  background: var(--color-white);
}
.header-wrap {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .logo {
  width: 55px;
}

/*mv ---------------------------------------------*/
.mv {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.mv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.mv-wrap::before {
  content: "";
  width: 100%;
  height: 50%;
  background: url(/img/top/mv-img01.png) no-repeat;
  background-size: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mv-catch {
  width: 70%;
  max-width: 260px;
}

/*side-btn ---------------------------------------------*/
.side-btn {
  z-index: 99;
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 100%;
}
.side-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.side-btn .btn-side-line {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-white);
  padding: 20px 20px;
  border-radius: 0 var(--cmn-rad-md) 0 0;
}
.side-btn .to-top {
  width: 44px;
  margin-right: 30px;
  border-radius: 50%;
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
          box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
}

/*news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/top-news-bg.png) no-repeat center center/cover;
}
.top-news-wrap {
  background: var(--color-white);
  padding: 40px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.top-news-list {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}
.top-news-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  padding: 21px 0 17px;
  position: relative;
  z-index: 1;
}
.top-news-item:first-child .top-news-item-body {
  padding-top: 0;
}
.top-news-item:last-child .top-news-item-body {
  padding-bottom: 0;
}
.top-news-item:not(:last-child) {
  border-bottom: 1px solid var(--color-txt-200);
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .meta {
  margin-bottom: 10px;
}
.top-news-item .date {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--color-txt-100);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.top-news-item .tag {
  display: inline-block;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-about-wrap {
  width: 100%;
}
.top-about .ttl-sub {
  display: inline-block;
  position: absolute;
  z-index: -1;
  left: 8px;
  top: 320px;
  white-space: nowrap;
}
.top-about-body {
  width: 100%;
}
.top-about-ttl {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4193548387;
  letter-spacing: 4.96px;
  color: var(--color-main-100);
  margin-bottom: 20px;
}
.top-about-ttl .dark01 {
  color: #c75d2c;
}
.top-about-ttl .dark02 {
  color: #d96f32;
}
.top-about-txt {
  color: var(--color-txt-100);
  margin-bottom: 30px;
}
.top-about-txt .txt-mb {
  margin-bottom: 1em;
}
.top-about-txt .lg {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-main-100);
}
.top-about-img {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-about-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about-img.img01 {
  width: 100%;
  translate: 20px;
  height: 310px;
  border-radius: 999px 0 0 999px;
  padding-bottom: 50px;
  margin-bottom: 0px;
}
.top-about-img.img01::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 380/300;
  height: 100px;
  right: 0;
  bottom: 0;
  background: url(/img/top/top-about-deco-r.png) no-repeat;
  background-size: contain;
}
.top-about-img.img01 img {
  border-radius: 999px 0 0 999px;
}
.top-about-img.img02 {
  width: 100%;
  height: 130px;
  margin-right: auto;
  translate: -20px;
  border-radius: 0 999px 999px 0;
  padding-top: 50px;
}
.top-about-img.img02::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 380/300;
  height: 100px;
  left: 0;
  top: 0;
  background: url(/img/top/top-about-deco-l.png) no-repeat;
  background-size: contain;
}
.top-about-img.img02 img {
  border-radius: 0 999px 999px 0;
}

/*top-commitment ---------------------------------------------*/
.top-commitment {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: 0;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.top-commitment::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 150/75;
  width: 120px;
  top: 0;
  left: 50%;
  translate: -50%;
  background: url(/img/top/top-commitment-bg-deco.png) no-repeat;
  background-size: contain;
}
.top-commitment-wrap {
  width: 100%;
  padding-top: 30px;
  padding-bottom: var(--cmn-pd-md);
  background: var(--color-base-100);
}
.top-commitment-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.top-commitment-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.top-commitment-item {
  width: 100%;
  padding: 75px 15px 27px;
  background: var(--color-white);
  border-radius: 50px;
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #e3d9d4;
          box-shadow: 3.5px 3.5px 25px 0 #e3d9d4;
  position: relative;
  z-index: 1;
}
.top-commitment-item:nth-of-type(1) .top-commitment-img {
  top: 24px;
}
.top-commitment-txtarea {
  width: 100%;
}
.top-commitment-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  text-align: center;
  margin-bottom: 23px;
}
.top-commitment-subttl .sm {
  font-size: 0.8em;
  letter-spacing: 1.6px;
}
.top-commitment-img {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 50%;
  translate: -50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-commitment-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-service ---------------------------------------------*/
.top-service {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-service-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: var(--ttl-mb-md);
}
.top-service-ttl .ttl-main {
  color: var(--color-txt-100);
}

.cmn-links-list {
  width: 100%;
  gap: 30px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cmn-links-list.add-padding {
  padding-top: 30px;
  padding-bottom: var(--cmn-pd-md);
}
.cmn-links-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.cmn-links-box {
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
  z-index: 1;
}
.cmn-links-box .btn-white-100 {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}
.cmn-links-img {
  position: relative;
  z-index: 1;
  aspect-ratio: 500/320;
  width: 100%;
  border-radius: var(--cmn-rad-md);
  overflow: hidden;
  left: 0;
  top: 0;
}
.cmn-links-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-works ---------------------------------------------*/
.top-works {
  padding: var(--cmn-pd-md) 0;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-works::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(/img/top/top-works-bg.png) repeat;
  border-radius: 50px;
}
.top-works-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-works-heading {
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: var(--ttl-mb-md);
}
.top-works-heading .btn-white-200 {
  margin-top: 21px;
}
.top-works-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.top-works-ttl .ttl-sub {
  color: var(--color-white);
}
.top-works-ttl .ttl-main {
  color: var(--color-white);
}
.top-works-list {
  width: 100%;
  gap: 30px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 50px;
}
.top-works-item {
  width: 100%;
}
.top-works-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-works-item-img {
  aspect-ratio: 350/270;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.top-works-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-works-item .top-works-details {
  width: 100%;
}
.top-works-item .time {
  color: var(--color-white);
  margin-bottom: 0.5em;
}
.top-works-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-works-item .tag {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}
.top-works-item .tag:not(:last-child) {
  padding-right: 7px;
}
.top-works-item .tag:not(:last-child)::before {
  content: "/";
  position: absolute;
  font-size: 1em;
  z-index: -1;
  right: 0;
  top: 50%;
  translate: 50% -50%;
  color: var(--color-white);
}
.top-works-item .tag:not(:first-child) {
  padding-left: 7px;
}

/*cmn-contact ---------------------------------------------*/
.cmn-contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px 20px;
}
.cmn-contact-wrap {
  width: 100%;
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
          box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
  padding-top: 55px;
  padding-bottom: 45px;
  border-radius: var(--cmn-rad-xl);
}
.cmn-contact-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.cmn-contact-body {
  width: 100%;
}
.cmn-contact-txt {
  text-align: center;
  margin-bottom: 31px;
}
.cmn-contact .btn-area {
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*top-company ---------------------------------------------*/
.top-company {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}
.top-company-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.top-company .cont-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-company .table-wrapper {
  width: 100%;
  margin-bottom: 30px;
}
.top-company-table {
  width: 100%;
}
.top-company-row {
  width: 100%;
}
.top-company-row:first-child th,
.top-company-row:first-child td {
  padding-top: 0;
}
.top-company-row:last-child th,
.top-company-row:last-child td {
  padding-bottom: 0;
}
.top-company-row:not(:last-child) {
  border-bottom: 1px solid var(--color-txt-200);
}
.top-company-header {
  line-height: 1.8823529412;
  color: var(--color-txt-100);
  width: 120px;
  padding: 12.5px 9px;
}
.top-company-data {
  line-height: 1.8823529412;
  color: var(--color-txt-100);
  padding: 12.5px 0px;
}
.top-company iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*footer ---------------------------------------------*/
.footer {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(/img/common/footer-bg.png) no-repeat center center/cover;
  border-radius: var(--cmn-rad-md) var(--cmn-rad-md) 0 0;
}
.footer-top {
  margin-bottom: 59px;
  gap: 30px;
}
.footer-logo {
  display: block;
}
.footer-nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.footer .nav-list {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 25px 50px;
}
.footer .nav-item {
  position: relative;
  z-index: 1;
}
.footer .nav-item a {
  display: block;
}
.footer .copy {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 240px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sv.img-offset .sv-img img {
  -o-object-position: 75%;
     object-position: 75%;
}
.sv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.sv-img {
  width: 100%;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-ttl {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sv-ttl .bg {
  width: 90%;
  max-width: 500px;
  display: inline-block;
  padding: 22px 0px 24px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: var(--cmn-rad-lg);
}

/*==========================================
coating
===========================================*/
/*strength ---------------------------------------------*/
.strength {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.strength-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: var(--ttl-mb-md);
}
.strength-lead {
  font-weight: var(--font-normal);
  margin-bottom: 30px;
  text-align: left;
}
.strength-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3846153846;
  text-align: center;
  color: var(--color-txt-100);
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-lg);
  margin-bottom: 24px;
  padding: 11.1538461538px 0;
}
.strength-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.strength-item {
  width: 100%;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--cmn-rad-xl);
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #e3d9d4;
          box-shadow: 3.5px 3.5px 25px 0 #e3d9d4;
}
.strength-heading {
  width: 100%;
  height: 100%;
  grid-row: 1/2;
  border-bottom: 1px solid var(--color-txt-200);
  display: grid;
  grid-template-columns: 63px auto;
  justify-items: center;
}
.strength-itemttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3846153846;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  grid-column: 2/3;
  padding: 10px;
  padding-left: 0;
  padding-bottom: 12px;
}
.strength-itemttl .sm {
  font-size: 0.8em;
}
.strength-txt {
  grid-row: 2/3;
  margin-top: 16px;
}
.strength-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-column: 1/2;
}
.strength-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*intro ---------------------------------------------*/
.intro {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.intro-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: var(--ttl-mb-md);
}
.intro-btns {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  margin-bottom: 70px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 30px 20px;
}
.intro-list {
  width: 100%;
  position: relative;
  z-index: 1;
}
.intro-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.intro-item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100vw;
  bottom: 0;
  left: 50%;
  translate: -50%;
  border-bottom: 1px solid var(--color-txt-200);
}
.intro-item:not(:last-child) {
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.intro-body {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.intro-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.intro-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-txt-200);
}
.intro-txt {
  letter-spacing: normal;
  font-weight: normal;
  margin-top: 16px;
}
.intro-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  margin-bottom: 20px;
}
.intro-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-txtbox {
  width: 100%;
  border-radius: var(--cmn-rad-md);
  background: url(/img/coating/intro-txtbox-bg.png) no-repeat center center/cover;
  padding: 20px;
}
.intro-boxttl {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
  position: relative;
  z-index: 1;
}
.intro-boxttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  bottom: -5px;
  left: 0;
  border-bottom: 1px solid var(--color-white);
}
.intro .conts {
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4px;
}
@media (min-width: 610px) {
  .intro .conts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    justify-items: start;
    gap: 4px 12px;
  }
}
.intro .cont {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
  color: var(--color-white);
}

/*==========================================
maintenance
===========================================*/
/*maintenance-lead ---------------------------------------------*/
.maintenance-lead {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.maintenance-lead-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.maintenance-lead-btns {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  padding: 30px 20px;
}
.maintenance-lead .btn-wrapper {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.maintenance-lead-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-txt-100);
  margin-bottom: 24px;
}
.maintenance-lead-txt {
  font-weight: var(--font-normal);
  text-align: left;
  margin-bottom: 30px;
}

/*maint-body ---------------------------------------------*/
.maint-body {
  padding-bottom: var(--cmn-pd-md);
  margin-bottom: var(--cmn-pd-md);
  border-bottom: 1px solid var(--color-txt-200);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.maint-body-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--cmn-rad-md);
  background: url(/img/common/maint-ttl-bg01.png) no-repeat center center/cover;
  padding: 0 20px;
  margin-bottom: 30px;
}
.maint-body-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
}
.maint-body-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-white);
}
.maint-body-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.maint-body-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maint-body-side {
  width: 100%;
}
.maint-body-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.maint-body-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.24px;
  letter-spacing: 0.07em;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-txt-200);
}
.maint-body-txt {
  font-weight: var(--font-normal);
  letter-spacing: normal;
  padding-top: 16px;
}
.maint-body-img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 420px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  margin-bottom: 20px;
}
.maint-body-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maint-body .check-wrapper {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 10px;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.maint-body-check {
  width: 100%;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.maint-body-check .check {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 21px;
}
.maint-body-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/11;
  width: 14px;
  left: 0;
  top: 8px;
  background: url(/img/common/check-icon.png) no-repeat;
  background-size: contain;
}

.inspection {
  padding-bottom: var(--cmn-pd-md);
  margin-bottom: var(--cmn-pd-md);
  border-bottom: 1px solid var(--color-txt-200);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.inspection-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--cmn-rad-md);
  background: url(/img/common/maint-ttl-bg01.png) no-repeat center center/cover;
  padding: 0 20px;
  margin-bottom: 30px;
}
.inspection-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
}
.inspection-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-white);
}
.inspection-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.inspection-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inspection-side {
  width: 100%;
}
.inspection-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.inspection-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.24px;
  letter-spacing: 0.07em;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-txt-200);
}
.inspection-txt {
  font-weight: var(--font-normal);
  letter-spacing: normal;
  padding-top: 16px;
}
.inspection-img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 420px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  margin-bottom: 20px;
}
.inspection-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inspection .check-wrapper {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 10px;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inspection-check {
  width: 100%;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.inspection-check .check {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 21px;
}
.inspection-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/11;
  width: 14px;
  left: 0;
  top: 8px;
  background: url(/img/common/check-icon.png) no-repeat;
  background-size: contain;
}

.drive {
  padding-bottom: var(--cmn-pd-md);
  margin-bottom: var(--cmn-pd-md);
  border-bottom: 1px solid var(--color-txt-200);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.drive-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--cmn-rad-md);
  background: url(/img/common/maint-ttl-bg01.png) no-repeat center center/cover;
  padding: 0 20px;
  margin-bottom: 30px;
}
.drive-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
}
.drive-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-white);
}
.drive-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.drive-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drive-side {
  width: 100%;
}
.drive-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.drive-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.24px;
  letter-spacing: 0.07em;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-txt-200);
}
.drive-txt {
  font-weight: var(--font-normal);
  letter-spacing: normal;
  padding-top: 16px;
}
.drive-img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 420px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  margin-bottom: 20px;
}
.drive-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.drive .check-wrapper {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 10px;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.drive-check {
  width: 100%;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.drive-check .check {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 21px;
}
.drive-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/11;
  width: 14px;
  left: 0;
  top: 8px;
  background: url(/img/common/check-icon.png) no-repeat;
  background-size: contain;
}

.engine {
  padding-bottom: var(--cmn-pd-md);
  margin-bottom: var(--cmn-pd-md);
  border-bottom: 1px solid var(--color-txt-200);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.engine-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--cmn-rad-md);
  background: url(/img/common/maint-ttl-bg01.png) no-repeat center center/cover;
  padding: 0 20px;
  margin-bottom: 30px;
}
.engine-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
}
.engine-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-white);
}
.engine-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.engine-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.engine-side {
  width: 100%;
}
.engine-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.engine-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.24px;
  letter-spacing: 0.07em;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-txt-200);
}
.engine-txt {
  font-weight: var(--font-normal);
  letter-spacing: normal;
  padding-top: 16px;
}
.engine-img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 420px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  margin-bottom: 20px;
}
.engine-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.engine .check-wrapper {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 10px;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.engine-check {
  width: 100%;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.engine-check .check {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 21px;
}
.engine-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/11;
  width: 14px;
  left: 0;
  top: 8px;
  background: url(/img/common/check-icon.png) no-repeat;
  background-size: contain;
}

.interior {
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.interior-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--cmn-rad-md);
  background: url(/img/common/maint-ttl-bg01.png) no-repeat center center/cover;
  padding: 0 20px;
  margin-bottom: 30px;
}
.interior-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
}
.interior-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--color-white);
}
.interior-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.interior-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interior-side {
  width: 100%;
}
.interior-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.interior-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 2.24px;
  letter-spacing: 0.07em;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-txt-200);
}
.interior-txt {
  font-weight: var(--font-normal);
  letter-spacing: normal;
  padding-top: 16px;
}
.interior-img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 420px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  margin-bottom: 20px;
}
.interior-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interior .check-wrapper {
  width: 100%;
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 10px;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.interior-check {
  width: 100%;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.interior-check .check {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 21px;
}
.interior-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/11;
  width: 14px;
  left: 0;
  top: 8px;
  background: url(/img/common/check-icon.png) no-repeat;
  background-size: contain;
}

/*==========================================
works
===========================================*/
/*sub-works ---------------------------------------------*/
.sub-works {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sub-works-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.sub-works-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.sub-works-item {
  width: 100%;
  padding: 30px;
  background: var(--color-white);
  border-radius: 50px;
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #e3d9d4;
          box-shadow: 3.5px 3.5px 25px 0 #e3d9d4;
  position: relative;
  z-index: 1;
}
.sub-works-imgarea {
  width: 100%;
  gap: 50px;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  .sub-works-imgarea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 50px;
  }
  .sub-works-imgarea .sub-works-img:not(:last-child)::before {
    all: unset;
    content: "";
    position: absolute;
    z-index: -1;
    aspect-ratio: 20/50;
    width: 16px;
    left: calc(100% + 18px);
    top: 50%;
    translate: 0 -50%;
    background: url(/img/common/arw03.png) no-repeat;
    background-size: contain;
  }
}
.sub-works-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 460px;
  padding-top: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sub-works-img:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 20/50;
  width: 16px;
  left: 50%;
  top: calc(100% + 6px);
  translate: -50%;
  rotate: 90deg;
  background: url(/img/common/arw03.png) no-repeat;
  background-size: contain;
}
.sub-works-img .imgtxt {
  display: inline-block;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  translate: -50%;
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  width: 90px;
  border-radius: var(--cmn-rad-lg);
  padding: 8px 0px 2px;
}
.sub-works-img .imgtxt.bef {
  color: var(--color-main-100);
  background: var(--color-txt-300);
}
.sub-works-img .imgtxt.aft {
  color: var(--color-white);
  background: var(--color-main-100);
}
.sub-works-img figure {
  aspect-ratio: 460/340;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
  position: relative;
  z-index: 1;
}
.sub-works-img figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-works-txtarea {
  width: 100%;
}
.sub-works-header {
  width: 100%;
  padding: 0 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-txt-200);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.sub-works-header .time {
  font-weight: var(--font-normal);
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 8px;
}
.sub-works-subttl {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
  color: var(--color-txt-100);
}
.sub-works-txt {
  font-weight: var(--font-normal);
  margin-top: 12px;
}

/*==========================================
company
===========================================*/
/*message ---------------------------------------------*/
.message {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.message-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.message-body {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.message-txt {
  font-weight: normal;
  line-height: 2.4705882353;
  letter-spacing: normal;
  margin-bottom: 20px;
}
.message-img {
  width: 100%;
  max-width: 460px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.message-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*com-info ---------------------------------------------*/
.com-info {
  padding: var(--cmn-pd-md) 0;
  padding-top: var(--cmn-pd-sm);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.com-info-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.com-info .table-wrapper {
  width: 100%;
  margin-bottom: 30px;
}
.com-info-table {
  width: 100%;
}
.com-info-row {
  width: 100%;
}
.com-info-row:first-child th,
.com-info-row:first-child td {
  padding-top: 0;
}
.com-info-row:last-child th,
.com-info-row:last-child td {
  padding-bottom: 0;
}
.com-info-row:not(:last-child) {
  border-bottom: 1px solid var(--color-txt-200);
}
.com-info-header {
  line-height: 1.8823529412;
  color: var(--color-txt-100);
  width: 120px;
  padding: 12.5px 9px;
}
.com-info-data {
  line-height: 1.8823529412;
  color: var(--color-txt-100);
  padding: 12.5px 0px;
}
.com-info iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*==========================================
news
===========================================*/
.news {
  --news-img-width: 30%;
  --news-img-max-width: 160px;
  --news-margin-right: 15px;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail .meta {
  margin-bottom: 60px;
}
.detail .date {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--color-txt-100);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.detail .tag {
  display: inline-block;
}

/*drawer ---------------------------------------------*/
.drawer #nav {
  margin-bottom: 50px;
}
.drawer-contact {
  gap: 40px;
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub,
.news-ttl .ttl-sub {
  text-transform: uppercase;
}
#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-txt-100);
  --color-contact-required-mark-bg: var(--color-white);
  --color-contact-th-bg: var(--color-main-100);
  --color-contact-th-txt: var(--color-white);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
}
#contact .form-lead {
  padding-bottom: 60px;
}
#contact .lead-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3846153846;
  text-align: center;
  color: var(--color-txt-100);
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-lg);
  margin-bottom: 24px;
  padding: 11.1538461538px 0;
}
#contact .form-txt {
  width: 100%;
  margin-bottom: 30px;
}
#contact .form-txt .deco {
  color: var(--color-main-100);
  border-bottom: 1px solid var(--color-main-100);
}
#contact .form-box {
  border-radius: var(--cmn-rad-lg);
  margin: 0px auto;
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
          box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
  padding: 36px 10px 30px;
  width: 100%;
  max-width: 500px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .form-box .tel {
  margin-bottom: 20px;
}
#contact .form-box .opening {
  margin-bottom: 8px;
}
#contact .form-box .opening,
#contact .form-box .holiday {
  line-height: 1.5;
  text-align: center;
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-main-100);
  --tag-change-border-radius: 3px;
  --tag-change-margin-bottom: 40px;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 60px;
  --color-page-btn-pt: 28px;
}