@charset "UTF-8";
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100..700&family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------------
* CSSカスタムプロパティ（JSで動的に変更する場合はこちらを利用）
--------------------------------*/
:root {
  --root-em: 100%;
  --color_main: #74B33E;
  --color_sub: #F39800;
  --color_text: #454545;
  --color_link: #74B33E;
  --color_bg: #fdfdfd;
  --color_border: #ddd;
  --font_family: Noto Sans JP, 游ゴシック体, Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  --font_weight: 400;
  --container_size: 1000px;
  --article_size: 900px;
  --pad_container: 20px;
}

/****** mixin定義 ******/
/****** 関数定義 ******/
/****** 要素型セレクター ******/
html {
  font-size: var(--root-em);
  -webkit-font-smoothing: antialiased;
  visibility: hidden;
}

.c-plainBtn {
  -webkit-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

*, .c-plainBtn {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

:after, :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
}

b, strong {
  font-weight: 700;
}

sub, sup {
  font-size: smaller;
}

ruby > rt {
  font-size: 50%;
}

main {
  display: block;
}

:where(ol:not([type])), :where(ul:not([type])) {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  word-break: break-all;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

video {
  outline: none;
}

code, pre {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

svg:not([fill]) {
  fill: currentcolor;
}

[hidden] {
  display: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  cursor: pointer;
  display: inline-block;
}

[role=button] {
  cursor: pointer;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  background-color: #f7f7f7;
  border: 1px solid hsla(0, 0%, 78%, 0.5);
  border-radius: 0;
  color: #333;
  padding: 0.25em 0.5em;
}

[type=color] {
  padding: 0;
}

[type=range] {
  vertical-align: middle;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

body {
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color_bg);
  color: var(--color_text);
  font-family: var(--font_family);
  font-size: 1rem;
  font-weight: var(--font_weight);
  line-height: 2;
  max-width: 100%;
  min-width: 100%;
  overflow-wrap: break-word;
  overflow-x: clip;
  position: relative;
}

#body_wrap {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}

#body_wrap.-bg-fix {
  z-index: 1;
}

#body_wrap.-bg-fix:before {
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

a {
  color: var(--color_link);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

iframe {
  width: 100%;
  border: none;
}

@media screen and (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: var(--color_text);
  }
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
.l-header {
  position: fixed;
  top: 0;
  z-index: 100;
  padding: 20px 40px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 960px) {
  .l-header {
    padding: 10px 20px;
  }
}

.l-header__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.l-header__col {
  min-width: 0;
}
.l-header__col.--left {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.l-header__col.--right {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

@media screen and (max-width: 960px) {
  .l-header .c-siteLogo__img {
    height: 30px;
  }
}

.l-header.--inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/****** フッター ******/
.l-footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--color_main);
  color: #fff;
}
@media screen and (max-width: 600px) {
  .l-footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.l-footer .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .l-footer .l-container {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .l-footer .c-siteLogo {
    margin-left: auto;
    margin-right: auto;
  }
}

.l-footer__copyright {
  display: block;
  font-size: 14px;
  font-weight: inherit;
}
@media screen and (max-width: 600px) {
  .l-footer__copyright {
    margin-top: 1em;
    text-align: center;
  }
}

/****** コンテンツエリア ******/
#body_wrap {
  padding-top: var(--header_height, 0);
}

.l-content {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/*--------------------------------
 *  メインバー
--------------------------------*/
.l-mainContent {
  position: static !important;
  width: 100%;
}

/*--------------------------------
 *  コンテンツエリア
--------------------------------*/
.l-container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container_size, 0px) + var(--pad_container, 0px) * 2);
  padding-left: var(--pad_container, 0);
  padding-right: var(--pad_container, 0);
}

/*--------------------------------
 *  記事エリア
--------------------------------*/
.l-article {
  max-width: var(--article_size);
  padding-left: 0;
  padding-right: 0;
}

/****** セクション ******/
/*--------------------------------
 *  共通
--------------------------------*/
.l-sect {
  font-size: clamp(10px, 1.5384615385vw, 16px);
}
@media screen and (max-width: 600px) {
  .l-sect {
    font-size: 4.2666666667vw;
  }
}

/*--------------------------------
 *  キービジュアル
--------------------------------*/
.l-sect-kv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.l-sect-kv__bg {
  position: relative;
}

.l-sect-kv__bg,
.l-sect-kv__bg img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------------
 *  こんなお悩みありませんか？
--------------------------------*/
.l-sect-worry {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 3.75em;
  background-color: #F4F9F8;
}
@media screen and (max-width: 600px) {
  .l-sect-worry {
    padding-top: 1.875em;
  }
}

.l-sect-worry__title > strong {
  color: var(--color_main);
}

.l-sect-worry__title > strong > span {
  position: relative;
}

.l-sect-worry__title > strong > span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.1875em;
  height: 0.1875em;
  background-color: #F39800;
  border-radius: 50%;
}

.l-sect-worry__bg {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  max-width: 100%;
}

.l-sect-worry__bg img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------------
 *  えんナビはお客様満足度93%
--------------------------------*/
.l-sect-trust {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.l-sect-trust__bg {
  position: relative;
}

.l-sect-trust__bg,
.l-sect-trust__bg img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------------
*  えんナビが選ばれる理由
--------------------------------*/
.l-sect-reason {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 3.125em;
  padding-bottom: 3.75em;
  background-image: url("../img/texture/tx_07.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .l-sect-reason {
    padding-top: 1.875em;
    padding-bottom: 4.1875em;
  }
}

/*--------------------------------
*  CTA
--------------------------------*/
.l-sect-cta {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: var(--pad_container);
  padding-right: var(--pad_container);
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  background-image: url("../img/texture/tx_08.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .l-sect-cta {
    padding-top: 1.875em;
    padding-bottom: 2.5em;
  }
}

.l-sect-cta__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5.625em;
     -moz-column-gap: 5.625em;
          column-gap: 5.625em;
}
@media screen and (max-width: 600px) {
  .l-sect-cta__horiz {
    display: block;
  }
}

