@charset "UTF-8";
:root {
  /*fonts*/
  --font-main: Zen Kaku Gothic Antique, sans-serif;
  --font-sub: 游明朝, Yu Mincho, YuMincho, Zen Old Mincho, serif;
  /*colors*/
  --color-main-100: #2cfdda;
  --color-main-200: #19d7b7;
  --color-main-300: #000;
  --color-main-400: #000;
  --color-accent-100: #000;
  --color-txt-100: #222222;
  --color-txt-200: #000;
  --color-base-100: #e9fffb;
  --color-base-200: #f7f6ea;
  --color-base-300: #ecf7f5;
  --color-base-400: #f2f2f2;
  --color-base-500: #b3b3b3;
  --color-border-100: #d9d9d9;
  --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;
  --color-txt-temp: #333333;
  --color-link-temp: #0066bb;
}
@media screen and (min-width: 767px) {
  :root {
    /*==========================================
    767px以上のとき
    ===========================================*/
    /*padding magin*/
    --cmn-pd-3s: 60px;
    --cmn-pd-xxs: 70px;
    --cmn-pd-xs: 80px;
    --cmn-pd-sms: 100px;
    --cmn-pd-sm: 120px;
    --cmn-pd-md: 140px;
    --ttl-mb-md: 50px;
    --cmn-radius-md: 5px ;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /*==========================================
    767px以下のとき
    ===========================================*/
    /*padding magin*/
    --cmn-pd-3s: 60px;
    --cmn-pd-xxs: 70px;
    --cmn-pd-xs: 80px;
    --cmn-pd-sms: 100px;
    --cmn-pd-sm: 120px;
    --cmn-pd-md: 140px;
    --ttl-mb-md: 50px;
    --cmn-radius-md: 5px ;
  }
}

/*pc ---------------------------------------------*/
/*common-worries ---------------------------------------------*/
/*common-request ---------------------------------------------*/
/*sp ---------------------------------------------*/
/*common-worries ---------------------------------------------*/
/*common-request ---------------------------------------------*/
/* 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-weight -------------------------------------------------*/
/* font-family -------------------------------------------------*/
.font-main {
  font-family: Zen Kaku Gothic Antique, sans-serif;
}

.font-sub {
  font-family: 游明朝, Yu Mincho, YuMincho, Zen Old Mincho, 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-accent-100 {
  color: var(--color-accent-100);
}

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

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

.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-border-100 {
  color: var(--color-border-100);
}

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

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

/* common ---------------------------------------------- */
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0em;
  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;
}

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

.visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  top: 0px !important;
  left: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
   before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
  visibility: visible !important;
}

/*==========================================
767px以上のとき
===========================================*/
@media screen and (min-width: 767px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
/*==========================================
767px以下のとき
===========================================*/
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
}
/*==================================================
 入力フィールド
================================================== */
select,
textarea,
input[type=tel],
input[type=text],
input[type=email],
input[type=url] {
  max-width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
          box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  width: 100%;
}

/* ボタン
-------------------------------------------------- */
input[type=button],
input[type=submit] {
  /* background: var(--color-main); */
  background: var(--color-main, var(--color-txt-temp));
  color: var(--color-white);
  font-family: var(--font-main);
  margin: 0 4px;
  padding: 1em 2em;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  -webkit-appearance: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*==================================================
 テーブル
================================================== */
.contact-form-table {
  margin: 0 0 16px;
}

/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}
/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5em;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #e74c3c;
}

.sec-error-link {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 4vw;
  }
  .sec-error-link {
    font-size: 5vw;
  }
}
/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  padding: 2px 4px;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  float: right;
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #e74c3c;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #e74c3c;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 16px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* リキャプチャ */
.contact-recaptcha-wrap {
  margin: 16px auto;
  display: table;
}

/*==================================================
 日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
 画像アップロードフォーム
================================================== */
.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type=file] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #e74c3c;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}

.btn, .btn-footer, .btn-xthin-sm-main200, .btn-top-news, .btn-reg-md-main200, .btn-thin-xs-main200 {
  display: block;
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-thin-xs-main200 {
  width: 260px;
  color: var(--color-white);
  padding: 17.5px 10px;
  background: var(--color-main-200);
}
.btn-thin-xs-main200 .btn-cont {
  padding-left: 8px;
  margin-left: 20px;
  position: relative;
  z-index: 1;
}
.btn-thin-xs-main200 .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 14px;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/mail-icon.png) no-repeat;
  background-size: contain;
}

.btn-reg-md-main200 {
  width: 320px;
  color: var(--color-white);
  padding: 20px 18px;
  background: var(--color-main-200);
  text-align: left;
  position: relative;
  z-index: 1;
}
.btn-reg-md-main200::before {
  content: "";
  position: absolute;
  aspect-ratio: 24/24;
  width: 24px;
  right: 8px;
  top: 50%;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-bg-white.png) no-repeat;
  background-size: contain;
}

