@charset "UTF-8";
:root {
  /*fonts*/
  --font-main: Noto Sans JP, sans-serif;
  --font-sub: Zen Maru Gothic, sans-serif;
  /*colors*/
  --color-main-100: #5fcb1b;
  --color-main-200: #d4efc9;
  --color-main-300: #000;
  --color-main-400: #000;
  --color-accent-100: #000;
  --color-txt-100: #222222;
  --color-txt-200: #000;
  --color-base-100: #ededed;
  --color-base-200: #595959;
  --color-base-300: #bfbfbf;
  --color-base-400: #e2f2d7;
  --color-base-500: #b3b3b3;
  --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-sm: 100px;
    --cmn-pd-md: 120px;
    --ttl-mb-md: 50px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /*==========================================
    767px以下のとき
    ===========================================*/
    --cmn-pd-sm: 100px;
    --cmn-pd-md: 100px;
    --ttl-mb-md: 50px;
  }
}

/*pc ---------------------------------------------*/
/*sp ---------------------------------------------*/
/* 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: Noto Sans JP, sans-serif;
}

.font-sub {
  font-family: Zen Maru Gothic, 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-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-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;
}

/*==========================================
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-md-main-rect, .btn-xs-main-rad {
  display: block;
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.06em;
  font-weight: var(--font-bold);
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-xs-main-rad {
  width: 219px;
  color: var(--color-white);
  padding: 20px 10px;
  background: var(--color-main-100);
  border-radius: 30px;
}
.btn-xs-main-rad .btn-cont {
  padding-left: 8px;
  margin-left: 21px;
  position: relative;
  z-index: 1;
}
.btn-xs-main-rad .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 21px;
  height: 15px;
  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-md-main-rect {
  font-size: 16px;
  letter-spacing: 0.1em;
  width: 290px;
  color: var(--color-white);
  padding: 20px 30px;
  background: var(--color-main-100);
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn-md-main-rect::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 9/14;
  width: 9px;
  right: 20px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-white.png) no-repeat;
  background-size: contain;
}

/*コモンテキスト --------------------------------*/
.txt, .top-about-txt, .sub-about-txt, .sub-about-fee .fee-txt, .sub-about-fee .point-item, .area-txt, .others-item, .question-term, .question-definition, .question .empty-message, .com-info-header, .com-info-data, .sub-voice-txt, .txt-lg {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-lg {
  font-size: 20px;
  line-height: 34px;
}

.txt-sm, .top-cases-subttl, .sub-cases-subttl, .footer .address,
.footer .com-details, .txt-news-ttl, .top-news-item-ttl, .tag-change li {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

/* ---------------------------------------------*/
.txt-xs {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.08em;
  font-weight: var(--font-semibold);
  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-bold);
  line-height: 26px;
  letter-spacing: 0.04em;
  color: var(--color-main-100);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: var(--font-bold);
  line-height: 26px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.txt-news-ttl, .top-news-item-ttl, .tag-change li {
  line-height: 32px;
}

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

.txt-ft-nav, .footer .nav-item {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
  font-weight: var(--font-medium);
}

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

.tel-svg img {
  display: block;
}

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

.ttl, .top-about-ttl, .top-cases-ttl, .top-news-ttl, .sub-about-ttl, .area-ttl, .others-ttl, .sub-cases-ttl, .question-ttl, .com-info-ttl, .sub-voice-ttl, .complete-ttl,
.notfound-ttl,
.privacy-ttl,
.form-ttl,
.site-map-ttl,
.news-ttl, .ttl-xs, .sub-about-subttl, .sub-about-fee .price, .ttl-lg, .ttl-sm, .top-links-ttl {
  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, .top-links-ttl {
  font-size: 35px;
}

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

.ttl-xs, .sub-about-subttl, .sub-about-fee .price {
  font-size: 30px;
  letter-spacing: 0.06em;
}

.ttl-dots {
  display: inline-block;
  padding-bottom: 39px;
  position: relative;
  z-index: 1;
}
.ttl-dots::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 47/9;
  width: 47px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/ttl-deco02.png) no-repeat;
  background-size: contain;
}

.ttl-en, .ttl-en-white {
  padding-top: 63px;
  position: relative;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ttl-en::before, .ttl-en-white::before {
  position: absolute;
  text-transform: uppercase;
  white-space: nowrap;
  content: attr(data-en);
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  font-size: 100px;
  line-height: 70px;
  color: var(--color-main-200);
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ttl-en-white::before {
  color: var(--color-white);
}

/*==========================================

===========================================*/
.ttl-set-md, .ttl-set-sm, .ttl-set-sm-c, .ttl-set-md-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.ttl-set-md .en, .ttl-set-sm .en, .ttl-set-sm-c .en, .ttl-set-md-white .en {
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-main-200);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(130, 208, 244)), to(rgb(164, 226, 174)));
  background: linear-gradient(0deg, rgb(130, 208, 244), rgb(164, 226, 174));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttl-set-md .ja, .ttl-set-sm .ja, .ttl-set-sm-c .ja, .ttl-set-md-white .ja {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 40px;
  line-height: 70px;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
}

.ttl-set-md-white .en {
  background: var(--color-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-white);
}
.ttl-set-md-white .ja {
  color: var(--color-white);
}

.ttl-set-sm .ja, .ttl-set-sm-c .ja {
  font-size: 32px;
  line-height: 57px;
}

.ttl-set-sm-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ttl-set02-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
.ttl-set02-xs .en {
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-weight: var(--font-semibold);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);
  padding: 7.5px 15px;
  border-radius: 17.5px;
  background-image: linear-gradient(310deg, rgb(130, 208, 244), rgb(164, 226, 174));
  margin-bottom: 13px;
}
.ttl-set02-xs .ja {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-sub);
  font-size: 60px;
  line-height: 85px;
  letter-spacing: 0.14em;
  color: var(--color-main-100);
  font-weight: var(--font-bold);
}
.ttl-sv .en, .sv-ttl .en {
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-weight: var(--font-exbold);
  font-size: 180px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: -6px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(14, 89, 194)), to(rgb(22, 180, 247)));
  background-image: linear-gradient(90deg, rgb(14, 89, 194), rgb(22, 180, 247));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttl-sv .bg, .sv-ttl .bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 46px;
  aspect-ratio: 741/118;
  width: 741px;
  -webkit-filter: drop-shadow(7.6604444312px 6.4278760969px 0px black);
          filter: drop-shadow(7.6604444312px 6.4278760969px 0px black);
  background: url(/img/common/sv-ttl-bg.png) no-repeat center center/contain;
}
.ttl-sv .ja, .sv-ttl .ja {
  font-family: var(--font-main);
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-bold);
  color: var(--color-white);
  text-shadow: 4.0147836382px 4.4588689529px 0px rgba(34, 34, 34, 0.4);
}

