@charset "UTF-8";
:root {
  /* fonts */
  --font-main: Zen Kaku Gothic New, sans-serif;
  --font-sub: Barlow Condensed, sans-serif;
  /* colors */
  --color-main-100: #426e2c;
  --color-main-200: #ecf5e8;
  --color-main-300: #97b986;
  --color-main-400: #000;
  --color-main-500: #000;
  --color-accent-100: #ff9e23;
  --color-accent-200: #000;
  --color-txt-100: #333333;
  --color-txt-200: rgba(0, 0, 0, 0.8666666667);
  --color-border-100: #d3d3d3;
  --color-border-200: #000;
  --color-line-100: #06c755;
  --color-base-100: #f6f6f6;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-black: #000000;
  /* 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 screen and (min-width: 767px) {
  :root {
    --cmn-pd-xs: 100px;
    --cmn-pd-md: 130px;
    --ttl-mb-sm: 50px;
    --ttl-mb-md: 65px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --cmn-pd-xs: 80px;
    --cmn-pd-md: 90px;
    --ttl-mb-sm: 40px;
    --ttl-mb-md: 40px;
  }
}

/* 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;
}

/* font-family */
.font-main {
  font-family: Zen Kaku Gothic New, sans-serif;
}

.font-sub {
  font-family: Barlow Condensed, sans-serif;
}

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

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

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

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

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

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

.color-accent-200 {
  color: var(--color-accent-200);
}

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

.color-txt-200 {
  color: var(--color-txt-200);
}

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

.color-border-200 {
  color: var(--color-border-200);
}

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

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

.color-base-200 {
  color: var(--color-base-200);
}

.color-base-300 {
  color: var(--color-base-300);
}

.color-base-400 {
  color: var(--color-base-400);
}

.color-base-500 {
  color: var(--color-base-500);
}

.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

html {
  font-family: var(--font-main);
  scroll-padding-top: 160px;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  font-family: var(--font-main);
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

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 screen and (min-width: 767px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
    font-size: 18px;
    line-height: 2;
  }
  .cmn-txt-mb {
    margin-bottom: 36px;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
    font-size: 15px;
    line-height: 2;
  }
  .cmn-txt-mb {
    margin-bottom: 30px;
  }
  .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用
===========================================*/
/*共通セクションスタイル worries ---------------------------------------------*/
/*==========================================
SP用
===========================================*/
/*共通セクションスタイル worries ---------------------------------------------*/
.btn, .btn-line-100, .btn-accent-200, .btn-news-100, .btn-accent-100 {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-line-100, .btn-accent-200, .btn-news-100, .btn-accent-100 {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
  color: var(--color-white);
  width: 135px;
  padding: 14.5px 20px 16.5px;
  text-align: center;
  background: var(--color-line-100);
  border-radius: 6px;
}
.btn-line-100::before, .btn-accent-200::before, .btn-news-100::before, .btn-accent-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 15/12;
  width: 13px;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-white.png) no-repeat;
  background-size: contain;
}

.btn-accent-100 {
  width: 215px;
  background: var(--color-accent-100);
}
.btn-accent-100 .btn-cont {
  display: inline-block;
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
}
.btn-accent-100::before {
  right: 17px;
}

.btn-accent-200, .btn-news-100 {
  width: 100%;
  max-width: 580px;
  padding: 17px 20px 19px;
  background: var(--color-accent-100);
}
.btn-accent-200::before, .btn-news-100::before {
  right: 19px;
}

.btn-news-100 {
  width: 100%;
  max-width: 180px;
  background: var(--color-accent-100);
}
.btn-news-100::before {
  right: 19px;
}

.ttl, .top-maintenance-ttl, .top-recruit-ttl, .worries-ttl, .service-ttl, .worries02-ttl, .service02-ttl, .worries03-ttl, .service03-ttl, .features04-ttl .ttl-deco, .ttl-lh-1, .top-about-ttl, .top-point-ttl, .top-news-ttl, .top-company-ttl, .voice-ttl, .sub-recruit-ttl, .job-desc-ttl, .ttl-white-lh-1, .features-ttl, .features02-ttl, .features03-ttl, .features04-ttl, .ttl-white, .top-movie-ttl {
  font-family: var(--font-main);
  color: var(--color-main-100);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: var(--font-black);
}

.ttl-white-lh-1, .features-ttl, .features02-ttl, .features03-ttl, .features04-ttl {
  color: var(--color-white);
}

.ttl-white, .top-movie-ttl {
  color: var(--color-white);
}

.ttl-lh-1, .top-about-ttl, .top-point-ttl, .top-news-ttl, .top-company-ttl, .voice-ttl, .sub-recruit-ttl, .job-desc-ttl, .ttl-white-lh-1, .features-ttl, .features02-ttl, .features03-ttl, .features04-ttl {
  line-height: 1;
}

.ttl-sv, .sv-ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-main);
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: var(--font-black);
  color: var(--color-white);
  font-style: italic;
}