.btn-xl-line {
  display: block;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
  text-align: center;
  position: relative;
  z-index: 1;
  width: 640px;
  border-radius: 5px;
  color: var(--color-txt-100);
  text-transform: capitalize;
  padding: 35px 30px;
  background: var(--color-white);
  border: 4px solid var(--color-main-200);
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn-xl-line .btn-cont {
  padding-left: 23px;
  padding-right: 15px;
  margin-left: 37px;
  margin-right: 24px;
  position: relative;
  z-index: 1;
}
.btn-xl-line .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 37/37;
  width: 37px;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/line-icon.png) no-repeat;
  background-size: contain;
}
.btn-xl-line .btn-cont::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 24/24;
  width: 24px;
  right: 0;
  top: calc(50% + 1px);
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(/img/common/arw-bg-main.png) no-repeat;
  background-size: contain;
}

.btn-thick-white {
  display: block;
  font-family: var(--font-main);
  letter-spacing: 0.1em;
  font-weight: var(--font-bold);
  text-align: center;
  position: relative;
  z-index: 1;
  width: 340px;
  height: 80px;
  color: var(--color-txt-100);
  text-transform: capitalize;
  background: var(--color-white);
  border: 1px solid var(--color-border-100);
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-top-news {
  width: 240px;
  color: var(--color-white);
  padding: 20px 10px;
  background: var(--color-main-200);
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn-top-news::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 24/24;
  width: 24px;
  right: 10px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-bg-white.png) no-repeat;
  background-size: contain;
}

.btn-xthin-sm-main200 {
  width: 280px;
  color: var(--color-white);
  padding: 15px 10px;
  background: var(--color-main-200);
  text-align: center;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

/*btn-footer ---------------------------------------------*/
.btn-footer {
  line-height: 26px;
  width: 240px;
  height: 70px;
  color: var(--color-txt-100);
  background: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 24/24;
  width: 24px;
  right: 8px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-bg-main.png) no-repeat;
  background-size: contain;
}

/*コモンテキスト --------------------------------*/
.txt, .top-about-txt, .top-contact-txt, .request .cont-item, .house-request .cont-item, .air-conditioner-request .cont-item, .faq .empty-message, .txt-lg, .greeting-details, .history-header, .txt02, .top-area-txt, .top-area-list, .top-flow-txt, .biz-cont-txt, .strengths-txt, .greeting-txt, .worries-txt, .request-txt, .request-close, .house-worries-txt, .house-request-txt, .house-request-close, .air-conditioner-worries-txt, .air-conditioner-request-txt, .air-conditioner-request-close, .faq-definition {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 40px;
  letter-spacing: 0.1em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt02, .top-area-txt, .top-area-list, .top-flow-txt, .biz-cont-txt, .strengths-txt, .greeting-txt, .worries-txt, .request-txt, .request-close, .house-worries-txt, .house-request-txt, .house-request-close, .air-conditioner-worries-txt, .air-conditioner-request-txt, .air-conditioner-request-close, .faq-definition {
  line-height: 36px;
}

.txt-lg, .greeting-details, .history-header {
  font-size: 20px;
  line-height: 34px;
}

.txt-sm, .com-info-header, .com-info-data, .history-data, .cases-lead, .cases-txt, .txt-news-ttl, .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt-xs, .footer .address {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0.02em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

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

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

.txt-news-ttl, .top-news-item-ttl {
  line-height: 30px;
  font-weight: var(--font-normal);
  letter-spacing: 0;
}

.txt-hd-nav {
  font-family: var(--font-sub);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-txt-100);
  font-weight: var(--font-normal);
}

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

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-lg, .tel-white {
  font-family: var(--font-sub);
  font-size: 28px;
  font-weight: var(--font-normal);
  position: relative;
  line-height: 1;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-txt-100);
}
.tel-num {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.tel-subtxt {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 21px;
  font-weight: var(--font-normal);
  position: relative;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--color-txt-100);
}

.tel-svg img {
  display: block;
}

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

.tel-lg {
  font-size: 34px;
}

.ttl, .ttl-xs, .ttl-lg, .ttl-sm {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 40px;
  line-height: 70px;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
}

.ttl-sm {
  font-size: 35px;
}

.ttl-lg {
  font-size: 46px;
  letter-spacing: 0.06em;
}

.ttl-xs {
  font-size: 30px;
  letter-spacing: 0.06em;
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-sub);
  font-size: 42px;
  line-height: 54px;
  letter-spacing: 0.12em;
  color: var(--color-txt-100);
  font-weight: var(--font-light);
  position: relative;
  z-index: 1;
  text-shadow: 2.1213203436px 2.1213203436px 0px white;
}

.ttl-temp, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  font-family: var(--font-sub);
  font-size: 50px;
  line-height: 54px;
  letter-spacing: 0.1em;
  color: var(--color-txt-100);
  font-weight: var(--font-normal);
  position: relative;
  z-index: 1;
}

