@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: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
  color: var(--color-white);
  width: 150px;
  padding: 16px 0 18px;
  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: 15px;
  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: 232px;
  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: 580px;
  padding: 21px 0 23px;
  background: var(--color-accent-100);
}
.btn-accent-200::before, .btn-news-100::before {
  right: 19px;
}

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

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

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

.ttl-lh-1, .top-about-ttl, .top-point-ttl, .top-recruit-ttl, .top-news-ttl, .top-company-ttl, .worries-ttl, .worries02-ttl, .worries03-ttl, .voice-ttl, .sub-recruit-ttl, .job-desc-ttl, .ttl-white-lh-1, .top-movie-ttl, .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: 44px;
  line-height: 1;
  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: 40px;
  line-height: 54px;
  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: 20px;
  position: relative;
  z-index: 1;
  padding-bottom: 39px;
}
.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: 30px;
  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: 55px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
}

.sub-ttl, .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, .top-maintenance-subttl {
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.08em;
}

.sub-ttl-lh-1, .top-maintenance-subttl {
  line-height: 1;
}

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

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

.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: 18px;
  line-height: 36px;
  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: 16px;
  line-height: 32px;
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 16px;
  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: 16px;
  font-weight: var(--font-medium);
  line-height: 16px;
  letter-spacing: 0.08em;
  color: var(--color-accent-100);
}