.l-sect-cta__col {
  min-width: 0;
}

.l-sect-cta__title {
  display: block;
  width: 21.875em;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-sect-cta__title {
    margin-left: auto;
    margin-right: auto;
    width: 17.5em;
  }
}

.l-sect-cta__col .c-btn {
  font-size: 1.5em;
}
@media screen and (max-width: 600px) {
  .l-sect-cta__col .c-btn {
    margin-top: 1.25em;
    width: 100%;
    font-size: 1.25em;
  }
}

@media screen and (max-width: 600px) {
  .l-sect-cta__col .c-btn > span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
}

/*--------------------------------
 *  ファクタリングとは？
--------------------------------*/
.l-sect-tips {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 3.125em;
  padding-bottom: 3.75em;
  background-color: #F4F9F8;
}
@media screen and (max-width: 600px) {
  .l-sect-tips {
    padding-top: 1.875em;
    padding-bottom: 2.5em;
  }
}

.l-sect-tips__title > small {
  display: block;
  font-size: 0.75em;
  line-height: inherit;
  font-weight: inherit;
  color: var(--color_sub);
}

.l-sect-tips__img {
  border-radius: 10px;
  overflow: hidden;
}

.l-sect-tips__img,
.l-sect-tips__img img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------------
 *  ご入金までの流れ
--------------------------------*/
.l-sect-flow {
  padding-top: 3.125em;
  padding-bottom: 3.75em;
}
@media screen and (max-width: 600px) {
  .l-sect-flow {
    padding-top: 1.875em;
    padding-bottom: 2.5em;
  }
}

/*--------------------------------
 *  お客様の声
--------------------------------*/
.l-sect-voice {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 3.125em;
  padding-bottom: 3.125em;
  background-color: #FDF5E6;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .l-sect-voice {
    padding-top: 1.875em;
    padding-bottom: 2.5em;
  }
}

/*--------------------------------
 *  よくあるご質問
--------------------------------*/
.l-sect-faq {
  padding-top: 3.125em;
  padding-bottom: 3.75em;
}
@media screen and (max-width: 600px) {
  .l-sect-faq {
    padding-top: 1.875em;
    padding-bottom: 2.5em;
  }
}

/*--------------------------------
*  審査
--------------------------------*/
.l-sect-judge {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0.625em;
  padding-bottom: 3.125em;
}
@media screen and (max-width: 600px) {
  .l-sect-judge {
    padding-top: 0;
    padding-bottom: 2.5em;
  }
}