/*コモンサブタイトル --------------------------------*/
.sub-ttl, .top-feasible-subttl, .request-subttl, .house-request-subttl, .air-conditioner-request-subttl, .cases-item-subttl, .sub-ttl-lg, .strengths-subttl, .sub-ttl-xs, .top-flow-subttl, .top-contact .tel-sub-txt, .worries-subttl, .house-worries-subttl, .air-conditioner-worries-subttl, .cases-item .en, .faq-term {
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.1em;
}

.sub-ttl-xs, .top-flow-subttl, .top-contact .tel-sub-txt, .worries-subttl, .house-worries-subttl, .air-conditioner-worries-subttl, .cases-item .en, .faq-term {
  color: var(--color-txt-100);
  font-size: 24px;
  line-height: 32px;
}

.sub-ttl-lg, .strengths-subttl {
  font-size: 32px;
  line-height: 40px;
  color: var(--color-txt-100);
  letter-spacing: 0.1em;
}

/*下層ページ固定スタイル ---------------------------------------------*/
/*==========================================
site-map
===========================================*/
.site-map {
  padding: var(--cmn-pd-md, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  color: var(--color-txt-100, var(--color-txt-temp));
}
.site-map-item {
  border-bottom: 1px solid var(--color-txt-100, var(--color-txt-temp));
  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 {
  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-txt-100, var(--color-txt-temp));
}
.notfound-txt a {
  color: var(--color-main-200, var(--color-link-temp));
  text-decoration: underline;
}

/*==========================================
bread-clumb
===========================================*/
.bread-clumb {
  padding: 15px 0;
  overflow: hidden;
}
.bread-clumb-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bread-clumb-item {
  font-size: 14px;
  color: var(--color-txt-100, var(--color-txt-temp));
}
.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 {
  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-txt-100, var(--color-txt-temp));
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-txt-100, var(--color-txt-temp));
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-txt-100, var(--color-txt-temp));
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*==========================================
contact
===========================================*/
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}

#contact table tr td,
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
}

#contact table tr th {
  width: 30%;
  color: #fff;
  background: var(--color-main-200, var(--color-txt-temp));
}

#contact table tr td {
  width: 70%;
  background: #fff;
}

#contact table .required-mark {
  color: var(--color-main-200, var(--color-txt-temp));
  font-size: 13px;
  border-radius: 0;
  background: #fff;
}

@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td,
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
  }
  #contact table tr th {
    width: 100%;
    color: #fff;
    background: var(--color-main-200, var(--color-txt-temp));
  }
  #contact table tr td {
    width: 100%;
    background: #fff;
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-main-200, var(--color-txt-temp));
    font-size: 3.5vw;
    border-radius: 0;
    background: #fff;
  }
}
#contact label[for=agree] a {
  color: var(--color-main-200);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-main-200);
}

#contact .contact-btn.contact-submits-wrap button[type=button] {
  border: unset;
  background: var(--color-main-200, var(--color-txt-temp));
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

#contact .contact-btn.contact-submits-wrap button[type=button]:hover {
  opacity: 0.6;
}

#contact input[type=button],
#contact input[type=submit] {
  color: #fff;
  background: var(--color-main-200, var(--color-txt-temp));
  font-size: 16px;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

@media screen and (max-width: 768px) {
  #contact input[type=button],
  #contact input[type=submit] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact input[type=button]:hover,
#contact input[type=submit]:hover {
  opacity: 0.7;
}

#contact button[type=button] {
  color: #fff;
  background: var(--color-main-200, var(--color-txt-temp));
  font-size: 16px;
  margin: 0 4px;
  padding: 1em 2em;
  cursor: pointer;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

@media screen and (max-width: 768px) {
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact button[type=button] :hover {
  opacity: 0.7;
}

#contact input[type=button][disabled],
#contact input[type=submit][disabled] {
  color: #777;
  opacity: 0.7;
  background: #ccc;
}

/*==========================================
complete
===========================================*/
.complete {
  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-txt-100, var(--color-txt-temp));
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-main-200, var(--color-link-temp));
  text-decoration: underline;
}

/*pagenation ---------------------------------------------*/
.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 ---------------------------------------------*/
.tag-change {
  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;
  background: #eee;
  color: #b3b3b3;
}
.tag-change li a {
  display: block;
  padding: 12px 26px;
}
.tag-change .current {
  color: var(--color-white);
  background: #19d7b7;
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

/*==========================================
common
===========================================*/
.cmn-txt-mb {
  margin-bottom: 36px;
}

/*==========================================
top
===========================================*/
/*header ---------------------------------------------*/
.header {
  height: 120px;
  position: relative;
  z-index: 10;
  background: var(--color-main-100);
  padding: 9px 24px 0;
}
.header .logo {
  margin-top: 22px;
  margin-left: 5px;
}
.header-info {
  margin-bottom: 19px;
  gap: 19px;
}
.header .tel {
  margin-bottom: 8px;
}
.header .nav-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}
.header .nav-item {
  position: relative;
  z-index: 1;
}
/*mv ---------------------------------------------*/
.mv {
  --mv-height: 840px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color-main-100);
}
.mv::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1360px;
  height: 800px;
  left: calc(50% - 460px);
  top: 0;
  background: url(/img/top/mv-bg.png) no-repeat;
}
.mv::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  right: calc(50% + 490px);
  bottom: 40px;
  background: url(/img/top/mv-sub-bg.png) no-repeat;
}
.mv-catch {
  position: absolute;
  z-index: 100;
  left: max(50% - 915px, 45px);
  top: 200px;
  width: 424px;
}