/*コモンサブタイトル --------------------------------*/
.sub-ttl, .top-about-subttl, .sub-ttl-lg, .cases-detail-ttl {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  font-size: 30px;
  line-height: 45px;
  letter-spacing: 0.08em;
}

.sub-ttl-xs, .sub-about-item {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-white);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.06em;
}

.sub-ttl-lg, .cases-detail-ttl {
  font-size: 26px;
  color: var(--color-txt-100);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/*下層ページ固定スタイル ---------------------------------------------*/
/*==========================================
site-map
===========================================*/
.site-map {
  padding: var(--cmn-pd-md, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.site-map-item {
  border-bottom: 1px solid var(--color-txt-def, 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-def, var(--color-txt-temp));
}
.notfound-txt a {
  color: var(--color-main-100, 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-def, 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-def, var(--color-txt-temp));
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-txt-def, var(--color-txt-temp));
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*==========================================
contact
===========================================*/
#contact {
  padding: var(--cmn-pd-md, 120px) 0;
}

#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-100, var(--color-txt-temp));
}

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

#contact table .required-mark {
  color: var(--color-main-100, 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-100, 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-100, var(--color-txt-temp));
    font-size: 3.5vw;
    border-radius: 0;
    background: #fff;
  }
}
#contact label[for=agree] a {
  color: var(--color-main-100);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-main-100);
}

#contact .contact-btn.contact-submits-wrap button[type=button] {
  border: unset;
  background: var(--color-main-100, 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-100, 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-100, 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-def, var(--color-txt-temp));
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-main-100, var(--color-link-temp));
  text-decoration: underline;
}

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