.ttl-temp, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  font-family: var(--font-main);
  color: var(--color-main-100);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: var(--font-black);
  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: 16px;
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
}
.ttl-temp .en, .form-ttl .en,
.complete-ttl .en,
.notfound-ttl .en,
.privacy-ttl .en,
.site-map-ttl .en,
.news-ttl .en {
  font-family: var(--font-sub);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
  text-transform: uppercase;
}
.ttl-temp::after, .form-ttl::after,
.complete-ttl::after,
.notfound-ttl::after,
.privacy-ttl::after,
.site-map-ttl::after,
.news-ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}

.sub-ttl, .top-maintenance-subttl, .service-subttl, .service02-subttl, .service03-subttl, .sub-ttl-xs, .job-desc .table-title, .sub-ttl-sm, .features-subttl, .features02-subttl, .features03-subttl, .voice-subttl, .voice-name, .features04-subttl, .sub-ttl-lh-1 {
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.sub-ttl-lh-1 {
  line-height: 1;
}

.sub-ttl-sm, .features-subttl, .features02-subttl, .features03-subttl, .voice-subttl, .voice-name, .features04-subttl {
  font-size: 18px;
}

.sub-ttl-xs, .job-desc .table-title {
  font-size: 18px;
}

.txt, .top-about-txt, .top-maintenance-txt, .top-recruit-txt, .top-company-header, .top-company-data, .worries-item, .service-txt, .features-txt, .worries02-item, .service02-txt, .features02-txt, .worries03-item, .service03-txt, .features03-txt, .voice-txt, .sub-recruit-item, .features04-txt, .job-desc-header, .job-desc-data, .txt-sm, .top-point-txt, .footer address, .footer .opening {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-sm, .top-point-txt, .footer address, .footer .opening {
  font-size: 12px;
  line-height: 2;
}

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

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

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

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

.txt-ft-nav, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  font-weight: var(--font-bold);
}

.txt-ft-nav-sm {
  font-size: 12px;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-md, .tel-lg, .tel-xl {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: var(--font-bold);
  position: relative;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.tel-subtxt {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--font-bold);
  position: relative;
  letter-spacing: 0.08em;
  color: var(--color-main-100);
}

.tel-svg img {
  display: block;
}

.tel-xl {
  font-size: 50px;
}
.tel-xl .tel-num {
  --icon-width: 23;
  --icon-height: 29;
  padding-left: 8px;
}
.tel-xl .tel-num::before {
  background: url(/img/common/tel-icon-lg.png) no-repeat;
  background-size: contain;
}

.tel-lg {
  font-size: 40px;
}
.tel-lg .tel-num {
  --icon-width: 19;
  --icon-height: 26;
  padding-left: 8px;
}
.tel-lg .tel-num::before {
  background: url(/img/common/tel-icon-lg.png) no-repeat;
  background-size: contain;
}

.tel-md {
  font-size: 30px;
}
.tel-md .tel-num {
  --icon-width: 14;
  --icon-height: 20;
  padding-left: 5px;
}
.tel-md .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='%23ffffff' 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-400);
  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 {
  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 screen and (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;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-400);
  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 {
  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;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  line-height: 1;
  width: 30px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
}
.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-txt-100);
}

.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-400);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 40px;
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 14px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: 3px;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.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;
  max-width: 33%;
  margin-right: auto;
}
.page-btn .left a {
  display: block;
  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;
  max-width: 33%;
  margin-left: auto;
}
.page-btn .right a {
  display: block;
  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 {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  width: 25%;
  margin-right: 15px;
  -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);
}
.detail-ttl {
  font-size: 20px;
  color: var(--color-news-detail);
  margin-bottom: 12px;
  line-height: 1.5;
}