/*side-btn ---------------------------------------------*/
.side-btn {
  z-index: 100;
  position: fixed;
  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;
  right: 0;
  bottom: 30px;
}
.side-btn-item:nth-child(1) {
  margin-bottom: 50px;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: var(--cmn-pd-md) 0;
  background-color: var(--color-base-100);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 400/400;
  width: 400px;
  right: 0;
  top: 0;
  background: url(/img/top/top-about-deco.png) no-repeat;
  background-size: contain;
}
.top-about-ttl {
  margin-right: 85px;
  gap: 34px;
  margin-bottom: 200px;
}
.top-about-img {
  position: absolute;
  z-index: -1;
}
.top-about-img:nth-of-type(1) {
  width: 1130px;
  height: 760px;
  right: calc(50% - 250px);
  top: 30px;
}
.top-about-img:nth-of-type(2) {
  width: 260px;
  height: 420px;
  left: calc(50% + 660px);
  top: 240px;
}
.top-about-img:nth-of-type(3) {
  width: 420px;
  height: 280px;
  left: calc(50% + 500px);
  top: 600px;
}
.top-about .btn-reg-md-main200 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 45px;
}

/*top-area ---------------------------------------------*/
.top-area {
  position: relative;
  z-index: 1;
}
.top-area-wrap {
  width: 1000px;
  background: var(--color-base-200);
  padding: 45px 60px;
  position: relative;
  z-index: 1;
}
.top-area-ttl {
  margin-bottom: 35px;
}
.top-area-list {
  margin-top: 9px;
  margin-bottom: 5px;
  list-style: none;
  padding-left: 0;
}
.top-area-item {
  position: relative;
  z-index: 1;
}
.top-area-item::before {
  content: "●";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
  color: var(--color-main-100);
}
.top-area-item .bold {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: var(--font-bold);
}
.top-area-img {
  position: absolute;
  z-index: -1;
  right: 92px;
  top: -37px;
}

/*top-feasible ---------------------------------------------*/
.top-feasible {
  margin-top: 170px;
}
.top-feasible-ttl {
  text-align: center;
  margin-bottom: 54px;
}
.top-feasible-ttl .side-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.top-feasible-ttl .side-border::before {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-main-200);
}
.top-feasible-ttl .side-border::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-main-200);
}
.top-feasible-ttl .side-border .cont {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 34px;
}
.top-feasible-list {
  width: 100%;
  gap: 30px;
  padding-bottom: 47px;
  position: relative;
  z-index: 1;
}
.top-feasible-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 3px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-200);
  background-size: contain;
}
.top-feasible-item {
  width: 340px;
  height: 380px;
  background: var(--color-base-200);
  padding: 30px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.top-feasible-subttl {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 34px;
}
.top-feasible-img {
  position: absolute;
  z-index: -1;
  top: 176px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*top-bg-wrapper ---------------------------------------------*/
.top-bg-wrapper {
  padding-top: var(--cmn-pd-md);
  padding-bottom: var(--cmn-pd-sm);
  position: relative;
  z-index: 1;
}
.top-bg-wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 701/700;
  width: 701px;
  left: 0;
  top: 0;
  background: url(/img/top/top-area-deco-l.png) no-repeat;
  background-size: contain;
}
.top-bg-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 700/700;
  width: 700px;
  right: 0;
  bottom: 0;
  background: url(/img/top/top-area-deco-r.png) no-repeat;
  background-size: contain;
}

