@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: 17px;
  line-height: 20px;
  letter-spacing: 0.06em;
  width: 220px;
  padding: 20px 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: 22px;
  right: 10px;
  top: calc(50% + 1px);
  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: 24px;
  line-height: 30px;
  letter-spacing: 0.08em;
  width: 320px;
  padding: 20px 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: 22px;
  right: 20px;
  top: 50%;
  -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: 17px;
  line-height: 20px;
  letter-spacing: 0.08em;
  width: 240px;
  padding: 20px 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: 22px;
  right: 14px;
  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: 20px;
  width: 440px;
}

.btn-white-400 {
  font-size: 20px;
  width: 300px;
}

.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: 17px;
  line-height: 20px;
  letter-spacing: 0em;
  width: 280px;
  padding: 25px 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);
}
.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);
  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: 24px;
  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: 48px;
  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: 56px;
  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: 136px;
  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: 64px;
  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: 44px;
  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: 16px;
  line-height: 2;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt02, .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: 17px;
  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: 17px;
  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: 17px;
  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: 17px;
  font-weight: var(--font-normal);
  line-height: 1.7647058824;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}

.txt-hd-nav, .header .nav-list {
  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: 14px;
  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: 36px;
  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);
  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);
  left: 0;
  top: calc(50% - 3px);
  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, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  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: 2% 0 2% 3%;
  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, 120px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*bread-clumb ---------------------------------------------*/
.bread-clumb {
  --bread-clumb-height: 60px;
  --color-bread-clumb: var(--color-txt-100);
  --color-bread-clumb-current: var(--color-main-100);
  padding: calc((var(--bread-clumb-height) - 23.8px) / 2) 0;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  left: calc(50% - 540px);
}
.bread-clumb-list {
  overflow: hidden;
}
.bread-clumb-item {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-bread-clumb);
  white-space: nowrap;
}
.bread-clumb-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.bread-clumb-item:not(:last-child) {
  padding-right: 1.07em;
  margin-right: 1.07em;
  position: relative;
  z-index: 1;
}
.bread-clumb-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0.71em;
  height: 0.71em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23222222' 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: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.bread-clumb .current {
  color: var(--color-bread-clumb-current);
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.privacy .ttl02, .privacy .top-commitment-ttl {
  font-size: 24px;
  font-family: var(--font-main);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-200);
  --color-contact-th-txt: var(--color-txt-100);
  --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;
  padding: 1em 2em;
  border-radius: 2px;
  margin: 0 4px;
}
#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;
}
#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, 120px) 0;
}
.complete-box {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  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: 60px;
  gap: 20px;
  font-size: 16px;
}
.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: 7px 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: 16px;
  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: 12px 26px;
}
.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: 72px;
  --color-page-btn-pt: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  padding-top: 48px;
  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: 16px;
  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: 30px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  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: 30px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  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-margin-right: 25px;
}
.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  aspect-ratio: 4/3;
  width: 200px;
  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;
}

.detail {
  --color-news-detail: var(--color-txt-100);
  --fontsize-news-detail: 28px;
  --font-weight-news-detail: var(--font-medium);
  --news-detail-margin-bottom: 20px;
}
.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: 90px;
  overflow-x: clip;
  position: relative;
  z-index: 1;
  padding: 10px;
  padding-bottom: 0;
  background: var(--color-white);
}
.header-wrap {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 12px;
}
.header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .nav-item {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.header .nav-item::before {
  content: "/";
  position: absolute;
  z-index: -1;
  font-size: 1em;
  right: 0;
  top: 50%;
  translate: 50% -50%;
  color: var(--color-txt-200);
}
.header .nav-item:first-child::after {
  content: "/";
  position: absolute;
  z-index: -1;
  font-size: 1em;
  left: 0;
  top: 50%;
  translate: -50% -50%;
  color: var(--color-txt-200);
}
.header .nav-item a {
  display: block;
}
.header .current {
  color: var(--color-main-100);
}

/*mv ---------------------------------------------*/
.mv {
  width: 100%;
  height: 840px;
  position: relative;
  z-index: 1;
}
.mv::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 670/840;
  width: 670px;
  left: 0;
  top: 0;
  background: url(/img/top/mv-catch-bg.png) no-repeat;
  background-size: contain;
}
.mv::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 76%;
  width: calc(100% - 470px);
  height: 100%;
  right: 0;
  top: 0;
  background: url(/img/top/mv-img01.png) no-repeat;
  background-size: cover;
}
.mv-catch {
  position: absolute;
  z-index: -1;
  top: 411px;
  left: 43px;
  width: 391px;
}