/*==========================================
top
===========================================*/
/*header ---------------------------------------------*/
.header {
  height: 75px;
  width: 100%;
  position: relative;
  z-index: 10;
  background: var(--color-white);
  overflow: hidden;
  padding: 15px;
}
.header .logo {
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 220px;
}
.header .logo a,
.header .logo img {
  display: block;
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 500px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/mv-bg.png) no-repeat 65% center/cover;
}
.mv-catch {
  position: absolute;
  z-index: 100;
  width: 96%;
  max-width: 600px;
  left: 50%;
  bottom: 61px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*side-btns ---------------------------------------------*/
.side-btns {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 20px;
  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: 2px;
  pointer-events: none;
}
.side-btns .side-btn {
  position: relative;
  right: -79.5%;
  width: 250px;
  pointer-events: auto;
}
.side-btns .side-btn img {
  display: block;
  width: 100%;
  height: auto;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding-top: 90px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/top-about-bg.png) no-repeat center center/cover;
}
.top-about-wrap {
  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;
}
.top-about-txtarea {
  width: 100%;
  margin-bottom: 32px;
}
.top-about-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.top-about-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-about-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 110/24;
  height: 16px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-about-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--color-accent-100);
}
.top-about-ttl .ttl-deco::before {
  background-image: url(/img/top/top-about-ttl-en.png);
}
.top-about-txt .highlight {
  font-weight: var(--font-bold);
  color: var(--color-main-100);
}
.top-about-ill {
  position: absolute;
  z-index: -1;
  right: 24px;
  bottom: 0;
  width: 130px;
}

/*section-container ---------------------------------------------*/
.section-container {
  position: relative;
  z-index: 1;
}

/*top-movie ---------------------------------------------*/
.top-movie {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
}
.top-movie::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 170px);
  left: 50%;
  top: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/top/top-movie-bg.png) no-repeat;
  background-size: cover;
}
.top-movie::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 752/698;
  width: 50%;
  max-width: 500px;
  right: 0;
  top: calc(100% - 170px);
  background: url(/img/top/top-point-deco-r.png) no-repeat;
  background-size: contain;
}
.top-movie-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.top-movie-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-movie-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 68/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-movie-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.top-movie-ttl .ttl-deco::before {
  background-image: url(/img/top/top-movie-ttl-en.png);
}
.top-movie video {
  display: block;
  aspect-ratio: 1080/608;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #e6e6e6;
}
.top-movie iframe {
  display: block;
  border: none;
  aspect-ratio: 1080/608;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
}
.top-movie-img {
  position: absolute;
  z-index: -1;
  width: 240px;
  left: 10%;
  bottom: calc(100% - 45px);
}

/*top-point ---------------------------------------------*/
.top-point {
  padding-bottom: var(--cmn-pd-md);
  position: relative;
  z-index: 1;
}
.top-point::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 445/413;
  width: 50%;
  left: 0;
  bottom: 0;
  background: url(/img/top/top-point-deco-l.png) no-repeat;
  background-size: contain;
}
.top-point-wrap {
  overflow: hidden;
}
.top-point-ttl {
  margin-bottom: var(--ttl-mb-sm);
  text-align: center;
}
.top-point-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-point-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 66/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-point-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.top-point-ttl .ttl-deco::before {
  background-image: url(/img/top/top-point-ttl-en.png);
}
.top-point-list {
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 20px;
}
.top-point-item {
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-point-txt {
  padding: 16px min(25px, 10%) min(25px, 10%);
  background: var(--color-main-200);
  height: 100%;
}
.top-point-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-point-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 25%;
  left: 0;
  bottom: 0;
  background: var(--color-main-200);
}
.top-point-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*bg-deco ---------------------------------------------*/
.bg-deco {
  position: relative;
  z-index: 1;
  background: var(--color-base-100);
}
.bg-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 430/364;
  width: 40%;
  max-width: 160px;
  right: 10px;
  top: -83px;
  background: url(/img/top/top-maintenance-ill01.png) no-repeat;
  background-size: contain;
}

/*top-maintenance ---------------------------------------------*/
.top-maintenance {
  padding: var(--cmn-pd-md) 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-maintenance-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.top-maintenance-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-maintenance-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 156/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-maintenance-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.top-maintenance-ttl .ttl-deco::before {
  background-image: url(/img/top/top-maintenance-ttl-en.png);
}
.top-maintenance-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 50px;
}
.top-maintenance-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-maintenance-item:nth-of-type(odd) .top-maintenance-txtarea {
  margin-left: auto;
}
.top-maintenance-item:nth-of-type(odd) .top-maintenance-img {
  left: min(-320px, (50vw - 640px) * -1);
}
.top-maintenance-item:nth-of-type(even) .top-maintenance-img {
  right: min(-320px, (50vw - 640px) * -1);
}
.top-maintenance-txtarea {
  padding: 30px 20px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.top-maintenance-txtarea::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 214/198;
  width: 214px;
  right: 0;
  bottom: 0;
  background: url(/img/top/top-maintenance-deco.png) no-repeat;
  background-size: contain;
}
.top-maintenance-txtarea::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color-main-100);
}
.top-maintenance-subttl {
  width: 100%;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}