/*top-flow ---------------------------------------------*/
.top-flow {
  padding: var(--cmn-pd-xxs) 0;
  background: var(--color-base-300);
}
.top-flow-ttl {
  margin-bottom: 30px;
}
.top-flow-txt {
  margin-bottom: 53px;
}
.top-flow-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 30px;
  margin-bottom: 65px;
}
.top-flow-item {
  width: 340px;
  text-align: center;
  padding-top: 17px;
  position: relative;
  z-index: 1;
}
.top-flow .item-wrapper {
  width: 100%;
  height: 120px;
  background: var(--color-main-100);
  border: 3px solid var(--color-main-200);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--cmn-radius-md);
}
.top-flow .item-wrapper .num {
  width: 40px;
  height: 40px;
  background: var(--color-main-200);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 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;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-flow-subttl {
  line-height: 32px;
}
.top-flow-subttl .sm {
  font-size: 21px;
}
.top-flow-subttl .md {
  font-size: 22px;
}
.top-flow .btn-xl-line {
  margin: 0 auto;
}

/*top-contact ---------------------------------------------*/
.top-contact {
  padding-top: var(--cmn-pd-xs);
  padding-bottom: var(--cmn-pd-md);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-contact-body {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}
.top-contact-ttl {
  margin-bottom: 47px;
}
.top-contact-txt {
  margin-bottom: 27px;
}
.top-contact .tel-items {
  gap: 27px;
  margin-bottom: 37px;
}
.top-contact .tel-sub-txt {
  width: 340px;
  color: var(--color-white);
  background: var(--color-main-200);
  border-radius: var(--cmn-radius-md);
  font-family: var(--font-sub);
  font-weight: var(--font-normal);
  line-height: 36px;
  padding: 22px 10px;
  padding-left: 27px;
  position: relative;
  z-index: 1;
}
.top-contact .tel-sub-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 28/42;
  width: 28px;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-main-grad.png) no-repeat;
  background-size: contain;
}
.top-contact .tel-sub-txt .sm {
  font-size: 21px;
}
.top-contact .tel-lg {
  margin-bottom: 10px;
}
.top-contact-links {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.top-contact-links .btn-thick-white:nth-child(1) {
  font-size: 20px;
  letter-spacing: 0.04em;
}
.top-contact-links .btn-thick-white:nth-child(2) {
  font-size: 18px;
  letter-spacing: 0.04em;
}
.top-contact-links .btn-thick-white:nth-child(2) .sm {
  font-size: 16px;
}
.top-contact-img:nth-of-type(1) {
  position: absolute;
  z-index: -1;
  width: 700px;
  height: 620px;
  right: calc(50% + 220px);
  top: 0;
}
.top-contact-img:nth-of-type(2) {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 620px;
  bottom: 0;
  left: calc(50% + 600px);
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-3s) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color-main-100);
}
.top-news-heading {
  margin-bottom: 57px;
}
.top-news-list {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--cmn-radius-md);
  padding: 40px 40px 43px;
  gap: 50px;
}
.top-news-item {
  width: 100%;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-img {
  width: 300px;
  height: 220px;
  margin-bottom: 19px;
}
.top-news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.top-news-item .meta {
  margin-bottom: 13px;
}
.top-news-item .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 8px;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-news-item .tag {
  padding: 0 8px;
}
.top-news-item .tag:first-child {
  border-left: 1px solid var(--color-txt-100);
}
.top-news-item .tag:last-child {
  padding-right: 0;
}
.top-news-item .tag:not(:last-child) {
  border-right: 1px solid var(--color-txt-100);
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: 41px;
  padding-bottom: 31px;
  background: var(--color-main-100);
}
.footer-contents {
  margin-bottom: 47px;
}
.footer-info {
  margin-bottom: 17px;
}
.footer-logo {
  display: block;
  margin-right: 65px;
}
.footer-links {
  margin-right: 100px;
  gap: 30px;
}
.footer .tel-area {
  margin-right: 39px;
}
.footer .tel-area .tel-lg {
  margin-bottom: 10px;
}
.footer .address {
  line-height: 1;
  padding-bottom: 20px;
}
.footer-nav {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 31px;
}
.footer-nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/footer-border.png) no-repeat;
  background-size: contain;
}
.footer .nav-list {
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .copy-wrapper {
  width: 100%;
  text-align: center;
}
.footer .copy {
  font-family: var(--font-main);
  font-weight: var(--font-normal);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-txt-100);
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 360px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.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: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sv-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 120px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--color-main-100);
  border: 3px solid var(--color-main-200);
}
.sv-ttl .shadow {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-shadow: 2.1213203436px 2.1213203436px 0px white;
}

/*==========================================
about
===========================================*/
/*biz-cont ---------------------------------------------*/
.biz-cont {
  padding: var(--cmn-pd-sms) 0;
  background: var(--color-base-100);
}
.biz-cont-ttl {
  margin-bottom: 37px;
}
.biz-cont-subttl {
  margin-bottom: 37px;
}
.biz-cont-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
}

/*strengths ---------------------------------------------*/
.strengths {
  padding-top: var(--cmn-pd-sms);
  padding-bottom: var(--cmn-pd-md);
}
.strengths-ttl {
  text-align: center;
  margin-bottom: 54px;
}
.strengths-ttl .side-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.strengths-ttl .side-border::before {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-main-200);
}
.strengths-ttl .side-border::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-main-200);
}
.strengths-ttl .side-border .cont {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 34px;
}
.strengths-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-bottom: 46px;
  border-bottom: 3px solid var(--color-main-200);
}
.strengths-item {
  width: 340px;
  background: var(--color-base-200);
  position: relative;
  z-index: 1;
  padding: 192px 20px 40px;
}
.strengths-img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 105px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.strengths-img img {
  max-width: none;
  width: auto;
  height: auto;
  display: block;
}
.strengths-subttl {
  margin-bottom: 18px;
  text-align: center;
}
.strengths-subttl .sm {
  font-size: 24px;
}
/*greeting ---------------------------------------------*/
.greeting {
  padding-bottom: var(--cmn-pd-sm);
}
.greeting-ttl {
  margin-bottom: 80px;
}
.greeting-subttl {
  margin-bottom: 40px;
}
.greeting-img {
  margin-bottom: 20px;
  width: 320px;
  height: 500px;
}
.greeting-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greeting-details {
  font-family: var(--font-sub);
  line-height: 36px;
  margin-top: 36px;
  margin-left: auto;
}