/*side-btn ---------------------------------------------*/
.side-btn {
  z-index: 100;
  position: fixed;
  right: 0;
  bottom: 30px;
}
.side-btn-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: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 60px;
}
.side-btn .to-top {
  margin-right: 26px;
  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);
  border-radius: 50px;
  padding: 45px;
}
.top-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 35px;
}
.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: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 48px;
}
.top-news-list {
  width: 100%;
  position: relative;
  z-index: 1;
}
.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: 10px;
}
.top-news-item .tag {
  display: inline-block;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: 236px 0 506px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 380/300;
  width: 380px;
  right: 0;
  top: 626px;
  background: url(/img/top/top-about-deco-r.png) no-repeat;
  background-size: contain;
}
.top-about::after {
  content: "";
  position: absolute;
  z-index: -2;
  aspect-ratio: 380/300;
  width: 380px;
  left: clamp(-15rem, -45rem + 37.5vw, 0rem);
  bottom: 244px;
  background: url(/img/top/top-about-deco-l.png) no-repeat;
  background-size: contain;
}
.top-about-wrap {
  width: 100%;
}
.top-about .ttl-sub {
  display: inline-block;
  position: absolute;
  z-index: -1;
  left: 8px;
  top: 90px;
}
.top-about-body {
  width: 100%;
  max-width: 660px;
  margin-right: auto;
}
.top-about-ttl {
  font-family: var(--font-main);
  font-size: 62px;
  font-weight: 900;
  line-height: 88px;
  letter-spacing: 4.96px;
  color: var(--color-main-100);
  margin-bottom: 31px;
}
.top-about-ttl .dark01 {
  color: #c75d2c;
}
.top-about-ttl .dark02 {
  color: #d96f32;
}
.top-about-txt {
  font-size: 17px;
  line-height: 42px;
  letter-spacing: 1.36px;
  color: var(--color-txt-100);
}
.top-about-txt .txt-mb {
  margin-bottom: 1.5em;
}
.top-about-txt .lg {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--color-main-100);
}
.top-about-img {
  position: absolute;
  z-index: -1;
}
.top-about-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about-img.img01 {
  width: calc(50% - 60px);
  height: 660px;
  left: calc(50% + 60px);
  top: 109px;
  border-radius: 999px 0 0 999px;
  overflow: hidden;
}
.top-about-img.img02 {
  width: calc(50% + 260px);
  height: 300px;
  right: calc(50% - 260px);
  bottom: 94px;
  border-radius: 0 999px 999px 0;
  overflow: hidden;
}

/*top-commitment ---------------------------------------------*/
.top-commitment {
  padding: 119px 0 76px;
  position: relative;
  z-index: 1;
  background: var(--color-base-100);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-white) 75px, var(--color-base-100) 75px, var(--color-base-100) 100%);
}
.top-commitment::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 150/75;
  width: 150px;
  top: 0;
  left: 50%;
  translate: -50%;
  background: url(/img/top/top-commitment-bg-deco.png) no-repeat;
  background-size: contain;
}
.top-commitment-ttl {
  margin-bottom: 54px;
}
.top-commitment-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-commitment-item {
  width: 100%;
  max-width: 340px;
  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: 26px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.08px;
  color: var(--color-txt-100);
  text-align: center;
  margin-bottom: 23px;
}
.top-commitment-subttl .sm {
  font-size: 20px;
  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-top: 80px;
  padding-bottom: 142px;
  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;
  margin-bottom: 48px;
  text-align: center;
}
.top-service-ttl .ttl-main {
  color: var(--color-txt-100);
}