.top-maintenance-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  width: calc(100% + 40px);
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.top-maintenance-txt {
  padding-top: 16px;
  margin-bottom: 36px;
}
.top-maintenance-img {
  margin-bottom: 10px;
}
.top-maintenance-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-recruit ---------------------------------------------*/
.top-recruit {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/top/top-recruit-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.top-recruit-wrap {
  width: 100%;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  background: var(--color-white);
}
.top-recruit-ttl {
  margin-bottom: var(--ttl-mb-sm);
  text-align: center;
}
.top-recruit-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-recruit-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.top-recruit-ttl .ttl-deco::before {
  background-image: url(/img/top/top-recruit-ttl-en.png);
}
.top-recruit-txt {
  margin-bottom: 60px;
  text-align: left;
}
.top-recruit-img {
  position: absolute;
  z-index: -1;
  right: 10px;
  bottom: 0;
  width: 160px;
}

/*news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-xs) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-news-wrap {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-news-heading {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 40px;
}
.top-news-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-news-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 60/24;
  height: 16px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-news-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--color-accent-100);
}
.top-news-ttl .ttl-deco::before {
  background-image: url(/img/top/top-news-ttl-en.png);
}
.top-news-list {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}
.top-news-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  padding: 30px 0 26px;
  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-border-100);
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .meta {
  margin-bottom: 12px;
}
.top-news-item .date {
  margin-right: 20px;
  -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-news .btn-news-100 {
  margin: 0 auto;
}

/*top-company ---------------------------------------------*/
.top-company {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-200);
  position: relative;
  z-index: 1;
  --row-height: 60px;
}
.top-company::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 417/310;
  width: 200px;
  right: 10px;
  top: -22px;
  background: url(/img/top/top-company-img.png) no-repeat;
  background-size: contain;
}
.top-company-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.top-company-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.top-company-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  height: 16px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-company-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--color-accent-100);
}
.top-company-ttl .ttl-deco::before {
  background-image: url(/img/top/top-company-ttl-en.png);
}
.top-company-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-company-table {
  width: 100%;
  margin-bottom: 60px;
}
.top-company-row {
  width: 100%;
}
.top-company-row:not(:last-child) .top-company-header,
.top-company-row:not(:last-child) .top-company-data {
  border-bottom: 1px solid var(--color-main-100);
}
.top-company-row:first-child .top-company-header,
.top-company-row:first-child .top-company-data {
  padding-top: 0;
}
.top-company-row:last-child .top-company-header,
.top-company-row:last-child .top-company-data {
  padding-bottom: 0;
}
.top-company-header {
  width: 140px;
  padding: calc((var(--row-height) - 30px) / 2) 8px;
  padding-right: 28px;
  color: var(--color-main-100);
}
.top-company-data {
  padding: calc((var(--row-height) - 30px) / 2) 0;
  color: var(--color-txt-100);
}
.top-company-data .tel-svg {
  display: inline-block;
  line-height: 1;
  letter-spacing: normal;
}
.top-company-data .tel-svg img {
  display: block;
}
.top-company-data .tel-link {
  display: inline-block;
}
.top-company iframe {
  display: block;
  border: none;
  width: 100%;
  height: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: var(--cmn-pd-xs);
  padding-bottom: 44px;
}
.footer-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-side {
  margin-bottom: 32px;
}
.footer-logo {
  width: 280px;
  margin-bottom: 52px;
}
.footer address {
  line-height: 1;
  margin-bottom: 12px;
}
.footer .opening {
  line-height: 1;
}
.footer .sns-btn {
  margin-bottom: 40px;
}
.footer-links {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .tel-area {
  margin-bottom: 24px;
}
.footer .tel-area .tel {
  margin-bottom: 8px;
}
.footer .tel-area .tel-svg {
  width: 200px;
}
.footer-btns {
  gap: 12px;
  margin-bottom: 37px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
  margin-bottom: 52px;
}
.footer .nav-list {
  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;
  gap: 24px;
}
.footer .copy {
  display: block;
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 240px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color-white);
}
.sv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.sv-wrap::before {
  content: "";
  position: absolute;
  aspect-ratio: 762/92;
  width: 95%;
  max-width: 400px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/common/sv-ttl-bg.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;
  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;
  text-align: center;
}
.sv-ttl.sm {
  font-size: 20px;
}