/*com-info ---------------------------------------------*/
.com-info {
  padding-top: var(--cmn-pd-xs);
  padding-bottom: var(--cmn-pd-sm);
  background: var(--color-main-100);
  --table-padding: 40px;
}
.com-info-ttl {
  margin-bottom: 67px;
}
.com-info .table-wrapper {
  width: 100%;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  border-radius: 5px;
  padding: var(--table-padding);
}
.com-info-table {
  width: 100%;
}
.com-info-row {
  width: 100%;
}
.com-info-row:not(:last-child) .com-info-header,
.com-info-row:not(:last-child) .com-info-data {
  border-bottom: 1px solid var(--color-border-100);
}
.com-info-row:first-child .com-info-header,
.com-info-row:first-child .com-info-data {
  padding-top: 0;
}
.com-info-row:last-child .com-info-header,
.com-info-row:last-child .com-info-data {
  padding-bottom: 0;
}
.com-info-header {
  line-height: 32px;
  width: calc(240px - var(--table-padding));
  padding: 14px 9px;
  padding-right: 20px;
}
.com-info-header .deco {
  position: relative;
  z-index: 1;
  padding-left: 11px;
  padding-right: 4px;
}
.com-info-header .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 4px;
  height: 24px;
  left: 0;
  top: 0;
  border-radius: 50px;
  background: var(--color-main-200);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-size: contain;
}
.com-info-data {
  line-height: 32px;
  padding: 14px 0;
}
.com-info-data .tel-svg {
  display: block;
  margin-top: 10px;
  margin-bottom: 7px;
}
.com-info-data .tel-svg img {
  display: block;
}
.com-info-data .tel-link {
  display: block;
}

/*history ---------------------------------------------*/
.history {
  padding-bottom: var(--cmn-pd-sms);
  background: var(--color-main-100);
}
.history-ttl {
  margin-bottom: 67px;
}
.history .table-wrapper {
  width: 100%;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  border-radius: 5px;
  padding: 40px;
}
.history-table {
  width: 100%;
}
.history-row {
  width: 100%;
}
.history-row:first-child .com-info-header,
.history-row:first-child .com-info-data {
  padding-top: 0;
}
.history-header {
  line-height: 32px;
  color: var(--color-white);
  font-weight: var(--font-bold);
  width: 175px;
  padding: 21.5px 13px;
  padding-right: 0;
  border-bottom: 1px solid var(--color-border-100);
}
.history-header .bg {
  display: inline-block;
  padding: 0px 8px;
  border-radius: 2px;
  background: var(--color-main-200);
}
.history-data {
  line-height: 32px;
  padding: 21.5px 0;
  border-bottom: 1px solid var(--color-border-100);
}
.history-data .tel-svg {
  display: block;
  margin-top: 10px;
  margin-bottom: 7px;
}
.history-data .tel-svg img {
  display: block;
}
.history-data .tel-link {
  display: block;
}
.history .map-ttl {
  margin-top: var(--cmn-pd-sms);
  margin-bottom: 28px;
}
.history .map-ttl span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 6px;
}
.history .map-ttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/23;
  width: 19px;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: url(/img/about/mappin.png) no-repeat;
  background-size: contain;
}
.history iframe {
  display: block;
  width: 100%;
  border: none;
  height: 400px;
}

/*==========================================
interior
===========================================*/
/*worries ---------------------------------------------*/
.worries {
  padding-top: var(--cmn-pd-xs);
  padding-bottom: var(--cmn-pd-sm);
  background: var(--color-base-100);
}
.worries-ttl {
  margin-bottom: 64px;
}
.worries-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 70px;
}
.worries-item {
  width: 340px;
  background: var(--color-white);
  padding-top: 182px;
  padding-bottom: 36px;
  position: relative;
  z-index: 1;
}
.worries-img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 95px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.worries-img img {
  max-width: none;
}
.worries-subttl {
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
}
.worries-subttl .sm {
  font-size: 20px;
}
/*request ---------------------------------------------*/
.request {
  padding-top: var(--cmn-pd-sms);
  padding-bottom: 160px;
}
.request-ttl {
  margin-bottom: 70px;
}
.request-txt {
  margin-bottom: 70px;
}
.request-list {
  width: 100%;
  gap: 60px;
}
.request-item {
  width: 100%;
  background: var(--color-base-200);
  padding: 30px;
}
.request-item:nth-of-type(odd) .request-img {
  margin-right: 45px;
}
.request-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 42px;
}
.request-item:nth-of-type(even) .request-img {
  margin-left: 30px;
}
.request-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.request-subttl {
  margin-top: 30px;
  margin-bottom: 42px;
}
.request .cont-list {
  width: 100%;
  padding-left: 0;
}
.request .cont-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 10px;
  margin-left: 1em;
  position: relative;
  z-index: 1;
}
.request .cont-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 16/16;
  width: 1em;
  left: 0;
  top: 21px;
  border-radius: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: var(--color-main-100);
  background-size: contain;
}
.request-close {
  margin-top: 60px;
}