.cmn-links-list {
  width: 100%;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cmn-links-list.add-padding {
  padding-top: 70px;
  padding-bottom: 147px;
}
.cmn-links-item {
  width: 100%;
  max-width: 500px;
  height: 355px;
  position: relative;
  z-index: 1;
}
.cmn-links-box {
  width: 100%;
  height: 100%;
  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-img {
  position: absolute;
  z-index: -1;
  width: 100%;
  aspect-ratio: 500/320;
  width: 500px;
  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-top: 70px;
  padding-bottom: 84px;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-works::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - clamp(-1.875rem, -19.375rem + 21.88vw, 6.875rem));
  height: 620px;
  height: 100%;
  left: clamp(-1.875rem, -19.375rem + 21.88vw, 6.875rem);
  top: 0;
  background: url(/img/top/top-works-bg.png) no-repeat;
  background-size: cover;
  border-radius: 310px 0 0 310px;
}
.top-works-heading {
  width: 100%;
  margin-bottom: 43px;
}
.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: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-works-ttl .ttl-sub {
  color: var(--color-white);
}
.top-works-ttl .ttl-main {
  color: var(--color-white);
}
.top-works-list {
  width: 100%;
  gap: 16px;
}
.top-works-item {
  width: 100%;
  max-width: 350px;
}
.top-works-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-works-item-img {
  aspect-ratio: 350/270;
  width: 100%;
  max-width: 350px;
  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 .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 {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cmn-contact-wrap {
  border-radius: 2000px;
  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;
}
.cmn-contact .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.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: 35px;
}
.cmn-contact-body {
  width: 100%;
}
.cmn-contact-txt {
  text-align: center;
  margin-bottom: 31px;
}
.cmn-contact .btn-area {
  gap: 46px;
}

/*top-company ---------------------------------------------*/
.top-company {
  padding-top: 109px;
  padding-bottom: 91px;
  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: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 76px;
}
.top-company .cont-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-company .table-wrapper {
  width: 100%;
  margin-right: 20px;
}
.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: 32px;
  color: var(--color-txt-100);
  width: 135px;
  padding: 12.5px 9px;
}
.top-company-data {
  line-height: 32px;
  color: var(--color-txt-100);
  padding: 12.5px 0px;
}
.top-company iframe {
  width: 500px;
  height: 500px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: 80px;
  padding-bottom: 40px;
  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: 59px;
  margin-left: 110px;
}
.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: 39px;
}
.footer .nav-list {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .nav-item {
  position: relative;
  z-index: 1;
  padding: 0 18px;
}
.footer .nav-item:last-child {
  padding-right: 0;
}
.footer .nav-item::before {
  content: "/";
  position: absolute;
  z-index: -1;
  font-size: 1em;
  left: 0;
  top: 50%;
  translate: -50% -50%;
  color: var(--color-white);
}
.footer .nav-item a {
  display: block;
}
.footer .current {
  color: var(--color-main-100);
}
.footer .copy {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  text-align: center;
  color: var(--color-white);
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 360px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.sv-wrap::before {
  content: "";
  position: absolute;
  aspect-ratio: 139/360;
  width: 139px;
  right: 0;
  top: 0;
  background: url(/img/common/sv-deco-l.png) no-repeat;
  background-size: contain;
}
.sv-wrap::after {
  content: "";
  position: absolute;
  aspect-ratio: 139/360;
  width: 139px;
  left: 0;
  top: 0;
  background: url(/img/common/sv-deco-r.png) no-repeat;
  background-size: contain;
}
.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: 700px;
  display: inline-block;
  padding: 25px 58px 31px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 30px;
}

/*==========================================
coating
===========================================*/
/*strength ---------------------------------------------*/
.strength {
  padding-top: 100px;
  padding-bottom: 174px;
  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;
  margin-bottom: 50px;
  text-align: center;
}
.strength-lead {
  font-weight: var(--font-normal);
  text-align: center;
  margin-bottom: 51px;
}
.strength-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-txt-100);
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-lg);
  margin-bottom: 41px;
  padding: 12px 0;
}
.strength-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.strength-item {
  width: 100%;
  max-width: 520px;
  padding: 20px 16px 38px;
  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;
  display: grid;
  grid-template-columns: 1;
  grid-template-rows: 87px auto;
  justify-items: center;
}
.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: 26px;
  font-weight: bold;
  line-height: 1.2307692308;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  grid-column: 2/3;
}
.strength-itemttl .sm {
  font-size: 20px;
}
.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-bottom: 56px;
  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: 50px;
}
.intro-btns {
  width: 100%;
  background: var(--color-base-100);
  border-radius: 60px;
  padding: 30px 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 108px;
}
.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:nth-of-type(2) .conts {
  padding: 0 130px;
}
.intro-item:nth-of-type(even) .intro-body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.intro-item:nth-of-type(even) .intro-body .intro-img {
  margin: 0;
  margin-left: 36px;
}
.intro-item:not(:last-child) {
  padding-bottom: 97px;
  margin-bottom: 131px;
}
.intro-body {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro-txtarea {
  width: 100%;
  margin-bottom: 54px;
}
.intro-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.56px;
  text-align: left;
  color: var(--color-main-100);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--color-txt-200);
}
.intro-txt {
  letter-spacing: normal;
  font-weight: normal;
  margin-top: 20px;
}
.intro-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 500px;
  margin-right: 40px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.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 20px 43px;
}
.intro-boxttl {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
  padding-bottom: 13px;
  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: 23px;
  padding: 0 170px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 8px 80px;
}
.intro .cont {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
  color: var(--color-white);
}