/*==========================================
duct
===========================================*/
/*worries ---------------------------------------------*/
.worries {
  padding-top: var(--cmn-pd-md);
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  background: url(/img/common/worries-bg.png) no-repeat center center/cover;
}
.worries::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 558/518;
  width: 40%;
  max-width: 300px;
  left: 0;
  top: 0;
  background: url(/img/common/triangle-l-t.png) no-repeat;
  background-size: contain;
}
.worries-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.worries-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.worries-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 107/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.worries-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.worries-ttl .ttl-deco::before {
  background-image: url(/img/common/worries-ttl-en.png);
}
.worries-list {
  width: 100%;
  background: var(--color-white);
  padding: 40px 30px 80px;
  background: var(--color-main-200);
  position: relative;
}
.worries-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1080/127;
  width: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--color-main-200);
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: block;
}
.worries-item {
  width: 100%;
  border-bottom: 1px solid var(--color-border-100);
  padding: 15px 0px;
  line-height: 30px;
  font-weight: var(--font-black);
}
.worries-item:first-child {
  padding-top: 0;
}
.worries-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.worries-item .hl {
  font-size: 18px;
  color: var(--color-main-100);
}
.worries .check-mark {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  z-index: 1;
}
.worries .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 18px;
  left: 0;
  top: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-accent.png) no-repeat;
  background-size: contain;
}
.worries-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
  max-width: 250px;
}
.worries-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*service ---------------------------------------------*/
.service {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-base-100);
}
.service-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.service-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.service-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.service-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.service-ttl .ttl-deco::before {
  background-image: url(/img/common/service-ttl-en.png);
}
.service-ttl .sm {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 10px;
}
.service-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.service-item {
  width: 100%;
  padding: 40px 30px;
  padding-left: 34px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-100);
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 121/112;
  width: 121px;
  right: 0;
  bottom: 0;
  background: url(/img/common/service-deco.png) no-repeat;
  background-size: contain;
}
.service-txtarea {
  width: 100%;
}
.service-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-100);
}
.service-txt {
  padding-top: 14px;
}
.service-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}
.service-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*features ---------------------------------------------*/
.features {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/features-bg.png) no-repeat center center/cover;
}
.features-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.features-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.features-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.features-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.features-ttl .ttl-deco::before {
  background-image: url(/img/common/features-ttl-en.png);
}
.features-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features-item {
  width: 100%;
  max-width: 520px;
  padding: 25px 35px 35px;
  background: var(--color-white);
}
.features-item:nth-of-type(1) h3::before {
  background: url(/img/common/features-en01.png) no-repeat;
  background-size: contain;
}
.features-item:nth-of-type(2) h3::before {
  background: url(/img/common/features-en02.png) no-repeat;
  background-size: contain;
}
.features-item:nth-of-type(3) h3::before {
  background: url(/img/common/features-en03.png) no-repeat;
  background-size: contain;
}
.features-item:nth-of-type(4) h3::before {
  background: url(/img/common/features-en04.png) no-repeat;
  background-size: contain;
}
.features-item:nth-of-type(5) h3::before {
  background: url(/img/common/features-en05.png) no-repeat;
  background-size: contain;
}
.features-item:nth-of-type(6) h3::before {
  background: url(/img/common/features-en06.png) no-repeat;
  background-size: contain;
}
.features .heading {
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.features .heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 70px);
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.features-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.features-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features-subttl {
  width: 100%;
  color: var(--color-main-100);
  display: inline-block;
  padding-top: 23px;
  position: relative;
  z-index: 1;
}
.features-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 77/13;
  width: 77px;
  left: 0;
  top: 0;
}
.features-txt {
  padding-top: 16px;
}