/*==========================================
house
===========================================*/
/*house-worries ---------------------------------------------*/
.house-worries {
  padding-top: var(--cmn-pd-xs);
  padding-bottom: var(--cmn-pd-sm);
  background: var(--color-base-100);
}
.house-worries-ttl {
  margin-bottom: 64px;
}
.house-worries-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 70px;
}
.house-worries-item {
  width: 340px;
  background: var(--color-white);
  padding-top: 182px;
  padding-bottom: 36px;
  position: relative;
  z-index: 1;
}
.house-worries-img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 95px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.house-worries-img img {
  max-width: none;
}
.house-worries-subttl {
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
}
.house-worries-subttl .sm {
  font-size: 20px;
}
.house-worries-list {
  display: grid;
  grid-template-columns: repeat(2, 340px);
  gap: 40px 30px;
  width: 100%;
  margin-bottom: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}
.house-worries-subttl .xs {
  font-size: 18px;
}

/*house-request ---------------------------------------------*/
.house-request {
  padding-top: var(--cmn-pd-sms);
  padding-bottom: 160px;
}
.house-request-ttl {
  margin-bottom: 70px;
}
.house-request-txt {
  margin-bottom: 70px;
}
.house-request-list {
  width: 100%;
  gap: 60px;
}
.house-request-item {
  width: 100%;
  background: var(--color-base-200);
  padding: 30px;
}
.house-request-item:nth-of-type(odd) .request-img {
  margin-right: 35px;
}
.house-request-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 42px;
}
.house-request-item:nth-of-type(even) .request-img {
  margin-left: 30px;
}
.house-request-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.house-request-subttl {
  margin-top: 30px;
  margin-bottom: 42px;
}
.house-request .cont-list {
  width: 100%;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.house-request .cont-item {
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 10px;
  margin-left: 1em;
  position: relative;
  z-index: 1;
}
.house-request .cont-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 16/16;
  width: calc(1em - 1px);
  left: 0;
  top: 13px;
  border-radius: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: var(--color-main-100);
  background-size: contain;
}
.house-request-close {
  margin-top: 60px;
}
.house-request-item:nth-of-type(odd) .house-request-img {
  margin-right: 45px;
}
.house-request-item:nth-of-type(even) .house-request-img {
  margin-left: 30px;
}

/*==========================================
air-conditioner
===========================================*/
/*air-conditioner-worries ---------------------------------------------*/
.air-conditioner-worries {
  padding-top: var(--cmn-pd-xs);
  padding-bottom: var(--cmn-pd-sm);
  background: var(--color-base-100);
}
.air-conditioner-worries-ttl {
  margin-bottom: 64px;
}
.air-conditioner-worries-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 70px;
}
.air-conditioner-worries-item {
  width: 340px;
  background: var(--color-white);
  padding-top: 182px;
  padding-bottom: 36px;
  position: relative;
  z-index: 1;
}
.air-conditioner-worries-img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 95px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.air-conditioner-worries-img img {
  max-width: none;
}
.air-conditioner-worries-subttl {
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
}
.air-conditioner-worries-subttl .sm {
  font-size: 20px;
}
/*air-conditioner-request ---------------------------------------------*/
.air-conditioner-request {
  padding-top: var(--cmn-pd-sms);
  padding-bottom: 160px;
}
.air-conditioner-request-ttl {
  margin-bottom: 70px;
}
.air-conditioner-request-txt {
  margin-bottom: 70px;
}
.air-conditioner-request-list {
  width: 100%;
  gap: 60px;
}
.air-conditioner-request-item {
  width: 100%;
  background: var(--color-base-200);
  padding: 30px;
}
.air-conditioner-request-item:nth-of-type(odd) .request-img {
  margin-right: 35px;
}
.air-conditioner-request-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 42px;
}
.air-conditioner-request-item:nth-of-type(even) .request-img {
  margin-left: 30px;
}
.air-conditioner-request-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.air-conditioner-request-subttl {
  margin-top: 30px;
  margin-bottom: 42px;
}
.air-conditioner-request .cont-list {
  width: 100%;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.air-conditioner-request .cont-item {
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 10px;
  margin-left: 1em;
  position: relative;
  z-index: 1;
}
.air-conditioner-request .cont-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 16/16;
  width: calc(1em - 1px);
  left: 0;
  top: 13px;
  border-radius: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: var(--color-main-100);
  background-size: contain;
}
.air-conditioner-request-close {
  margin-top: 60px;
}
.air-conditioner-request-item:nth-of-type(odd) .air-conditioner-request-img {
  margin-right: 32px;
}
.air-conditioner-request-item:nth-of-type(even) .air-conditioner-request-img {
  margin-left: 30px;
}