.txt-news-ttl, .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 30px;
  font-weight: var(--font-medium);
  letter-spacing: 0.08em;
  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: 14px;
  line-height: 1;
  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: 30px;
  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: 20px;
  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, 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-400);
  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);
  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='%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: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.privacy .ttl02 {
  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;
}
#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, 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 {
  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-accent-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 60px;
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 16px;
  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: 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);
  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: -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: 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;
  max-width: 33%;
  margin-right: auto;
}
.page-btn .left a {
  display: block;
  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;
  max-width: 33%;
  margin-left: auto;
}
.page-btn .right a {
  display: block;
  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 {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

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

/*==========================================
top
===========================================*/
/*header ---------------------------------------------*/
.header {
  height: 130px;
  width: 100%;
  position: relative;
  z-index: 10;
  background: var(--color-white);
  overflow: hidden;
  padding: 20px 50px 0;
  padding: 20px clamp(0.938rem, -3.438rem + 5.47vw, 3.125rem) 0;
}
.header .logo {
  margin-top: 22px;
  width: clamp(20rem, 11.25rem + 10.94vw, 24.375rem);
}
.header-info {
  margin-bottom: 21px;
  gap: 19px;
}
.header .tel-area {
  gap: 11px;
}
.header-btns {
  gap: clamp(0.938rem, 0.188rem + 0.94vw, 1.313rem);
}
.header .nav-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
.header .nav-item {
  position: relative;
  z-index: 1;
}
.header .current {
  color: var(--color-accent-100);
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 800px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/mv-bg.png) no-repeat center center/cover;
}
.mv-catch {
  position: absolute;
  z-index: 100;
  width: 1028px;
  left: 66px;
  top: 439px;
}

/*side-btns ---------------------------------------------*/
.side-btns {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  pointer-events: none;
}
.side-btns .side-btn {
  pointer-events: auto;
  position: relative;
  right: -225px;
  width: 283px;
  -webkit-transition: right 0.2s cubic-bezier(0.2, 1, 0.66, 1);
  transition: right 0.2s cubic-bezier(0.2, 1, 0.66, 1);
  cursor: pointer;
}
.side-btns .side-btn:hover {
  right: 0;
  pointer-events: auto;
}
.side-btns .side-btn img {
  display: block;
  width: 100%;
  height: auto;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding-top: 140px;
  padding-bottom: 412px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/top-about-bg.png) no-repeat center center/cover;
}
.top-about-txtarea {
  width: 510px;
  margin-left: auto;
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.top-about-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 110/24;
  width: 110px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-about-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55px;
  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 {
  color: var(--color-main-100);
  font-weight: var(--font-bold);
}
.top-about-img {
  position: absolute;
  z-index: -1;
  right: calc(50% + clamp(2.5rem, -3.75rem + 7.81vw, 5.625rem));
  top: 140px;
  width: 872px;
}
.top-about-ill {
  position: absolute;
  z-index: -1;
  right: 197px;
  bottom: 0;
}

/*section-container ---------------------------------------------*/
.section-container {
  position: relative;
  z-index: 1;
  background: url(/img/top/top-movie-bg.png) no-repeat center top/100% 761px, url(/img/top/top-point-deco-r.png) no-repeat right top 761px/auto, url(/img/top/top-point-deco-l.png) no-repeat left bottom/auto;
}

/*top-movie ---------------------------------------------*/
.top-movie {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.top-movie-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 68/24;
  width: 68px;
  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: 55px;
  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 iframe {
  display: block;
  border: none;
  width: 100%;
  height: 608px;
}
.top-movie-img {
  position: absolute;
  z-index: -1;
  width: 540px;
  right: 50%;
  top: -481px;
}

/*top-point ---------------------------------------------*/
.top-point {
  padding-bottom: var(--cmn-pd-md);
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.top-point-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 66/24;
  width: 66px;
  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: 55px;
  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;
  gap: 41px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-point-item {
  width: 332px;
  padding: 127px 27px 27px;
  background: var(--color-main-200);
  position: relative;
  z-index: 1;
  margin-top: 236px;
}
.top-point-img {
  position: absolute;
  z-index: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  left: 50%;
  top: 96px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.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: clamp(20rem, 6.25rem + 17.19vw, 26.875rem);
  right: clamp(0.625rem, -18.625rem + 24.06vw, 10.25rem);
  top: -83px;
  background: url(/img/top/top-maintenance-ill01.png) no-repeat;
  background-size: contain;
}

/*top-maintenance ---------------------------------------------*/
.top-maintenance {
  padding: var(--cmn-pd-md) 30px;
  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(26px + 24px);
  padding-bottom: 39px;
}
.top-maintenance-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 156/24;
  width: 156px;
  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: 55px;
  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;
}
.top-maintenance-item {
  width: 100%;
  height: 620px;
  position: relative;
  z-index: 1;
}
.top-maintenance-item:nth-of-type(1) {
  margin-bottom: 10px;
}
.top-maintenance-item:nth-of-type(2) {
  margin-bottom: 50px;
}
.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 {
  width: 780px;
  padding: 60px 100px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  margin-top: 106px;
}
.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: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color-main-100);
}
.top-maintenance-subttl {
  width: 100%;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.top-maintenance-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 780px;
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-border-100);
}
.top-maintenance-txt {
  padding-top: 27px;
  margin-bottom: 51px;
}
.top-maintenance-img {
  position: absolute;
  z-index: -1;
  top: 0;
  width: max(1010px, 50vw + 50px);
  height: 620px;
}
.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;
}
.top-recruit-wrap {
  width: 100%;
  padding: 80px 250px;
  position: relative;
  z-index: 1;
}
.top-recruit-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 83.3% 0, 100% 32.8%, 100% 100%, 16.7% 100%, 0 67.2%);
  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(26px + 24px);
  padding-bottom: 39px;
}
.top-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  width: 92px;
  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: 55px;
  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 {
  text-align: center;
  margin-bottom: 35px;
}
.top-recruit-img {
  position: absolute;
  z-index: -1;
  left: 35px;
  bottom: -16px;
}