/*==========================================
air-conditioner
===========================================*/
/*worries02 ---------------------------------------------*/
.worries02 {
  padding-top: var(--cmn-pd-md);
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  background: url(/img/common/worries-bg.png) no-repeat center center/cover;
}
.worries02::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 558/518;
  width: 40%;
  max-width: 300px;
  left: 0;
  top: 0;
  background: url(/img/common/triangle-l-t.png) no-repeat;
  background-size: contain;
}
.worries02-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.worries02-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.worries02-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 107/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.worries02-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.worries02-ttl .ttl-deco::before {
  background-image: url(/img/common/worries-ttl-en.png);
}
.worries02-list {
  width: 100%;
  background: var(--color-white);
  padding: 40px 30px 80px;
  background: var(--color-main-200);
  position: relative;
}
.worries02-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1080/127;
  width: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--color-main-200);
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: block;
}
.worries02-item {
  width: 100%;
  border-bottom: 1px solid var(--color-border-100);
  padding: 15px 0px;
  line-height: 30px;
  font-weight: var(--font-black);
}
.worries02-item:first-child {
  padding-top: 0;
}
.worries02-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.worries02-item .hl {
  font-size: 18px;
  color: var(--color-main-100);
}
.worries02 .check-mark {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  z-index: 1;
}
.worries02 .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 18px;
  left: 0;
  top: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-accent.png) no-repeat;
  background-size: contain;
}
.worries02-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
  max-width: 250px;
}
.worries02-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*service02 ---------------------------------------------*/
.service02 {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-base-100);
}
.service02-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.service02-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.service02-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.service02-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.service02-ttl .ttl-deco::before {
  background-image: url(/img/common/service-ttl-en.png);
}
.service02-ttl .sm {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 10px;
}
.service02-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.service02-item {
  width: 100%;
  padding: 40px 30px;
  padding-left: 34px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-100);
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service02-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 121/112;
  width: 121px;
  right: 0;
  bottom: 0;
  background: url(/img/common/service-deco.png) no-repeat;
  background-size: contain;
}
.service02-txtarea {
  width: 100%;
}
.service02-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-100);
}
.service02-txt {
  padding-top: 14px;
}
.service02-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}
.service02-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*features02 ---------------------------------------------*/
.features02 {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/features-bg.png) no-repeat center center/cover;
}
.features02-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.features02-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.features02-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.features02-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.features02-ttl .ttl-deco::before {
  background-image: url(/img/common/features-ttl-en.png);
}
.features02-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features02-item {
  width: 100%;
  max-width: 520px;
  padding: 25px 35px 35px;
  background: var(--color-white);
}
.features02-item:nth-of-type(1) h3::before {
  background: url(/img/common/features-en01.png) no-repeat;
  background-size: contain;
}
.features02-item:nth-of-type(2) h3::before {
  background: url(/img/common/features-en02.png) no-repeat;
  background-size: contain;
}
.features02-item:nth-of-type(3) h3::before {
  background: url(/img/common/features-en03.png) no-repeat;
  background-size: contain;
}
.features02-item:nth-of-type(4) h3::before {
  background: url(/img/common/features-en04.png) no-repeat;
  background-size: contain;
}
.features02-item:nth-of-type(5) h3::before {
  background: url(/img/common/features-en05.png) no-repeat;
  background-size: contain;
}
.features02-item:nth-of-type(6) h3::before {
  background: url(/img/common/features-en06.png) no-repeat;
  background-size: contain;
}
.features02 .heading {
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.features02 .heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 70px);
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.features02-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.features02-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features02-subttl {
  width: 100%;
  color: var(--color-main-100);
  display: inline-block;
  padding-top: 23px;
  position: relative;
  z-index: 1;
}
.features02-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 77/13;
  width: 77px;
  left: 0;
  top: 0;
}
.features02-txt {
  padding-top: 16px;
}