/*==========================================
top
===========================================*/
/*header ---------------------------------------------*/
.header {
  height: 125px;
  position: relative;
  z-index: 10;
  background: var(--color-white);
  padding: 15px 100px 0;
}
.header .logo {
  margin-top: 25px;
  margin-left: 7px;
}
.header-info {
  margin-bottom: 15px;
  gap: 41px;
}
.header .tel {
  margin-bottom: 12px;
}
.header .nav-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .nav-item {
  position: relative;
  z-index: 1;
}
.header .nav-item:not(:last-child) {
  padding-right: 26px;
  margin-right: 26px;
}
.header .nav-item:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 12/12;
  width: 12px;
  border-radius: 50%;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background: var(--color-main-100);
}
.header .current {
  color: var(--color-main-100);
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 805px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 100px;
}
.mv::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 200px);
  height: 100%;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/top/mv-bg.png) no-repeat center center/cover;
}
.mv::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 305px;
  left: 0;
  bottom: 0;
  background: var(--color-base-400);
}
.mv-catch {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: calc(50% - 311px);
  width: 717px;
}

/*side-btn ---------------------------------------------*/
.side-btn {
  z-index: 10;
  position: fixed;
  right: 0;
  top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding-top: 100px;
  padding-bottom: 130px;
  background: url(/img/common/wave-white-btm.png) no-repeat center bottom/contain, url(/img/top/top-about-deco.png) no-repeat right clamp(-19.375rem, -58.125rem + 48.44vw, 0rem) bottom -77px/auto;
  background-color: var(--color-base-400);
}
.top-about-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.top-about-ttl .deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-about-ttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 47/39;
  width: 47px;
  height: 39px;
  right: -32px;
  top: -37px;
  background: url(/img/common/ttl-deco01.png) no-repeat;
  background-size: contain;
}
.top-about-ttl .bg {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 17px;
  background: var(--color-main-100);
  border-radius: 10px;
  color: var(--color-white);
}
.top-about-subttl {
  margin-bottom: 40px;
}
.top-about-txt {
  margin-bottom: 50px;
}
.top-about-list {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.top-about-item {
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.top-about-item:first-child::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/23;
  width: 32px;
  right: 0;
  top: 40%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background: url(/img/common/arw-green.png) no-repeat;
  background-size: contain;
}
.top-about-img {
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.top-about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.top-about-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.top-about .caption {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: var(--font-bold);
  color: var(--color-white);
  border-radius: 17px;
  background: var(--color-base-500);
  width: 160px;
  text-align: center;
  padding: 4px 0 7px;
  margin-top: 13px;
}
.top-about .caption.bg-main {
  background: var(--color-main-100);
}
.top-about .btn-md-main-rect {
  margin: 0 auto;
}

/*top-cases ---------------------------------------------*/
.top-cases {
  padding-top: 70px;
  padding-bottom: 80px;
  background: var(--color-white);
}
.top-cases-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.top-cases-list {
  width: 100%;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
.top-cases-item {
  width: 340px;
}
.top-cases-img {
  width: 100%;
  height: 260px;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.top-cases-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.top-cases-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-cases-subttl {
  width: 98%;
  margin: 0 auto;
  text-align: center;
  padding: 16px 0px;
  background-image: linear-gradient(to right, var(--color-base-500) 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.top-cases-subttl span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-cases .btn-md-main-rect {
  margin: 0 auto;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding-top: 145px;
  padding-bottom: 105px;
  background: url(/img/common/wave-white-top.png) no-repeat center top/contain;
  background-color: var(--color-base-100);
}
.top-links-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.top-links-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.top-links-item {
  width: 620px;
  height: 380px;
  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: relative;
}
.top-links-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 38/38;
  width: 38px;
  right: 30px;
  bottom: 30px;
  background: url(/img/common/round-btn-green.png) no-repeat;
  background-size: contain;
}
.top-links .item-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-links-ttl {
  line-height: 1;
  text-align: center;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  left: 48%;
  top: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-links-ttl .sm {
  text-transform: uppercase;
  display: inline-block;
  font-size: 25px;
  line-height: 1;
  color: var(--color-main-100);
  margin-bottom: 19px;
}
.top-links-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 323/214;
  width: 323px;
  height: 214px;
  left: 56%;
  top: 62%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/top/top-links-ttl-deco.png) no-repeat;
  background-size: contain;
}
.top-links-img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.top-links-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.top-links-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

/*news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-news::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 562/591;
  width: 562px;
  height: 591px;
  right: calc(50% + 398px);
  bottom: -234px;
  background: url(/img/top/top-news-deco.png) no-repeat;
  background-size: contain;
}
.top-news-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 88px;
}
.top-news-ttl {
  margin-bottom: 76px;
}
.top-news-list {
  width: 100%;
}
.top-news-item {
  width: 100%;
  background-image: linear-gradient(to right, var(--color-base-500) 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  padding: 33px 0 21px;
  position: relative;
  z-index: 1;
}
.top-news-item:first-child .top-news-item-body {
  padding-top: 0;
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .meta {
  margin-bottom: 13px;
}
.top-news-item .date {
  margin-right: 19px;
  -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 {
  padding: 0px 9px;
  background: var(--color-base-500);
  border-radius: 100px;
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 500px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 100px;
}
.sv::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 120px;
  left: 0;
  bottom: 0;
  background: var(--color-base-400);
}
.sv-img {
  position: absolute;
  z-index: -1;
  width: calc(100% - 200px);
  height: 100%;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sv-img img {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-ttl {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}

/*==========================================
bread-clumb
===========================================*/
.bread-clumb {
  background: var(--color-base-400);
}
.bread-clumb .current {
  color: var(--color-main-100);
}

/*==========================================
about
===========================================*/
/*sub-about ---------------------------------------------*/
.sub-about {
  padding-top: 100px;
  padding-bottom: 85px;
  background: var(--color-base-400);
}
.sub-about-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.sub-about-txt {
  margin-bottom: 50px;
}
.sub-about .list-wrapper {
  width: 100%;
  max-width: 960px;
  background: var(--color-white);
  margin: 0 auto;
  border-radius: 20px;
  padding: 50px 90px;
  margin-bottom: 80px;
}
.sub-about-subttl {
  line-height: 1;
  text-align: center;
}
.sub-about-subttl .color-main {
  color: var(--color-main-100);
}
.sub-about-subttl .lg {
  font-size: 46px;
}
.sub-about-subttl.substyle {
  font-size: 32px;
}
.sub-about-subttl.substyle .lg {
  font-size: 42px;
}
.sub-about-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 45px;
}
.sub-about-item {
  width: 180px;
  height: 110px;
  background: var(--color-main-100);
  border-radius: 10px;
  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;
}
.sub-about-characteristics {
  margin-bottom: 80px;
}
.sub-about-characteristics .sub-about-subttl {
  line-height: 48px;
}
.sub-about-characteristics .characteristics-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-top: 37px;
}
.sub-about-characteristics .characteristics-item {
  width: 252px;
  background: var(--color-main-100);
  border-radius: 10px;
  padding: 33px 15px 27px;
  position: relative;
  z-index: 1;
}
.sub-about-characteristics .num {
  position: absolute;
  z-index: -1;
  left: 20px;
  top: 13px;
  font-family: var(--font-sub);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
  font-weight: var(--font-bold);
}
.sub-about-characteristics .characteristics-img {
  width: 132px;
  margin-bottom: 12px;
}
.sub-about-characteristics .characteristics-txt {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.04em;
  color: var(--color-txt-100);
  text-align: center;
}
.sub-about-fee .sub-about-subttl {
  width: 100%;
  padding-bottom: 20px;
  background-image: linear-gradient(to right, var(--color-base-500) 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.sub-about-fee .fee-list {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 25px;
}
.sub-about-fee .fee-item {
  width: 360px;
  padding: 0 35px;
  position: relative;
  z-index: 1;
}
.sub-about-fee .fee-item:first-child::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/23;
  width: 32px;
  right: 0;
  top: 40%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background: url(/img/common/arw-green.png) no-repeat;
  background-size: contain;
}
.sub-about-fee .fee-img {
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.sub-about-fee .fee-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.sub-about-fee .fee-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.sub-about-fee .caption {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: var(--font-bold);
  color: var(--color-white);
  border-radius: 17px;
  background: var(--color-base-500);
  width: 160px;
  text-align: center;
  padding: 4px 0 7px;
  margin-top: 13px;
}
.sub-about-fee .caption.bg-main {
  background: var(--color-main-100);
}
.sub-about-fee .fee-txt {
  margin-bottom: 14px;
}
.sub-about-fee .price {
  display: inline-block;
  line-height: 1;
  padding: 0 10px 10px;
  font-size: 32px;
  color: var(--color-main-100);
  border-bottom: 2px solid var(--color-main-100);
  margin-bottom: 60px;
}
.sub-about-fee .point-list {
  width: 1000px;
  background: var(--color-white);
  padding: 40px 55px;
  gap: 11px;
}
.sub-about-fee .point-item {
  position: relative;
  z-index: 1;
  padding-left: 14px;
  margin-left: 24px;
}
.sub-about-fee .point-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 24/24;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/check-icon.png) no-repeat;
  background-size: contain;
}

/*area ---------------------------------------------*/
.area {
  padding-top: 102px;
  padding-bottom: 67px;
  background: url(/img/common/wave-green-top.png) no-repeat center top/contain;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 956/677;
  width: 956px;
  left: calc(50% + 72px);
  bottom: -247px;
  background: url(/img/about/area-deco.png) no-repeat;
  background-size: contain;
}
.area-img {
  margin-left: 140px;
  margin-right: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.area-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
  margin-top: 70px;
}
/*others ---------------------------------------------*/
.others {
  padding: 100px 0;
  background: var(--color-base-100);
}
.others-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.others-list {
  width: 500px;
  background: var(--color-white);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 7px 30px;
  list-style: none;
  padding-left: 0;
  padding: 30px 40px 31px 40px;
  margin-bottom: 50px;
}
.others-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.others-item::before {
  content: "・";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.others .btn-md-main-rect {
  margin: 0 auto;
}

/*==========================================
cases
===========================================*/
/*sub-cases ---------------------------------------------*/
.sub-cases {
  padding: 100px 0;
  background: var(--color-base-400);
}
.sub-cases-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.sub-cases-list {
  width: 100%;
  gap: 40px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sub-cases-link {
  display: block;
}
.sub-cases-item {
  width: 340px;
}
.sub-cases-img {
  width: 100%;
  height: 260px;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.sub-cases-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.sub-cases-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-cases-subttl {
  width: 98%;
  margin: 0 auto;
  text-align: center;
  padding: 16px 0px;
  background-image: linear-gradient(to right, var(--color-base-500) 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.sub-cases-subttl span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/*cases-detail ---------------------------------------------*/
.cases-detail {
  padding: var(--cmn-pd-sm) 0;
  background: var(--color-base-400);
}
.cases-detail-wrap {
  width: 100%;
  border-radius: 20px;
  background: var(--color-white);
  padding: 53px 56px 63px;
}
.cases-detail-ttl {
  width: 100%;
  padding-bottom: 13px;
  background-image: linear-gradient(to right, var(--color-base-500) 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.cases-detail-list {
  padding-top: 29px;
  position: relative;
  z-index: 1;
}
.cases-detail-item {
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.cases-detail-item:first-child::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/23;
  width: 32px;
  right: 0;
  top: 40%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background: url(/img/common/arw-green.png) no-repeat;
  background-size: contain;
}
.cases-detail-img {
  aspect-ratio: 340/260;
  width: 100%;
  max-width: 340px;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.cases-detail-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.cases-detail-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases-detail .caption {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: var(--font-bold);
  color: var(--color-white);
  border-radius: 17px;
  background: var(--color-base-500);
  width: 160px;
  text-align: center;
  padding: 4px 0 7px;
  margin-top: 13px;
}
.cases-detail .caption.bg-main {
  background: var(--color-main-100);
}
.cases-detail .page-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  text-align: center;
  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;
}
.cases-detail .page-btn .left,
.cases-detail .page-btn .mid,
.cases-detail .page-btn .right {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-txt-100);
  font-weight: var(--font-medium);
}
.cases-detail .page-btn .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.cases-detail .page-btn .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.cases-detail .page-btn .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%);
}
.cases-detail .page-btn .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.cases-detail .page-btn .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.cases-detail .page-btn .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%);
}
.cases-detail .page-btn .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

/*==========================================
faq
===========================================*/
.question {
  padding: var(--cmn-pd-sm) 0;
  background: var(--color-base-400);
}
.question-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.question-list {
  width: 100%;
  gap: 23px;
}
.question-item {
  width: 100%;
  gap: 7px;
}
.question-term {
  width: 100%;
  color: var(--color-white);
  padding: 12px 60px;
  background: var(--color-main-100);
  position: relative;
  z-index: 1;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.question-term .en {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
  display: block;
  z-index: -1;
  aspect-ratio: 30/30;
  width: 30px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-main-100);
  text-align: center;
  padding-top: 4px;
  padding-left: 2px;
  margin: 3px 0;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.question-term .jp {
  display: block;
}
.question-definition {
  width: 100%;
  padding: 12px 60px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.question-definition .en {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
  display: block;
  z-index: -1;
  aspect-ratio: 30/30;
  width: 30px;
  border-radius: 50%;
  background: var(--color-main-100);
  color: var(--color-white);
  text-align: center;
  padding-top: 4px;
  padding-left: 2px;
  margin: 3px 0;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.question-definition .jp {
  display: block;
  color: var(--color-txt-100);
}
/*com-info ---------------------------------------------*/
.com-info {
  padding: var(--cmn-pd-sm) 0;
}
.com-info-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.com-info .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.com-info-table {
  width: calc(100% - 4px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.com-info-table::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 3px);
  left: 50%;
  top: 50%;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid var(--color-main-100);
}
.com-info-row {
  width: 100%;
}
.com-info-row:not(:last-child) .com-info-header {
  border-bottom: 1px solid var(--color-white);
}
.com-info-row:not(:last-child) .com-info-data {
  border-bottom: 1px solid var(--color-main-100);
}
.com-info-row:first-child .com-info-header {
  border-radius: 5px 0 0 0;
}
.com-info-row:first-child .com-info-data {
  border-radius: 0 5px 0 0;
}
.com-info-row:last-child .com-info-header {
  border-radius: 0 0 0 5px;
}
.com-info-row:last-child .com-info-data {
  border-radius: 0 0 5px 0;
}
.com-info-header {
  width: 360px;
  padding: 12px 40px;
  color: var(--color-white);
  background: var(--color-main-100);
  text-align: center;
}
.com-info-data {
  padding: 12px 40px;
  color: var(--color-txt-100);
}
.com-info-data .tel-svg {
  display: inline-block;
}
.com-info-data .tel-svg img {
  display: block;
}
.com-info-data .tel-link {
  display: block;
}
.com-info iframe {
  display: block;
  width: 100%;
  border: none;
  height: 310px;
  margin-top: 80px;
  border-radius: 10px;
}

/*==========================================
voice
===========================================*/
/*sub-voice ---------------------------------------------*/
.sub-voice {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-base-400);
}
.sub-voice-ttl {
  line-height: 1;
  margin-bottom: var(--ttl-mb-md);
}
.sub-voice-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.sub-voice-item {
  width: 100%;
  padding: 60px 80px;
  background: var(--color-white);
  border-radius: 20px;
}
.sub-voice-subttl {
  width: 100%;
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  font-size: 26px;
  line-height: 48px;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  margin-bottom: 21px;
  text-align: center;
  background-image: linear-gradient(to right, var(--color-base-500) 8px, transparent 8px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.sub-voice-txt {
  line-height: 38px;
}
.sub-voice-img {
  width: 100%;
  height: 500px;
  margin-top: 9px;
  margin-bottom: 25px;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.sub-voice-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid var(--color-white);
}
.sub-voice-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

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

/*tag-change ---------------------------------------------*/
.tag-change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 70px;
}
.tag-change li {
  font-weight: var(--font-medium);
  border-radius: 3px;
  background: #eee;
  color: #b3b3b3;
  line-height: 1;
}
.tag-change li a {
  display: block;
  padding: 12px 26px;
}
.tag-change .current {
  color: var(--color-white);
  background: #5fcb1b;
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

/*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: 100px;
  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-main-100);
}

/*detail ---------------------------------------------*/
.detail {
  padding: var(--cmn-pd-md) 0;
}
.detail-ttl {
  font-size: 28px;
  color: var(--color-txt-100);
  margin-bottom: 20px;
  line-height: 1.5;
}
.detail .meta {
  margin-bottom: 72px;
}
.detail .date {
  margin-right: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.detail .tag {
  padding: 0px 9px;
  background: var(--color-base-500);
  border-radius: 100px;
}
.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;
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: 60px;
  padding-bottom: 47px;
  background: var(--color-base-200);
}
.footer-contents {
  margin-bottom: 82px;
}
.footer-logo {
  display: block;
  margin-bottom: 68px;
}
.footer .address,
.footer .com-details {
  color: var(--color-white);
  line-height: 1;
}
.footer .com-details {
  margin-bottom: 18px;
  gap: 29px;
  font-weight: var(--font-normal);
}
.footer .tel-area {
  margin-bottom: 22px;
}
.footer .tel-white {
  margin-bottom: 12px;
}
.footer .tel-svg {
  display: block;
}
.footer .btn-xs-main-rad {
  margin-bottom: 30px;
}
.footer .footer-exbtn {
  width: 500px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 40px;
}
.footer .nav-list {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 41px 61px;
  margin-left: auto;
}
.footer .nav-item {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  margin-left: 9px;
}
.footer .nav-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 9/9;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--color-base-300);
}
.footer .current {
  color: var(--color-main-100);
}
.footer .copy {
  display: block;
  font-family: var(--font-main);
  font-weight: var(--font-normal);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-base-300);
}

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

.complete,
.form {
  background: var(--color-base-400);
}

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