.l-sect-judge__img {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.l-sect-judge__img img {
  display: block;
  width: auto;
  height: auto;
}

.l-sect-judge__note {
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .l-sect-judge__note {
    font-size: 12px;
  }
}

.l-sect-judge__note li {
  position: relative;
}
.l-sect-judge__note li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

/*--------------------------------
 *  お申し込みフォーム
--------------------------------*/
.l-sect-form {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 1;
  padding-top: 3.75em;
  padding-bottom: 3.75em;
  background-color: #FDF5E6;
}
@media screen and (max-width: 600px) {
  .l-sect-form {
    padding-top: 1.875em;
    padding-bottom: 0;
  }
}

.l-sect-form__title.c-heading-sect {
  margin-bottom: 1.25em;
}
@media screen and (max-width: 600px) {
  .l-sect-form__title.c-heading-sect {
    margin-bottom: 0.8333333333em;
  }
}

.l-sect-form__title > small {
  display: block;
  font-size: 0.75em;
  line-height: inherit;
  font-weight: inherit;
  color: var(--color_sub);
}

.l-sect-form__img {
  display: block;
  position: absolute;
  top: 0.3125em;
  left: calc(50% + 7.5em);
  z-index: -1;
  width: 17.5em;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-sect-form__img {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25em;
  }
}

.l-sect-form__img img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------------
 *  会社概要
--------------------------------*/
.l-sect-about {
  padding-top: 3.125em;
  padding-bottom: 3.75em;
}
@media screen and (max-width: 600px) {
  .l-sect-about {
    padding-top: 1.875em;
    padding-bottom: 2.5em;
  }
}

.l-sect-about__banner {
  display: block;
  margin-top: 3.125em;
  margin-left: auto;
  margin-right: auto;
  width: 25em;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-sect-about__banner {
    margin-top: 1.875em;
    width: 400px;
  }
}

.l-sect-about__caption {
  margin-top: 0.7142857143em;
  font-size: 0.875em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-sect-about__caption {
    margin-top: 0.8333333333em;
    font-size: 0.75em;
  }
}

/*--------------------------------
 *  お問い合わせ
--------------------------------*/
.l-sect-contact {
  padding-top: 3.75em;
  padding-bottom: 7.5em;
}
@media screen and (max-width: 600px) {
  .l-sect-contact {
    margin-bottom: 1em;
    font-size: 1.25em;
  }
}

/*--------------------------------
 *  送信完了
--------------------------------*/
.l-sect-complete {
  min-height: 80vh;
  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;
}

.l-sect-complete__inner {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-sect-complete__inner {
    text-align: start;
  }
}

.l-sect-complete__title {
  font-size: 1.25em;
  font-weight: 700;
  padding-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .l-sect-complete__title {
    font-size: 1em;
  }
}

@media screen and (max-width: 600px) {
  .l-sect-complete__desc {
    font-size: 0.875em;
  }
}

/****** フローティング ******/
/*--------------------------------
 *  フローティングボタン
--------------------------------*/
.l-float {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-float > * {
  pointer-events: auto;
}

[data-form=true] .l-float {
  -webkit-transform: translateY(100%) !important;
          transform: translateY(100%) !important;
}

/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し ******/
/*--------------------------------
 *  セクション
--------------------------------*/
.c-heading-sect {
  margin-bottom: 0.9375em;
  font-family: "M PLUS 1 Code", "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-heading-sect {
    margin-bottom: 0.8333333333em;
    font-size: 1.5em;
  }
}

/****** ラベル ******/
/****** ボタン ******/
/*--------------------------------
 *  基本
--------------------------------*/
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.3125em;
     -moz-column-gap: 0.3125em;
          column-gap: 0.3125em;
  padding: 1em 1.875em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: inherit;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border-radius: 0.1875em;
  background: -webkit-gradient(linear, left top, right top, from(#F39800), to(#E66E00));
  background: linear-gradient(90deg, #F39800 0%, #E66E00 100%);
  -webkit-box-shadow: 0px 5px 5px 0px rgba(243, 152, 0, 0.3);
          box-shadow: 0px 5px 5px 0px rgba(243, 152, 0, 0.3);
}

.c-btn > * {
  min-width: 0;
}

.c-btn > span {
  white-space: nowrap;
}

.c-btn > i {
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("../img/icon/ic_01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*--------------------------------
 *  電話
--------------------------------*/
.c-btn-tel__wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .c-btn-tel__wrapper {
    padding: 10px;
    width: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.1);
  }
}

a.c-btn-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.1785714286em;
     -moz-column-gap: 0.1785714286em;
          column-gap: 0.1785714286em;
  font-family: "Century Gothic", "CenturyGothic", "Avenir-Light", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--color_main);
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  a.c-btn-tel {
    font-size: 20px;
  }
}

.c-btn-tel > i {
  display: block;
  width: 0.8571428571em;
  height: 0.8571428571em;
  background-image: url("../img/icon/ic_02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .c-btn-tel > i {
    width: 1em;
    height: 1em;
  }
}

.c-btn-tel > span {
  white-space: nowrap;
}

.c-btn-tel__hour {
  display: block;
  margin-top: 0.3333333333em;
  padding: 1px;
  width: 100%;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

/*--------------------------------
 *  フォーム
--------------------------------*/
.c-btn-inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  padding: 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#F39800), to(#E66E00));
  background: linear-gradient(90deg, #F39800 0%, #E66E00 100%);
  -webkit-box-shadow: 0px 5px 5px 0px rgba(243, 152, 0, 0.3);
          box-shadow: 0px 5px 5px 0px rgba(243, 152, 0, 0.3);
}

.c-btn-inquiry > * {
  min-width: 0;
}

.c-btn-inquiry > span {
  white-space: nowrap;
}

.c-btn-inquiry > i {
  display: block;
  width: 1em;
  height: 1em;
  background-image: url("../img/icon/ic_01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/****** 画像 ******/
/****** サイトロゴ ******/
.c-siteLogo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-siteLogo__link {
  display: block;
}

.c-siteLogo img {
  display: block;
  width: auto;
  height: 40px;
}

/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** カード ******/
/*--------------------------------
 *  選ばれる理由
--------------------------------*/
.p-card-reason__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3% 1fr 3% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
  counter-reset: reason 0;
  font-size: inherit;
}
@media screen and (max-width: 600px) {
  .p-card-reason__unit {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    row-gap: 1.25em;
  }
}

.p-card-reason {
  position: relative;
}

.p-card-reason__head {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.2916666667em;
  margin-left: auto;
  margin-right: auto;
  width: 5.8333333333em;
  height: 2.9166666667em;
  font-family: "Century Gothic", "CenturyGothic", "Avenir-Light", sans-serif;
  font-size: 1.5em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: var(--color_sub);
  border-top-left-radius: 2.9166666667em;
  border-top-right-radius: 2.9166666667em;
}

.p-card-reason__head::before {
  counter-increment: reason 1;
  content: "0" counter(reason);
}

.p-card-reason__head > span {
  padding: 0 0.2857142857em;
  color: var(--color_sub);
  background-color: #fff;
  font-family: inherit;
  font-size: 0.5833333333em;
  line-height: inherit;
  font-weight: inherit;
}

.p-card-reason__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.9375em;
  padding: 1.25em;
  background-color: #fff;
  border-radius: 0.625em;
  -webkit-box-shadow: 0 0 0 2px inset var(--color_sub), 0 0 10px 0 rgba(243, 152, 0, 0.3);
          box-shadow: 0 0 0 2px inset var(--color_sub), 0 0 10px 0 rgba(243, 152, 0, 0.3);
}

.p-card-reason__title {
  display: block;
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color_sub);
  text-align: center;
}

.p-card-reason__title img {
  display: block;
  width: 100%;
  height: auto;
}

.p-card-reason__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.p-card-reason__thumb img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 240px;
  max-width: 100%;
  height: auto;
}

.p-card-reason__desc {
  font-size: 1.125em;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-card-reason__desc {
    font-size: 1em;
  }
}

.p-card-reason__desc ._marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FBE0B2));
  background: linear-gradient(transparent 60%, #FBE0B2 60%);
}

/*--------------------------------
 *  ご入金までの流れ
--------------------------------*/
.p-card-flow__unit {
  padding-top: 1.25em;
  padding-left: 1.25em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  row-gap: 2.375em;
  font-size: inherit;
  counter-reset: flow 0;
}
@media screen and (max-width: 600px) {
  .p-card-flow__unit {
    row-gap: 2em;
  }
}

.p-card-flow {
  position: relative;
  padding: 1.875em;
  border-radius: 0.625em;
  -webkit-box-shadow: 0 0 0 2px currentColor;
          box-shadow: 0 0 0 2px currentColor;
}
@media screen and (max-width: 600px) {
  .p-card-flow {
    padding: 1.25em;
  }
}