/*==========================================
drainage
===========================================*/
/*worries03 ---------------------------------------------*/
.worries03 {
  padding-top: var(--cmn-pd-md);
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  background: url(/img/common/worries-bg.png) no-repeat center center/cover;
}
.worries03::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 558/518;
  width: 40%;
  max-width: 300px;
  left: 0;
  top: 0;
  background: url(/img/common/triangle-l-t.png) no-repeat;
  background-size: contain;
}
.worries03-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.worries03-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.worries03-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 107/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.worries03-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.worries03-ttl .ttl-deco::before {
  background-image: url(/img/common/worries-ttl-en.png);
}
.worries03-list {
  width: 100%;
  background: var(--color-white);
  padding: 40px 30px 80px;
  background: var(--color-main-200);
  position: relative;
}
.worries03-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1080/127;
  width: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--color-main-200);
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  display: block;
}
.worries03-item {
  width: 100%;
  border-bottom: 1px solid var(--color-border-100);
  padding: 15px 0px;
  line-height: 30px;
  font-weight: var(--font-black);
}
.worries03-item:first-child {
  padding-top: 0;
}
.worries03-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.worries03-item .hl {
  font-size: 18px;
  color: var(--color-main-100);
}
.worries03 .check-mark {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  z-index: 1;
}
.worries03 .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 18px;
  left: 0;
  top: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-accent.png) no-repeat;
  background-size: contain;
}
.worries03-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
  max-width: 250px;
}
.worries03-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*service03 ---------------------------------------------*/
.service03 {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-base-100);
}
.service03-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.service03-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.service03-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.service03-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.service03-ttl .ttl-deco::before {
  background-image: url(/img/common/service-ttl-en.png);
}
.service03-ttl .sm {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 10px;
}
.service03-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.service03-item {
  width: 100%;
  padding: 40px 30px;
  padding-left: 34px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-100);
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service03-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 121/112;
  width: 121px;
  right: 0;
  bottom: 0;
  background: url(/img/common/service-deco.png) no-repeat;
  background-size: contain;
}
.service03-txtarea {
  width: 100%;
}
.service03-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-100);
}
.service03-txt {
  padding-top: 14px;
}
.service03-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}
.service03-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*features03 ---------------------------------------------*/
.features03 {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/features-bg.png) no-repeat center center/cover;
}
.features03-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.features03-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.features03-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.features03-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.features03-ttl .ttl-deco::before {
  background-image: url(/img/common/features-ttl-en.png);
}
.features03-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features03-item {
  width: 100%;
  max-width: 520px;
  padding: 25px 35px 35px;
  background: var(--color-white);
}
.features03-item:nth-of-type(1) h3::before {
  background: url(/img/common/features-en01.png) no-repeat;
  background-size: contain;
}
.features03-item:nth-of-type(2) h3::before {
  background: url(/img/common/features-en02.png) no-repeat;
  background-size: contain;
}
.features03-item:nth-of-type(3) h3::before {
  background: url(/img/common/features-en03.png) no-repeat;
  background-size: contain;
}
.features03-item:nth-of-type(4) h3::before {
  background: url(/img/common/features-en04.png) no-repeat;
  background-size: contain;
}
.features03-item:nth-of-type(5) h3::before {
  background: url(/img/common/features-en05.png) no-repeat;
  background-size: contain;
}
.features03-item:nth-of-type(6) h3::before {
  background: url(/img/common/features-en06.png) no-repeat;
  background-size: contain;
}
.features03 .heading {
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.features03 .heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 70px);
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.features03-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.features03-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features03-subttl {
  width: 100%;
  color: var(--color-main-100);
  display: inline-block;
  padding-top: 23px;
  position: relative;
  z-index: 1;
}
.features03-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 77/13;
  width: 77px;
  left: 0;
  top: 0;
}
.features03-txt {
  padding-top: 16px;
}

/*voice ---------------------------------------------*/
.voice {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-200);
}
.voice-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.voice-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.voice-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 69/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.voice-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.voice-ttl .ttl-deco::before {
  background-image: url(/img/common/voice-ttl-en.png);
}
.voice-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.voice-item {
  width: 100%;
  max-width: 520px;
}
.voice-subttl {
  width: 100%;
  max-width: 450px;
  color: var(--color-white);
  padding: 15px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.voice-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--color-main-100);
}
.voice-subttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 31/27;
  width: 31px;
  left: 50%;
  bottom: 0;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--color-main-100);
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.voice-name {
  font-size: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 9px;
}
.voice-name::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 60px);
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.voice-body {
  width: 100%;
  height: 100%;
  padding: 36px 30px 30px;
  background: var(--color-white);
  position: relative;
}
.voice-body::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 50px;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  background: var(--color-white);
}
.voice-txt {
  padding-top: 13px;
}