/*==========================================
common-cases
===========================================*/
/*cases ---------------------------------------------*/
.cases {
  padding-top: var(--cmn-pd-sms);
  padding-bottom: var(--cmn-pd-md);
  background: var(--color-main-100);
}
.cases-ttl {
  margin-bottom: 70px;
}
.cases-lead {
  line-height: 36px;
  letter-spacing: 0;
  margin-bottom: 60px;
}
.cases-list {
  width: 100%;
  gap: 100px;
}
.cases-item {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--cmn-radius-md);
  padding: 40px;
}
.cases-item-subttl {
  width: 100%;
  font-size: 27px;
  letter-spacing: 0;
  padding-bottom: 10px;
}
.cases-item .main-img-list {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 40px;
  border-top: 1px solid var(--color-border-100);
  border-bottom: 1px solid var(--color-border-100);
  gap: 40px;
}
.cases-item .main-img-item {
  width: 480px;
}
.cases-item .main-img-item:first-child .main-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 15/43;
  width: 15px;
  right: -14px;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(/img/common/arw-main.png) no-repeat;
  background-size: contain;
}
.cases-item .en {
  letter-spacing: 0;
  padding: 4px 0;
  text-align: center;
  width: 100%;
  text-transform: capitalize;
  background: var(--color-base-400);
  margin-bottom: 10px;
}
.cases-item .en.main {
  color: var(--color-white);
  background: var(--color-main-200);
}
.cases-item .main-img {
  width: 100%;
  height: 380px;
  position: relative;
  z-index: 1;
}
.cases-item .main-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases-item .sub-img-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 31px;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 17px;
}
.cases-item .sub-img-list::-webkit-scrollbar {
  height: 16px;
}
.cases-item .sub-img-list::-webkit-scrollbar-thumb {
  background: var(--color-base-500);
}
.cases-item .sub-img-list::-webkit-scrollbar-track {
  background: var(--color-base-400);
}
.cases-item .sub-img-item {
  width: 360px;
  height: 360px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cases-item .sub-img-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases-txt {
  letter-spacing: 0;
  margin-top: 30px;
}

/*==========================================
common-faq
===========================================*/
/*faq ---------------------------------------------*/
.faq {
  padding: var(--cmn-pd-sms) 0;
  background: var(--color-base-300);
}
.faq-ttl {
  margin-bottom: 80px;
}
.faq-list {
  width: 100%;
  gap: 60px;
}
.faq-item {
  width: 100%;
}
.faq-term {
  width: 100%;
  padding: 29px 86px;
  background: var(--color-main-100);
  position: relative;
  z-index: 1;
  border-radius: 5px 5px 0 0;
}
.faq-term::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 40/40;
  width: 40px;
  left: 27px;
  top: 26px;
  background: url(/img/common/question-icon.png) no-repeat;
  background-size: contain;
}
.faq-definition {
  width: 100%;
  font-weight: var(--font-medium);
  line-height: 32px;
  padding: 29px 86px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  border-radius: 0 0 5px 5px;
}
.faq-definition::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 22/23;
  width: 22px;
  left: 37px;
  top: 34px;
  background: url(/img/common/answer-icon.png) no-repeat;
  background-size: contain;
}
/*==========================================
news
===========================================*/
/*news ---------------------------------------------*/
.news {
  background: var(--color-main-100);
}
.news .top-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
}

/*detail ---------------------------------------------*/
.detail-ttl {
  font-size: 28px;
  color: var(--color-txt-100);
  margin-bottom: 20px;
  line-height: 1.5;
}
.detail .meta {
  margin-bottom: 72px;
}
.detail .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 8px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.detail .tag {
  padding: 0 8px;
}
.detail .tag:first-child {
  border-left: 1px solid var(--color-txt-100);
}
.detail .tag:last-child {
  padding-right: 0;
}
.detail .tag:not(:last-child) {
  border-right: 1px solid var(--color-txt-100);
}
.detail .page-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  padding-top: 48px;
  text-align: center;
  border-top: 1px solid var(--color-main-200);
  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;
}
.detail .left,
.detail .mid,
.detail .right {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-txt-100);
  font-weight: var(--font-medium);
}
.detail .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.detail .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.detail .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-txt-100);
  border-right: 1px solid var(--color-txt-100);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.detail .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.detail .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.detail .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-txt-100);
  border-right: 1px solid var(--color-txt-100);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.detail .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

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

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  margin-bottom: 60px;
}