/*news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-xs) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 70px;
}
.top-news-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(26px + 24px);
  padding-bottom: 39px;
}
.top-news-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 60/24;
  width: 60px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-news-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55px;
  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;
}
.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-company ---------------------------------------------*/
.top-company {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-200);
  position: relative;
  z-index: 1;
}
.top-company::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 417/310;
  width: 417px;
  right: 252px;
  top: -52px;
  background: url(/img/top/top-company-img.png) no-repeat;
  background-size: contain;
}
.top-company-ttl {
  margin-bottom: var(--ttl-mb-sm);
  margin-left: 100px;
}
.top-company-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: calc(26px + 24px);
  padding-bottom: 39px;
}
.top-company-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  width: 120px;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-company-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55px;
  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-table {
  width: 100%;
  max-width: 548px;
  margin-left: 100px;
}
.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: 172px;
  padding: 17px 0;
  padding-left: 28px;
  padding-right: 28px;
  color: var(--color-main-100);
}
.top-company-data {
  padding: 17px 0;
  color: var(--color-txt-100);
}
.top-company-data .tel-svg {
  display: inline-block;
  margin-left: 8px;
  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: 554px;
  height: 756px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*footer ---------------------------------------------*/
.footer {
  padding: var(--cmn-pd-xs) 0;
}
.footer-wrap {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.footer-logo {
  width: 354px;
  margin-bottom: 36px;
}
.footer address {
  line-height: 1;
  margin-bottom: 25px;
}
.footer .opening {
  line-height: 1;
}
.footer .sns-btn {
  margin-top: auto;
}
.footer .tel-area {
  margin-bottom: 30px;
}
.footer .tel-area .tel {
  margin-bottom: 11px;
}
.footer-btns {
  gap: 21px;
  margin-bottom: 37px;
}
.footer-nav {
  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: 12px;
  margin-bottom: 48px;
}
.footer .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.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: 531px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color-white);
}
.sv-wrap {
  width: 100%;
  height: 100%;
}
.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;
  left: calc(50% + 239px);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
.sv-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 762px;
  height: 92px;
  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;
}

/*==========================================
duct
===========================================*/
/*worries ---------------------------------------------*/
.worries {
  padding-top: var(--cmn-pd-md);
  padding-bottom: 180px;
  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: 558px;
  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(26px + 24px);
  padding-bottom: 39px;
}
.worries-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 107/24;
  width: 107px;
  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: 55px;
  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: 50px 50px 150px;
  background: var(--color-main-200);
  position: relative;
  margin-bottom: 127px;
}
.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%);
}
.worries-item {
  width: 100%;
  border-bottom: 1px solid var(--color-border-100);
  padding: 10px 100px;
  line-height: 40px;
  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: 24px;
  color: var(--color-main-100);
}
.worries .check-mark {
  display: inline-block;
  padding-left: 38px;
  position: relative;
  z-index: 1;
}
.worries .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 23px;
  left: 0;
  top: 23px;
  -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%);
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.service-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  width: 92px;
  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: 55px;
  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 {
  font-size: 34px;
}
.service-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.service-item {
  width: 100%;
  padding: 30px;
  padding-left: 34px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-100);
  position: relative;
  z-index: 1;
}
.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%;
  margin-top: 15px;
}
.service-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-100);
}
.service-txt {
  padding-top: 14px;
}
.service-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 46px;
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.features-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  width: 120px;
  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: 55px;
  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;
  -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: 520px;
  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: 180px;
  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: 558px;
  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(26px + 24px);
  padding-bottom: 39px;
}
.worries02-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 107/24;
  width: 107px;
  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: 55px;
  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: 50px 50px 150px;
  background: var(--color-main-200);
  position: relative;
  margin-bottom: 127px;
}
.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%);
}
.worries02-item {
  width: 100%;
  border-bottom: 1px solid var(--color-border-100);
  padding: 10px 100px;
  line-height: 40px;
  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: 24px;
  color: var(--color-main-100);
}
.worries02 .check-mark {
  display: inline-block;
  padding-left: 38px;
  position: relative;
  z-index: 1;
}
.worries02 .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 23px;
  left: 0;
  top: 23px;
  -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%);
}
.worries02-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worries02-item {
  padding-left: 167px;
}
.worries02-img {
  bottom: 15px;
}