/*==========================================
recruit
===========================================*/
/*sub-recruit ---------------------------------------------*/
.sub-recruit {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/recruit/sub-recruit-bg.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.sub-recruit-wrap {
  position: relative;
  z-index: 1;
}
.sub-recruit::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 558/518;
  width: 40%;
  max-width: 400px;
  left: 0;
  top: 0;
  background: url(/img/common/triangle-l-t.png) no-repeat;
  background-size: contain;
}
.sub-recruit-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.sub-recruit-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.sub-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 101/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.sub-recruit-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.sub-recruit-ttl .ttl-deco::before {
  background-image: url(/img/recruit/sub-recruit-ttl-en.png);
}
.sub-recruit-list {
  width: 100%;
  background: var(--color-main-200);
  padding: 40px 30px;
  padding-bottom: 220px;
  position: relative;
}
.sub-recruit-item {
  width: 100%;
  padding: 12px 0px;
  border-bottom: 1px solid var(--color-border-100);
  font-weight: var(--font-black);
}
.sub-recruit-item:first-child {
  padding-top: 0;
}
.sub-recruit-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sub-recruit .check-mark {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
.sub-recruit .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 18px;
  left: 0;
  top: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-accent.png) no-repeat;
  background-size: contain;
}
.sub-recruit-img {
  position: absolute;
  left: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 180px;
}
.sub-recruit-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*features04 ---------------------------------------------*/
.features04 {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/features-bg.png) no-repeat center center/cover;
  background: url(/img/recruit/features04-bg.png) no-repeat center center/cover;
}
.features04-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.features04-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.features04-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.features04-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.features04-ttl .ttl-deco::before {
  background-image: url(/img/common/features-ttl-en.png);
}
.features04-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features04-item {
  width: 100%;
  max-width: 520px;
  padding: 25px 35px 35px;
  background: var(--color-white);
}
.features04-item:nth-of-type(1) h3::before {
  background: url(/img/common/features-en01.png) no-repeat;
  background-size: contain;
}
.features04-item:nth-of-type(2) h3::before {
  background: url(/img/common/features-en02.png) no-repeat;
  background-size: contain;
}
.features04-item:nth-of-type(3) h3::before {
  background: url(/img/common/features-en03.png) no-repeat;
  background-size: contain;
}
.features04-item:nth-of-type(4) h3::before {
  background: url(/img/common/features-en04.png) no-repeat;
  background-size: contain;
}
.features04-item:nth-of-type(5) h3::before {
  background: url(/img/common/features-en05.png) no-repeat;
  background-size: contain;
}
.features04-item:nth-of-type(6) h3::before {
  background: url(/img/common/features-en06.png) no-repeat;
  background-size: contain;
}
.features04 .heading {
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.features04 .heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 70px);
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.features04-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.features04-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features04-subttl {
  width: 100%;
  color: var(--color-main-100);
  display: inline-block;
  padding-top: 23px;
  position: relative;
  z-index: 1;
}
.features04-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 77/13;
  width: 77px;
  left: 0;
  top: 0;
}
.features04-txt {
  padding-top: 16px;
}
.features04-ttl .ttl-deco {
  color: var(--color-white);
}
.features04-ttl .sm {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 10px;
}

/*job-desc ---------------------------------------------*/
.job-desc {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-200);
  --row-height: 80px;
}
.job-desc-ttl {
  margin-bottom: var(--ttl-mb-md);
  text-align: center;
}
.job-desc-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(18px + 16px);
  padding-bottom: 28px;
}
.job-desc-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 215/24;
  height: 16px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.job-desc-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}
.job-desc-ttl .ttl-deco::before {
  background-image: url(/img/recruit/job-desc-ttl-en.png);
}
.job-desc-table {
  width: 100%;
}
.job-desc-table:not(:last-child) {
  margin-bottom: 90px;
}
.job-desc .table-title {
  padding: 17.4px 8px;
  background: var(--color-main-100);
  color: var(--color-white);
}
.job-desc .table-title .dot {
  display: inline-block;
  padding-left: 16px;
  position: relative;
  z-index: 1;
}
.job-desc .table-title .dot::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 6/6;
  width: 6px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--color-white);
}
.job-desc-row {
  display: block;
  width: 100%;
}
.job-desc-row:not(:last-child) {
  border-bottom: 1px solid var(--color-main-100);
}
.job-desc-row:last-child .job-desc-header,
.job-desc-row:last-child .job-desc-data {
  padding-bottom: 0;
}
.job-desc-header {
  display: block;
  width: 100%;
  line-height: 30px;
  padding: calc((var(--row-height) - 30px) / 2) 8px 8px;
  color: var(--color-main-100);
}
.job-desc-data {
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 0 8px calc((var(--row-height) - 30px) / 2);
  color: var(--color-txt-100);
}

/*==========================================
news
===========================================*/
/*detail ---------------------------------------------*/
.detail .meta {
  margin-bottom: 60px;
}
.detail .date {
  margin-right: 20px;
  -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: var(--cmn-pd-md) 0;
  overflow: hidden;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  margin-bottom: var(--ttl-mb-md);
}

#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;
}

.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);
}

/*==========================================
drawer
===========================================*/
.drawer #nav {
  margin-bottom: 40px;
}
.drawer .tel-area {
  margin-bottom: 30px;
}
.drawer .tel-area .tel {
  margin-bottom: 8px;
}
.drawer .tel-area .tel-svg {
  width: 200px;
}
.drawer-btns {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}