/*==========================================
maintenance
===========================================*/
/*maintenance-lead ---------------------------------------------*/
.maintenance-lead {
  padding-top: 100px;
  padding-bottom: 70px;
  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: 50px;
}
.maintenance-lead-btns {
  background: var(--color-base-100);
  border-radius: 1000px;
  padding: 22px 59px 40px;
}
.maintenance-lead .btn-wrapper {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.maintenance-lead-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-txt-100);
  margin-bottom: 32px;
}
.maintenance-lead-txt {
  font-weight: var(--font-normal);
  text-align: center;
  margin-bottom: 50px;
}

/*maint-body ---------------------------------------------*/
.maint-body {
  padding-bottom: 120px;
  margin-bottom: 120px;
  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: 32px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
  height: 80px;
  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: 54px;
}
.maint-body-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  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: 100px;
}
.maint-body-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.maint-body-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.maint-body-item:nth-child(even) figure {
  margin: 0;
  margin-left: 54px;
}
.maint-body-item:nth-child(even) .check-wrapper {
  gap: 0;
}
.maint-body-item:nth-child(even) .maint-body-check:nth-of-type(1) {
  width: 53%;
}
.maint-body-side {
  width: 100%;
}
.maint-body-txtarea {
  width: 100%;
  margin-top: 9px;
  margin-bottom: 36px;
}
.maint-body-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.24px;
  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: 20px;
}
.maint-body-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.maint-body-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.maint-body .check-wrapper {
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 20px;
  padding: 17px 10px 27px 25px;
}
.maint-body-check {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.maint-body-check:nth-of-type(1) {
  width: 50%;
}
.maint-body-check .check {
  display: inline-block;
  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;
}
.maint-body .maint-body-item {
  width: 100%;
}
.maint-body .maint-body-item:nth-of-type(1) .maint-body-check:nth-of-type(1) {
  width: 65%;
}
.maint-body .maint-body-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.maint-body .maint-body-item:nth-child(even) .check-wrapper {
  gap: 0;
}
.maint-body .maint-body-item:nth-child(even) .maint-body-check:nth-of-type(1) {
  width: 53%;
}

.inspection {
  padding-bottom: 120px;
  margin-bottom: 120px;
  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: 32px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
  height: 80px;
  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: 54px;
}
.inspection-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  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: 100px;
}
.inspection-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.inspection-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.inspection-item:nth-child(even) figure {
  margin: 0;
  margin-left: 54px;
}
.inspection-item:nth-child(even) .check-wrapper {
  gap: 0;
}
.inspection-item:nth-child(even) .maint-body-check:nth-of-type(1) {
  width: 53%;
}
.inspection-side {
  width: 100%;
}
.inspection-txtarea {
  width: 100%;
  margin-top: 9px;
  margin-bottom: 36px;
}
.inspection-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.24px;
  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: 20px;
}
.inspection-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.inspection-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inspection .check-wrapper {
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 20px;
  padding: 17px 10px 27px 25px;
}
.inspection-check {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.inspection-check:nth-of-type(1) {
  width: 50%;
}
.inspection-check .check {
  display: inline-block;
  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: 120px;
  margin-bottom: 120px;
  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: 32px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
  height: 80px;
  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: 54px;
}
.drive-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  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: 100px;
}
.drive-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.drive-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.drive-item:nth-child(even) figure {
  margin: 0;
  margin-left: 54px;
}
.drive-item:nth-child(even) .check-wrapper {
  gap: 0;
}
.drive-item:nth-child(even) .maint-body-check:nth-of-type(1) {
  width: 53%;
}
.drive-side {
  width: 100%;
}
.drive-txtarea {
  width: 100%;
  margin-top: 9px;
  margin-bottom: 36px;
}
.drive-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.24px;
  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: 20px;
}
.drive-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.drive-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.drive .check-wrapper {
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 20px;
  padding: 17px 10px 27px 25px;
}
.drive-check {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.drive-check:nth-of-type(1) {
  width: 50%;
}
.drive-check .check {
  display: inline-block;
  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: 120px;
  margin-bottom: 120px;
  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: 32px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
  height: 80px;
  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: 54px;
}
.engine-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  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: 100px;
}
.engine-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.engine-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.engine-item:nth-child(even) figure {
  margin: 0;
  margin-left: 54px;
}
.engine-item:nth-child(even) .check-wrapper {
  gap: 0;
}
.engine-item:nth-child(even) .maint-body-check:nth-of-type(1) {
  width: 53%;
}
.engine-side {
  width: 100%;
}
.engine-txtarea {
  width: 100%;
  margin-top: 9px;
  margin-bottom: 36px;
}
.engine-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.24px;
  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: 20px;
}
.engine-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.engine-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.engine .check-wrapper {
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 20px;
  padding: 17px 10px 27px 25px;
}
.engine-check {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.engine-check:nth-of-type(1) {
  width: 50%;
}
.engine-check .check {
  display: inline-block;
  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: 95px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.interior-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-white);
  height: 80px;
  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: 54px;
}
.interior-ttl .ttl-deco {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  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: 100px;
}
.interior-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.interior-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.interior-item:nth-child(even) figure {
  margin: 0;
  margin-left: 54px;
}
.interior-item:nth-child(even) .check-wrapper {
  gap: 0;
}
.interior-item:nth-child(even) .maint-body-check:nth-of-type(1) {
  width: 53%;
}
.interior-side {
  width: 100%;
}
.interior-txtarea {
  width: 100%;
  margin-top: 9px;
  margin-bottom: 36px;
}
.interior-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.24px;
  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: 20px;
}
.interior-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  overflow: hidden;
  border-radius: var(--cmn-rad-md);
}
.interior-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interior .check-wrapper {
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-md);
  gap: 20px;
  padding: 17px 10px 27px 25px;
}
.interior-check {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}
.interior-check:nth-of-type(1) {
  width: 50%;
}
.interior-check .check {
  display: inline-block;
  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-top: 100px;
  padding-bottom: 100px;
  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: 48px;
}
.sub-works-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.sub-works-item {
  width: 100%;
  padding: 25px 40px 40px;
  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: 80px;
  margin-bottom: 38px;
}
.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: 20px;
  left: calc(100% + 33px);
  top: 50%;
  translate: 0 -50%;
  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: 24px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  width: 120px;
  border-radius: 30px;
}
.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: 15px;
  border-bottom: 1px solid var(--color-txt-200);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sub-works-header .time {
  font-weight: var(--font-normal);
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 30%;
  margin-left: 30px;
}
.sub-works-subttl {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: 2.08px;
  text-align: left;
  color: var(--color-txt-100);
}
.sub-works-txt {
  font-weight: var(--font-normal);
  margin-top: 15px;
}