.p-card-flow__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25em;
     -moz-column-gap: 1.25em;
          column-gap: 1.25em;
}
@media screen and (max-width: 600px) {
  .p-card-flow__horiz {
    display: block;
  }
}

.p-card-flow__col {
  min-width: 0;
}
.p-card-flow__col.--left {
  -ms-flex-preferred-size: 13.125em;
      flex-basis: 13.125em;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-card-flow__col.--right {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (max-width: 600px) {
  .p-card-flow__col.--right {
    margin-top: 1.25em;
  }
}

.p-card-flow__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.p-card-flow__thumb img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 13.125em;
  height: auto;
}

.p-card-flow__title {
  display: block;
  margin-bottom: 0.625em;
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-card-flow__title {
    margin-bottom: 0.5em;
    font-size: 1.25em;
    text-align: center;
  }
}

.p-card-flow__desc {
  display: block;
  font-size: 1.125em;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .p-card-flow__desc {
    font-size: 1em;
  }
}
.p-card-flow__desc b {
  color: var(--color_sub);
}

.p-card-flow__col .c-btn {
  margin-top: 0.9375em;
}
@media screen and (max-width: 600px) {
  .p-card-flow__col .c-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-card-flow__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 2px;
  position: absolute;
  top: -1em;
  left: -1em;
  width: 4em;
  height: 4em;
  font-family: "Century Gothic", "CenturyGothic", "Avenir-Light", sans-serif;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: var(--color_main);
  border-radius: 50%;
}

.p-card-flow__badge::after {
  counter-increment: flow 1;
  content: "0" counter(flow);
  font-family: inherit;
  font-size: 1.6em;
  font-weight: inherit;
  line-height: inherit;
}

.p-card-flow:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 0.625em);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.5em;
  height: 1.125em;
  background-image: url("../img/icon/ic_03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/*--------------------------------
 *  お客様からの声
--------------------------------*/
.p-card-voice {
  position: relative;
  padding: 1.875em;
  font-size: inherit;
  background-color: #fff;
  border-radius: 1.25em;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(243, 152, 0, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(243, 152, 0, 0.3);
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-card-voice {
    padding: 3.75em 0.9375em 0.9375em 0.9375em;
  }
}

.p-card-voice__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7.5em 2.5em 1fr;
  grid-template-columns: 7.5em 1fr;
  -ms-grid-rows: auto 0.9375em auto;
  grid-template-rows: auto auto;
  gap: 0.9375em 2.5em;
}

.p-card-voice__grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.p-card-voice__grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.p-card-voice__grid > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.p-card-voice__grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media screen and (max-width: 600px) {
  .p-card-voice__grid {
    display: block;
  }
}

.p-card-voice__title {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color_main);
}
@media screen and (max-width: 600px) {
  .p-card-voice__title {
    margin-bottom: 0.75em;
    font-size: 1.25em;
  }
}

.p-card-voice__desc {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.8;
}
.p-card-voice__desc b {
  font-weight: 700;
  color: var(--color_sub);
}

.p-card-voice__thumb {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media screen and (max-width: 600px) {
  .p-card-voice__thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.625em;
       -moz-column-gap: 0.625em;
            column-gap: 0.625em;
    margin-top: 1.25em;
  }
}