/*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(26px + 24px);
  padding-bottom: 39px;
}
.service02-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  width: 92px;
  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: 55px;
  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 {
  font-size: 34px;
}
.service02-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.service02-item {
  width: 100%;
  padding: 30px;
  padding-left: 34px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-100);
  position: relative;
  z-index: 1;
}
.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%;
  margin-top: 15px;
}
.service02-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-100);
}
.service02-txt {
  padding-top: 14px;
}
.service02-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 46px;
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.features02-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  width: 120px;
  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: 55px;
  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;
  -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: 520px;
  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: 180px;
  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: 558px;
  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(26px + 24px);
  padding-bottom: 39px;
}
.worries03-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 107/24;
  width: 107px;
  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: 55px;
  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: 50px 50px 150px;
  background: var(--color-main-200);
  position: relative;
  margin-bottom: 127px;
}
.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%);
}
.worries03-item {
  width: 100%;
  border-bottom: 1px solid var(--color-border-100);
  padding: 10px 100px;
  line-height: 40px;
  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: 24px;
  color: var(--color-main-100);
}
.worries03 .check-mark {
  display: inline-block;
  padding-left: 38px;
  position: relative;
  z-index: 1;
}
.worries03 .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 23px;
  left: 0;
  top: 23px;
  -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%);
}
.worries03-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worries03-item {
  padding-left: 241px;
}
.worries03-img {
  bottom: 99px;
}

/*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(26px + 24px);
  padding-bottom: 39px;
}
.service03-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 92/24;
  width: 92px;
  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: 55px;
  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 {
  font-size: 34px;
}
.service03-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.service03-item {
  width: 100%;
  padding: 30px;
  padding-left: 34px;
  background: var(--color-white);
  border-left: 4px solid var(--color-main-100);
  position: relative;
  z-index: 1;
}
.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%;
  margin-top: 15px;
}
.service03-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-100);
}
.service03-txt {
  padding-top: 14px;
}
.service03-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 46px;
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.features03-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  width: 120px;
  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: 55px;
  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;
  -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: 520px;
  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(26px + 24px);
  padding-bottom: 39px;
}
.voice-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 69/24;
  width: 69px;
  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: 55px;
  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 40px;
  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: 520px;
  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;
  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: 558px;
  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(26px + 24px);
  padding-bottom: 39px;
}
.sub-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 101/24;
  width: 101px;
  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: 55px;
  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: 50px 60px 50px 40px;
  position: relative;
}
.sub-recruit-item {
  width: 100%;
  padding: 12px 30px;
  padding-left: 400px;
  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: 38px;
  position: relative;
  z-index: 1;
}
.sub-recruit .check-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 23/19;
  width: 23px;
  left: 0;
  top: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-accent.png) no-repeat;
  background-size: contain;
}
.sub-recruit-img {
  position: absolute;
  right: calc(50% + 140px);
  bottom: 0;
  width: 343px;
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.features04-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 120/24;
  width: 120px;
  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: 55px;
  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;
  -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: 520px;
  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 {
  font-size: 34px;
}

/*job-desc ---------------------------------------------*/
.job-desc {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-200);
}
.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(26px + 24px);
  padding-bottom: 39px;
}
.job-desc-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 215/24;
  width: 215px;
  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: 55px;
  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: 12px 25px;
  background: var(--color-main-100);
  color: var(--color-white);
}
.job-desc .table-title .dot {
  display: inline-block;
  padding-left: 20px;
  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 {
  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 {
  line-height: 33px;
  width: 207px;
  padding: 18.5px 28px;
  color: var(--color-main-100);
}
.job-desc-data {
  line-height: 33px;
  padding: 18.5px 0;
  color: var(--color-txt-100);
}

/*==========================================
news
===========================================*/
/*detail ---------------------------------------------*/
.detail .meta {
  margin-bottom: 72px;
}
.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;
}