/*==========================================
company
===========================================*/
/*message ---------------------------------------------*/
.message {
  padding-top: 100px;
  padding-bottom: 180px;
  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: 68px;
}
.message-body {
  width: 100%;
}
.message-txt {
  font-weight: normal;
  line-height: 2.4705882353;
  letter-spacing: normal;
}
.message-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 50px;
  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 {
  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: 90px;
}
.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: 32px;
  color: var(--color-txt-100);
  width: 135px;
  padding: 12.5px 9px;
}
.com-info-data {
  line-height: 32px;
  color: var(--color-txt-100);
  padding: 12.5px 0px;
}
.com-info iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*==========================================
news
===========================================*/
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail .meta {
  margin-bottom: 70px;
}
.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: 10px;
}
.detail .tag {
  display: inline-block;
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: 100px 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: 48px;
}
.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: 100px;
}
#contact .lead-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  color: var(--color-txt-100);
  background: var(--color-base-100);
  border-radius: var(--cmn-rad-lg);
  margin-bottom: 36px;
  padding: 12px 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: 2000px;
  margin: 0px auto;
  -webkit-box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
          box-shadow: 3.5px 3.5px 25px 0 #fae9d9;
  padding: 55px 150px 45px;
  -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 {
  font-size: 18px;
  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: 60px;
}