.p-card-voice__thumb img {
  display: block;
}
@media screen and (max-width: 600px) {
  .p-card-voice__thumb img {
    min-width: 0;
    -ms-flex-preferred-size: 6.25em;
        flex-basis: 6.25em;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-card-voice__caption {
  display: block;
  margin-top: 0.7142857143em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .p-card-voice__caption {
    min-width: 0;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.p-card-voice__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25em;
     -moz-column-gap: 0.25em;
          column-gap: 0.25em;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5em 1em;
  height: auto !important;
  font-family: "Century Gothic", "CenturyGothic", "Avenir-Light", sans-serif;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background-color: var(--color_main);
  border-top-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
@media screen and (max-width: 600px) {
  .p-card-voice__badge {
    padding: 0.625em 1.25em;
    font-size: 1em;
    border-top-left-radius: 0.625em;
    border-bottom-right-radius: 0.625em;
  }
}

.p-card-voice__badge::after {
  content: attr(data-num);
  font-family: inherit;
  font-size: 1.2em;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
@media screen and (max-width: 600px) {
  .p-card-voice__badge::after {
    font-size: 1.25em;
  }
}

/*--------------------------------
 *  よくあるご質問
--------------------------------*/
.p-card-faq__unit {
  font-size: inherit;
  border-top: 1px solid #ddd;
}

.p-card-faq {
  border-bottom: 1px solid #ddd;
}

.p-card-faq__question {
  padding: 1em 3.6em 1em 3.7em;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color_main);
  background-image: url("../img/icon/ic_04.svg"), url("../img/icon/ic_03.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 1.2em auto, 1.1em auto;
  background-position: left 1em center, right 1em center;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .p-card-faq__question {
    padding: 0.5555555556em 2.3888888889em 0.5555555556em 2.5555555556em;
    font-size: 1.125em;
    background-size: 1.1666666667em auto, 1em auto;
    background-position: left 0.5555555556em center, right 0.5555555556em center;
  }
}

.p-card-faq__answer {
  display: none;
  padding: 1.1111111111em 1.6666666667em 1.1111111111em 4.1111111111em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .p-card-faq__answer {
    padding: 0.625em;
    font-size: 1em;
  }
}

/****** メディアとテキスト ******/
/****** 表組 ******/
/*--------------------------------
 *  会社概要
--------------------------------*/
.p-table-about {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 800px;
  font-size: inherit;
  border-top: 1px solid #ddd;
}

.p-table-about th,
.p-table-about td {
  padding: 0.5555555556em 0.5555555556em 0.5555555556em 0;
  font-size: 1.125em;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  text-align: start;
}
@media screen and (max-width: 600px) {
  .p-table-about th,
  .p-table-about td {
    display: block !important;
    width: 100% !important;
    font-size: 1em;
  }
}

.p-table-about th {
  width: 13.3333333333em;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-table-about th {
    padding: 0;
    padding-top: 0.625em;
    border-bottom-width: 0;
  }
}

@media screen and (max-width: 600px) {
  .p-table-about td {
    padding: 0;
    padding-bottom: 0.625em;
  }
}

/****** ボックス ******/
/****** Swiper ******/
.p-slider-voice {
  overflow: visible;
  width: 920px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-slider-voice {
    max-width: calc(100% - 70px);
  }
}

.p-slider-voice .swiper-slide {
  height: auto;
}

.p-slider-voice .swiper-slide > * {
  height: 100%;
}

.p-slider-voice .swiper-button-prev,
.p-slider-voice .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(243, 152, 0, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(243, 152, 0, 0.3);
  border-radius: 50%;
}

.p-slider-voice .swiper-button-prev {
  left: -16px;
  background-image: url("../img/icon/ic_05.svg");
}
@media screen and (max-width: 600px) {
  .p-slider-voice .swiper-button-prev {
    left: -25px;
  }
}

.p-slider-voice .swiper-button-next {
  right: -16px;
  background-image: url("../img/icon/ic_06.svg");
}
@media screen and (max-width: 600px) {
  .p-slider-voice .swiper-button-next {
    right: -25px;
  }
}

.p-slider-voice + .swiper-pagination {
  display: block;
  margin-top: 2em;
  width: 100%;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}

.p-slider-voice + .swiper-pagination .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  cursor: pointer;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

.p-slider-voice + .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color_sub);
  opacity: 1;
}

/****** メールフォーム ******/
/*--------------------------------
 *  メールフォームプロCGI
--------------------------------*/
div.mfp_err {
  background-position: 0px 5px;
}

.mfp_element_all {
  max-width: 100%;
}

.mfp_element_textarea {
  width: 100% !important;
  height: auto !important;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  margin: 0;
  padding: 0.25em 0.5em;
  vertical-align: baseline;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/*--------------------------------
 *  Zipaddr
--------------------------------*/
#autozip {
  display: none !important;
}

/*--------------------------------
 *  iframeの高さをフォールバック
--------------------------------*/
.p-iframe {
  height: 930px;
}
@media screen and (max-width: 600px) {
  .p-iframe {
    height: 1030px;
  }
}

/*--------------------------------
 *  簡単査定
--------------------------------*/
.p-form-satei__wrapper {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 1.875em 1.875em 3.75em 1.875em;
  width: 900px;
  max-width: 100%;
  font-size: 16px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 2px inset var(--color_sub), 0 0 10px 0 rgba(243, 152, 0, 0.3);
          box-shadow: 0 0 0 2px inset var(--color_sub), 0 0 10px 0 rgba(243, 152, 0, 0.3);
}
@media screen and (max-width: 960px) {
  .p-form-satei__wrapper {
    padding: 1.25em;
    width: 600px;
  }
}

.p-form-satei {
  display: block;
  width: 100%;
}

.p-form-satei__table {
  width: 100%;
}

.p-form-satei__table th,
.p-form-satei__table td {
  font-size: inherit;
  border-bottom: 1px solid #ddd;
  text-align: start;
  min-height: 0;
}
@media screen and (max-width: 960px) {
  .p-form-satei__table th,
  .p-form-satei__table td {
    display: block !important;
    width: 100% !important;
  }
}

.p-form-satei__table th {
  padding: 0.9375em 0.625em 0.9375em 0;
  width: 15em;
  line-height: 2.5em;
  vertical-align: baseline;
}
@media screen and (max-width: 960px) {
  .p-form-satei__table th {
    padding: 0.625em 0;
    line-height: 1;
    border-bottom-width: 0;
  }
}

.p-form-satei__table td {
  padding: 0.9375em 0 0.9375em 0.625em;
}
@media screen and (max-width: 960px) {
  .p-form-satei__table td {
    padding: 0 0 0.625em 0;
    line-height: 1;
  }
}

.p-table-sastei__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25em;
  width: 100%;
}

.p-form-satei__table input[type=text],
.p-form-satei__table input[type=tel],
.p-form-satei__table input[type=url],
.p-form-satei__table input[type=email],
.p-form-satei__table input[type=number],
.p-form-satei__table input[type=date],
.p-form-satei__table select,
.p-form-satei__table textarea {
  display: block;
  padding: 0.4375em 0.625em;
  width: 100%;
  background-color: #fff;
  border: 1px solid currentColor;
  border-radius: 5px;
  line-height: 1.5;
}

.p-form-satei__table input[type=date] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-form-satei__table input[data-type=number] {
  display: inline-block;
  width: 50% !important;
  text-align: right !important;
}

.p-form-satei__zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.3125em;
     -moz-column-gap: 0.3125em;
          column-gap: 0.3125em;
  margin-bottom: 0.625em;
}

.p-form-satei__zip input[type] {
  width: 11.25em;
}

.p-form-satei__submit {
  display: block;
  margin-top: 1.5em;
  margin-left: auto;
  margin-right: auto;
  padding: 0.9em 2em;
  width: 17em;
  max-width: 100%;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border-radius: 6px;
  border-width: 0;
  background-image: url("../img/icon/ic_01.svg"), -webkit-gradient(linear, left top, right top, from(#F39800), to(#E66E00));
  background-image: url("../img/icon/ic_01.svg"), linear-gradient(90deg, #F39800 0%, #E66E00 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: 1em auto, auto auto;
  background-position: right 1em center, center;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(243, 152, 0, 0.3);
          box-shadow: 0px 5px 5px 0px rgba(243, 152, 0, 0.3);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.p-form-satei__table .p-form-satei__label {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.2em 0.5em;
  font-size: 0.625em;
  line-height: 1;
  color: #fff;
  background-color: #E6542C;
  vertical-align: 1px;
}

.p-form-satei__agree {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.1428571429em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.p-form-satei__agree .mfp_err {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------
 *  MailformProのステップ表示をカスタマイズ
--------------------------------*/
ul#mfp_phase_stat li {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  background-image: unset !important;
  text-shadow: unset !important;
  border: none !important;
}

ul#mfp_phase_stat li.mfp_active_phase {
  background-color: var(--color_main);
}

/* 「確認画面」の文字を非表示にする */
#mfp_phase_confirm_label {
  display: none !important;
}

/* 最後のステップと確認画面の間にある「＞（矢印）」を非表示にする */
#mfp_phase_stat li.mfp_phase_arrow:nth-last-child(2) {
  display: none !important;
}

button.mfp_prev,
button.mfp_next {
  margin: 0;
  margin-top: 30px;
  color: #fff;
  font-weight: bold;
  background-color: #20A0FF;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button.mfp_prev:hover,
button.mfp_next:hover {
  opacity: 0.6;
}

[data-mfp-message] {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 6px;
  border: 1px solid currentColor;
}

[data-mfp-message=none] {
  display: none;
}

[data-mfp-message=upper] {
  color: #6BABFF;
  background-color: #F8FBFF;
}

[data-mfp-message=lower] {
  color: #FF6B6B;
  background-color: #FFF8F8;
}

/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** マージン ******/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt0e {
  margin-top: 0em !important;
}

.u-mb0e {
  margin-bottom: 0em !important;
}

.u-mt0_25e {
  margin-top: 0.25em !important;
}

.u-mb0_25e {
  margin-bottom: 0.25em !important;
}

.u-mt0_5e {
  margin-top: 0.5em !important;
}

.u-mb0_5e {
  margin-bottom: 0.5em !important;
}

.u-mt0_75e {
  margin-top: 0.75em !important;
}

.u-mb0_75e {
  margin-bottom: 0.75em !important;
}

.u-mt1e {
  margin-top: 1em !important;
}

.u-mb1e {
  margin-bottom: 1em !important;
}

.u-mt1_25e {
  margin-top: 1.25em !important;
}

.u-mb1_25e {
  margin-bottom: 1.25em !important;
}

.u-mt1_5e {
  margin-top: 1.5em !important;
}

.u-mb1_5e {
  margin-bottom: 1.5em !important;
}

.u-mt1_75e {
  margin-top: 1.75em !important;
}

.u-mb1_75e {
  margin-bottom: 1.75em !important;
}

.u-mt2e {
  margin-top: 2em !important;
}

.u-mb2e {
  margin-bottom: 2em !important;
}

.u-mt2_25e {
  margin-top: 2.25em !important;
}

.u-mb2_25e {
  margin-bottom: 2.25em !important;
}

.u-mt2_5e {
  margin-top: 2.5em !important;
}

.u-mb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .l-mt0e {
    margin-top: 0em !important;
  }
  .l-mb0e {
    margin-bottom: 0em !important;
  }
  .l-mt0_25e {
    margin-top: 0.25em !important;
  }
  .l-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-mt0_5e {
    margin-top: 0.5em !important;
  }
  .l-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-mt0_75e {
    margin-top: 0.75em !important;
  }
  .l-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-mt1e {
    margin-top: 1em !important;
  }
  .l-mb1e {
    margin-bottom: 1em !important;
  }
  .l-mt1_25e {
    margin-top: 1.25em !important;
  }
  .l-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-mt1_5e {
    margin-top: 1.5em !important;
  }
  .l-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-mt1_75e {
    margin-top: 1.75em !important;
  }
  .l-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-mt2e {
    margin-top: 2em !important;
  }
  .l-mb2e {
    margin-bottom: 2em !important;
  }
  .l-mt2_25e {
    margin-top: 2.25em !important;
  }
  .l-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-mt2_5e {
    margin-top: 2.5em !important;
  }
  .l-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .m-mt0e {
    margin-top: 0em !important;
  }
  .m-mb0e {
    margin-bottom: 0em !important;
  }
  .m-mt0_25e {
    margin-top: 0.25em !important;
  }
  .m-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-mt0_5e {
    margin-top: 0.5em !important;
  }
  .m-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-mt0_75e {
    margin-top: 0.75em !important;
  }
  .m-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-mt1e {
    margin-top: 1em !important;
  }
  .m-mb1e {
    margin-bottom: 1em !important;
  }
  .m-mt1_25e {
    margin-top: 1.25em !important;
  }
  .m-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-mt1_5e {
    margin-top: 1.5em !important;
  }
  .m-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-mt1_75e {
    margin-top: 1.75em !important;
  }
  .m-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-mt2e {
    margin-top: 2em !important;
  }
  .m-mb2e {
    margin-bottom: 2em !important;
  }
  .m-mt2_25e {
    margin-top: 2.25em !important;
  }
  .m-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-mt2_5e {
    margin-top: 2.5em !important;
  }
  .m-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 600px) {
  .s-mt0 {
    margin-top: 0px !important;
  }
  .s-mb0 {
    margin-bottom: 0px !important;
  }
  .s-mt5 {
    margin-top: 5px !important;
  }
  .s-mb5 {
    margin-bottom: 5px !important;
  }
  .s-mt10 {
    margin-top: 10px !important;
  }
  .s-mb10 {
    margin-bottom: 10px !important;
  }
  .s-mt15 {
    margin-top: 15px !important;
  }
  .s-mb15 {
    margin-bottom: 15px !important;
  }
  .s-mt20 {
    margin-top: 20px !important;
  }
  .s-mb20 {
    margin-bottom: 20px !important;
  }
  .s-mt25 {
    margin-top: 25px !important;
  }
  .s-mb25 {
    margin-bottom: 25px !important;
  }
  .s-mt30 {
    margin-top: 30px !important;
  }
  .s-mb30 {
    margin-bottom: 30px !important;
  }
  .s-mt35 {
    margin-top: 35px !important;
  }
  .s-mb35 {
    margin-bottom: 35px !important;
  }
  .s-mt40 {
    margin-top: 40px !important;
  }
  .s-mb40 {
    margin-bottom: 40px !important;
  }
  .s-mt45 {
    margin-top: 45px !important;
  }
  .s-mb45 {
    margin-bottom: 45px !important;
  }
  .s-mt50 {
    margin-top: 50px !important;
  }
  .s-mb50 {
    margin-bottom: 50px !important;
  }
  .s-mt0e {
    margin-top: 0em !important;
  }
  .s-mb0e {
    margin-bottom: 0em !important;
  }
  .s-mt0_25e {
    margin-top: 0.25em !important;
  }
  .s-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-mt0_5e {
    margin-top: 0.5em !important;
  }
  .s-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-mt0_75e {
    margin-top: 0.75em !important;
  }
  .s-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-mt1e {
    margin-top: 1em !important;
  }
  .s-mb1e {
    margin-bottom: 1em !important;
  }
  .s-mt1_25e {
    margin-top: 1.25em !important;
  }
  .s-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-mt1_5e {
    margin-top: 1.5em !important;
  }
  .s-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-mt1_75e {
    margin-top: 1.75em !important;
  }
  .s-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-mt2e {
    margin-top: 2em !important;
  }
  .s-mb2e {
    margin-bottom: 2em !important;
  }
  .s-mt2_25e {
    margin-top: 2.25em !important;
  }
  .s-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-mt2_5e {
    margin-top: 2.5em !important;
  }
  .s-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** パディング ******/
.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pt0e {
  margin-top: 0em !important;
}

.u-pb0e {
  margin-bottom: 0em !important;
}

.u-pt0_25e {
  margin-top: 0.25em !important;
}

.u-pb0_25e {
  margin-bottom: 0.25em !important;
}

.u-pt0_5e {
  margin-top: 0.5em !important;
}

.u-pb0_5e {
  margin-bottom: 0.5em !important;
}

.u-pt0_75e {
  margin-top: 0.75em !important;
}

.u-pb0_75e {
  margin-bottom: 0.75em !important;
}

.u-pt1e {
  margin-top: 1em !important;
}

.u-pb1e {
  margin-bottom: 1em !important;
}

.u-pt1_25e {
  margin-top: 1.25em !important;
}

.u-pb1_25e {
  margin-bottom: 1.25em !important;
}

.u-pt1_5e {
  margin-top: 1.5em !important;
}

.u-pb1_5e {
  margin-bottom: 1.5em !important;
}

.u-pt1_75e {
  margin-top: 1.75em !important;
}

.u-pb1_75e {
  margin-bottom: 1.75em !important;
}

.u-pt2e {
  margin-top: 2em !important;
}

.u-pb2e {
  margin-bottom: 2em !important;
}

.u-pt2_25e {
  margin-top: 2.25em !important;
}

.u-pb2_25e {
  margin-bottom: 2.25em !important;
}

.u-pt2_5e {
  margin-top: 2.5em !important;
}

.u-pb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-pt0 {
    padding-top: 0px !important;
  }
  .l-pb0 {
    padding-bottom: 0px !important;
  }
  .l-pt5 {
    padding-top: 5px !important;
  }
  .l-pb5 {
    padding-bottom: 5px !important;
  }
  .l-pt10 {
    padding-top: 10px !important;
  }
  .l-pb10 {
    padding-bottom: 10px !important;
  }
  .l-pt15 {
    padding-top: 15px !important;
  }
  .l-pb15 {
    padding-bottom: 15px !important;
  }
  .l-pt20 {
    padding-top: 20px !important;
  }
  .l-pb20 {
    padding-bottom: 20px !important;
  }
  .l-pt25 {
    padding-top: 25px !important;
  }
  .l-pb25 {
    padding-bottom: 25px !important;
  }
  .l-pt30 {
    padding-top: 30px !important;
  }
  .l-pb30 {
    padding-bottom: 30px !important;
  }
  .l-pt35 {
    padding-top: 35px !important;
  }
  .l-pb35 {
    padding-bottom: 35px !important;
  }
  .l-pt40 {
    padding-top: 40px !important;
  }
  .l-pb40 {
    padding-bottom: 40px !important;
  }
  .l-pt45 {
    padding-top: 45px !important;
  }
  .l-pb45 {
    padding-bottom: 45px !important;
  }
  .l-pt50 {
    padding-top: 50px !important;
  }
  .l-pb50 {
    padding-bottom: 50px !important;
  }
  .l-pt0e {
    margin-top: 0em !important;
  }
  .l-pb0e {
    margin-bottom: 0em !important;
  }
  .l-pt0_25e {
    margin-top: 0.25em !important;
  }
  .l-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-pt0_5e {
    margin-top: 0.5em !important;
  }
  .l-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-pt0_75e {
    margin-top: 0.75em !important;
  }
  .l-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-pt1e {
    margin-top: 1em !important;
  }
  .l-pb1e {
    margin-bottom: 1em !important;
  }
  .l-pt1_25e {
    margin-top: 1.25em !important;
  }
  .l-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-pt1_5e {
    margin-top: 1.5em !important;
  }
  .l-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-pt1_75e {
    margin-top: 1.75em !important;
  }
  .l-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-pt2e {
    margin-top: 2em !important;
  }
  .l-pb2e {
    margin-bottom: 2em !important;
  }
  .l-pt2_25e {
    margin-top: 2.25em !important;
  }
  .l-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-pt2_5e {
    margin-top: 2.5em !important;
  }
  .l-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .m-pt0 {
    padding-top: 0px !important;
  }
  .m-pb0 {
    padding-bottom: 0px !important;
  }
  .m-pt5 {
    padding-top: 5px !important;
  }
  .m-pb5 {
    padding-bottom: 5px !important;
  }
  .m-pt10 {
    padding-top: 10px !important;
  }
  .m-pb10 {
    padding-bottom: 10px !important;
  }
  .m-pt15 {
    padding-top: 15px !important;
  }
  .m-pb15 {
    padding-bottom: 15px !important;
  }
  .m-pt20 {
    padding-top: 20px !important;
  }
  .m-pb20 {
    padding-bottom: 20px !important;
  }
  .m-pt25 {
    padding-top: 25px !important;
  }
  .m-pb25 {
    padding-bottom: 25px !important;
  }
  .m-pt30 {
    padding-top: 30px !important;
  }
  .m-pb30 {
    padding-bottom: 30px !important;
  }
  .m-pt35 {
    padding-top: 35px !important;
  }
  .m-pb35 {
    padding-bottom: 35px !important;
  }
  .m-pt40 {
    padding-top: 40px !important;
  }
  .m-pb40 {
    padding-bottom: 40px !important;
  }
  .m-pt45 {
    padding-top: 45px !important;
  }
  .m-pb45 {
    padding-bottom: 45px !important;
  }
  .m-pt50 {
    padding-top: 50px !important;
  }
  .m-pb50 {
    padding-bottom: 50px !important;
  }
  .m-pt0e {
    margin-top: 0em !important;
  }
  .m-pb0e {
    margin-bottom: 0em !important;
  }
  .m-pt0_25e {
    margin-top: 0.25em !important;
  }
  .m-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-pt0_5e {
    margin-top: 0.5em !important;
  }
  .m-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-pt0_75e {
    margin-top: 0.75em !important;
  }
  .m-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-pt1e {
    margin-top: 1em !important;
  }
  .m-pb1e {
    margin-bottom: 1em !important;
  }
  .m-pt1_25e {
    margin-top: 1.25em !important;
  }
  .m-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-pt1_5e {
    margin-top: 1.5em !important;
  }
  .m-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-pt1_75e {
    margin-top: 1.75em !important;
  }
  .m-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-pt2e {
    margin-top: 2em !important;
  }
  .m-pb2e {
    margin-bottom: 2em !important;
  }
  .m-pt2_25e {
    margin-top: 2.25em !important;
  }
  .m-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-pt2_5e {
    margin-top: 2.5em !important;
  }
  .m-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 600px) {
  .s-pt0 {
    padding-top: 0px !important;
  }
  .s-pb0 {
    padding-bottom: 0px !important;
  }
  .s-pt5 {
    padding-top: 5px !important;
  }
  .s-pb5 {
    padding-bottom: 5px !important;
  }
  .s-pt10 {
    padding-top: 10px !important;
  }
  .s-pb10 {
    padding-bottom: 10px !important;
  }
  .s-pt15 {
    padding-top: 15px !important;
  }
  .s-pb15 {
    padding-bottom: 15px !important;
  }
  .s-pt20 {
    padding-top: 20px !important;
  }
  .s-pb20 {
    padding-bottom: 20px !important;
  }
  .s-pt25 {
    padding-top: 25px !important;
  }
  .s-pb25 {
    padding-bottom: 25px !important;
  }
  .s-pt30 {
    padding-top: 30px !important;
  }
  .s-pb30 {
    padding-bottom: 30px !important;
  }
  .s-pt35 {
    padding-top: 35px !important;
  }
  .s-pb35 {
    padding-bottom: 35px !important;
  }
  .s-pt40 {
    padding-top: 40px !important;
  }
  .s-pb40 {
    padding-bottom: 40px !important;
  }
  .s-pt45 {
    padding-top: 45px !important;
  }
  .s-pb45 {
    padding-bottom: 45px !important;
  }
  .s-pt50 {
    padding-top: 50px !important;
  }
  .s-pb50 {
    padding-bottom: 50px !important;
  }
  .s-pt0e {
    margin-top: 0em !important;
  }
  .s-pb0e {
    margin-bottom: 0em !important;
  }
  .s-pt0_25e {
    margin-top: 0.25em !important;
  }
  .s-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-pt0_5e {
    margin-top: 0.5em !important;
  }
  .s-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-pt0_75e {
    margin-top: 0.75em !important;
  }
  .s-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-pt1e {
    margin-top: 1em !important;
  }
  .s-pb1e {
    margin-bottom: 1em !important;
  }
  .s-pt1_25e {
    margin-top: 1.25em !important;
  }
  .s-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-pt1_5e {
    margin-top: 1.5em !important;
  }
  .s-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-pt1_75e {
    margin-top: 1.75em !important;
  }
  .s-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-pt2e {
    margin-top: 2em !important;
  }
  .s-pb2e {
    margin-bottom: 2em !important;
  }
  .s-pt2_25e {
    margin-top: 2.25em !important;
  }
  .s-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-pt2_5e {
    margin-top: 2.5em !important;
  }
  .s-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** その他 ******/
/*--------------------------------
 *  デバイス別 表示/非表示
--------------------------------*/
@media screen and (min-width: 961px) {
  .md {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
  .smmd {
    display: none !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .lg {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .lg {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .mdlg {
    display: none !important;
  }
}
/*--------------------------------
 *  その他
--------------------------------*/
@media screen and (max-width: 600px) {
  .sm-ta-l {
    text-align: left !important;
  }
}
.ta-c {
  text-align: center !important;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}