<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*
 * フォーム共通スタイル
 * 入力エリアの設定、エラーメッセージの設定
 */

.form-area {
  position: relative;
  font-size: 15px;
  line-height: 1.8 !important;
}
.form-area .step {
  margin: 0 0 60px;
  overflow: hidden;
}
.form-area .step li {
  width: 29%;
  height: 60px;
  background: #f1f1f1;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  float: left;
  margin-right: 6%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-area .step li:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 20px;
  border-color: transparent transparent transparent #f1f1f1;
  position: absolute;
  right: -19px;
}
.form-area .step li.active {
  background: #313131;
  color: #fff;
}
.form-area .step li.active:before {
  border-color: transparent transparent transparent #313131;
}

.form-area .step li:nth-child(3) {
  width: 30%;
  margin: 0;
}
.form-area .step li:nth-child(3):before {
  content: none;
}
.form-area .step li span {
  margin-left: 10px;
  font-size: 1.6rem;
}
.form-area .txt {
  margin: 0 0 52px;
}
.form-area .txt a {
  color: #000;
}

/* input、textareaの基本スタイル ***************************************************************** */
/* 以下の設定は必須です。必要に応じてスタイルを修正してください */
.form-area input[type='tel'],
.form-area input[type='email'],
.form-area input[type='password'],
.form-area input[type='number'],
.form-area input[type='text'],
.form-area input[type='submit'],
.form-area input[type='reset'],
.form-area input[type='button'],
.form-area textarea {
  -webkit-appearance: none;
  border-radius: 0;
  padding: 1em;
  border: 2px solid #e4e4e4;
  background: #fafafa;
  position: static;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  outline: none;
  font-family: inherit; /*IE縦ズレ対応*/
  font-size: 15px;
}

/* 横並び時のズレの調整 */
.form-area input,
.form-area select {
  font-size: 100%;
  line-height: 1.2;
}

.form-area select {
  padding: 10px;
  border: 2px solid #e1e1e1;
  outline: none;
  border-radius: 0;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fafafa url(../../img/ico_arrow_form.png) right 50% no-repeat;
  background-size: auto 100%;
}

::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}

.form-area textarea {
  font-size: 15px;
  background: #fafafa;
}

.form-area input.req,
.form-area select.req {
  background: #fbf3f2;
}
.form-area select.req {
  background: #fbf3f2 url(../../img/ico_arrow_form.png) right 50% no-repeat;
}
/* focus */
.form-area input[type='tel']:focus,
.form-area input[type='email']:focus,
.form-area input[type='password']:focus,
.form-area input[type='number']:focus,
.form-area input[type='text']:focus,
.form-area textarea:focus,
.form-area select:focus {
  border: 2px solid #78b9e7;
  box-shadow: 0 0 8px rgba(120, 185, 231, 0.6);
}
.form-area select:focus {
}

.ipt-parent {
  position: relative;
}

.form-area .err input[type='tel'],
.form-area .err input[type='email'],
.form-area .err input[type='password'],
.form-area .err input[type='number'],
.form-area .err input[type='text'],
.form-area .err textarea,
.form-area .err select,
.form-area input.err[type='tel'],
.form-area input.err[type='email'],
.form-area input.err[type='password'],
.form-area input.err[type='number'],
.form-area input.err[type='text'],
.form-area textarea.err,
.form-area select.err {
  border: 2px solid #e77878;
  background: #fffbef;
  box-shadow: 0 0 8px rgba(231, 120, 120, 0.6);
}

/*
.form-area input[type=tel],
.form-area input[type=email],
.form-area input[type=password],
.form-area input[type=number],
.form-area input[type=text],
*/

.form-area .ok input[type='tel'],
.form-area .ok input[type='email'],
.form-area .ok input[type='password'],
.form-area .ok input[type='number'],
.form-area .ok input[type='text'],
.form-area .ok textarea,
.form-area .ok select,
.form-area input.ok[type='tel'],
.form-area input.ok[type='email'],
.form-area input.ok[type='password'],
.form-area input.ok[type='number'],
.form-area input.ok[type='text'],
.form-area textarea.ok,
.form-area select.ok {
  border: 2px solid #60b15e;
  background: #fffbef;
  box-shadow: 0 0 8px rgba(96, 177, 94, 0.6);
}

.textshadow .form-area .err input[type='checkbox'] + label,
.textshadow .form-area input[type='checkbox'].err + label,
.textshadow .form-area .err input[type='radio'] + label,
.textshadow .form-area input[type='radio'].err + label {
  text-shadow: 1px 1px 2px rgba(231, 121, 120, 0.3), -1px -1px 2px rgba(231, 121, 120, 0.3);
}
.textshadow .form-area .ok input[type='checkbox'] + label,
.textshadow .form-area input[type='checkbox'].ok + label,
.textshadow .form-area .ok input[type='radio'] + label,
.textshadow .form-area input[type='radio'].ok + label {
  text-shadow: 1px 1px 2px rgba(96, 177, 94, 0.3), -1px -1px 2px rgba(96, 177, 94, 0.3);
}
/*
IE9用　※フィルタにより太字になるレンダリングバグ有
.no-textshadow .form-area .err input[type=checkbox] + label,
.no-textshadow .form-area input[type=checkbox].err + label,
.no-textshadow .form-area .err input[type=radio] + label,
.no-textshadow .form-area input[type=radio].err + label{
	font-weight:normal;
 -ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#e77878,offx=0,offy=0)";
	display:inline-block;
}
.no-textshadow .form-area .ok input[type=checkbox] + label,
.no-textshadow .form-area input[type=checkbox].ok + label,
.no-textshadow .form-area .ok input[type=radio] + label,
.no-textshadow .form-area input[type=radio].ok + label{
	font-weight:normal;
 -ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#60b15e,offx=0,offy=0)";
	display:inline-block;
}
*/

/* プレースホルダー ********************************************************************* */
/* Webkit */
:focus::-webkit-input-placeholder {
  color: transparent;
}
/* Firefox 18 以前 */
:focus:-moz-placeholder {
  color: transparent;
}
/* Firefox 19 以降 */
:focus::-moz-placeholder {
  color: transparent;
}
/* formhelper IE9  */
#main .helper-set {
  position: relative;
  display: inline-block;
}
#main .helper-set .helper-txt {
  position: absolute;
  color: #939393;
  padding: 8px;
}

/* 入力エリアの横幅指定用 ********************************************************************* */
/* 以下の設定は必須です。必要に応じて追加してください */
.form-area .ipt-w40 {
  width: 40px;
}
.form-area .ipt-w50 {
  width: 50px;
}
.form-area .ipt-w60 {
  width: 60px;
}
.form-area .ipt-w70 {
  width: 70px;
}
.form-area .ipt-w80 {
  width: 80px;
}
.form-area .ipt-w90 {
  width: 90px;
}
.form-area .ipt-w100 {
  width: 100px;
}
.form-area .ipt-w150 {
  width: 150px;
}
.form-area .ipt-w200 {
  width: 200px;
}
.form-area .ipt-w250 {
  width: 250px;
}
.form-area .ipt-w300 {
  width: 300px;
}
.form-area .ipt-w350 {
  width: 350px;
}
.form-area .ipt-w400 {
  width: 400px;
}
.form-area .ipt-w450 {
  width: 450px;
}
.form-area .ipt-w500 {
  width: 500px;
}
.form-area .ipt-w550 {
  width: 550px;
}
.form-area .ipt-w600 {
  width: 600px;
}
.form-area .ipt-w650 {
  width: 650px;
}
.form-area .ipt-w700 {
  width: 700px;
}
.form-area .ipt-w750 {
  width: 750px;
}

/* 入力エリアの余白指定用 ********************************************************************* */
/* 以下の設定は必須です。必要に応じて追加してください */
.form-area .mb05 {
  margin-bottom: 0.5em;
}
.form-area .mb1 {
  margin-bottom: 1em;
}
.form-area .mb15 {
  margin-bottom: 1.5em;
}
.form-area .mb2 {
  margin-bottom: 2em;
}
.form-area .mt05 {
  margin-top: 0.5em;
}
.form-area .mt1 {
  margin-top: 1em;
}
.form-area .mt15 {
  margin-top: 1.5em;
}
.form-area .mt2 {
  margin-top: 2em;
}
.form-area .mt4 {
  margin-top: 4em;
}
.form-area .ml05 {
  margin-left: 0.5em;
}
.form-area .ml1 {
  margin-left: 1em;
}
.form-area .ml15 {
  margin-left: 1.5em;
}
.form-area .ml2 {
  margin-left: 2em;
}
.form-area .mr05 {
  margin-right: 0.5em;
}
.form-area .mr1 {
  margin-right: 1em;
}
.form-area .mr15 {
  margin-right: 1.5em;
}
.form-area .mr2 {
  margin-right: 2em;
}

/* エラーメッセージ *************************************************************************** */
/*以下の設定は必須です。 必要に応じてスタイルを修正してください */
.form-area .e-style {
  padding: 15px;
  margin-bottom: 1em;
  border: 3px solid #f3494c;
  background-color: #fff3f3;
}
.form-area .e-style p {
  margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  color: #333 !important;
}
.form-area .e-style ul {
  padding-left: 1em;
}
.form-area .e-style li {
  color: #f00;
  text-align: left;
  line-height: 1.8;
}

/* フォーム部分のレイアウト *************************************************************************** */
/* 以下の設定は基本的な設定です。参考にしながらスタイルを調整してください */
.form-area .h-mes {
  margin-bottom: 1em;
  font-size: 117%;
}

/* テーブルスタイル調整 */

.form-area table {
  width: 100%;
}
.form-area table th {
  display: table-cell;
  width: 260px;
  padding: 1.5em 15px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  vertical-align: middle;
  text-align: left;
  font-weight: normal;
  position: relative;
}
.form-area table th.vat {
  vertical-align: top;
  padding: 2.5em 15px;
}
.confirm .form-area table th.vat {
  padding: 1.5em 15px;
}
.form-area table td {
  display: table-cell;
  padding: 1.5em 15px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.form-area table td dl {
  overflow: hidden;
}
.form-area table td dl dt {
  width: 148px;
  display: inline-block;
  vertical-align: middle;
}
.form-area table td dl dd {
  width: calc(100% - 160px);
  display: inline-block;
  margin: 1.5em 0;
  vertical-align: middle;
}

.form-area table td .mr23 {
  margin-right: 10px;
}
.form-area .message {
  padding: 50px 0;
}

/*例*/
.form-area .ex {
  margin-left: 0.5em;
  font-size: 14px;
  letter-spacing: -1px;
}
@media screen and (max-width: 1200px) {
  .form-area .ex {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 1000px) {
  .form-area .ex {
    font-size: 11px;
  }
}

.form-area .in-table.kibo li dl dt {
  width: 6em;
}

/* 住所検索ボタン */
.form-area .btn-address {
  width: 167px;
  padding: 1em 0 !important;
  background: #ededed !important;
  font-weight: bold !important;
  font-size: 14px !important;
  border: none !important;
  box-shadow: 2px 2px 0 #c6c6c6;
}

/*必須*/
.form-area .required:before {
  content: '必須';
  font-size: 14px;
  color: #fff;
  background: #ea7722;
  margin: 0 0.8em;
  padding: 0 0.5em;
  display: inline-block;
  position: absolute;
  top: 2.5em;
  right: 0;
  border-radius: 3px;
}

/* プライバシーポリシー部分のレイアウト *************************************************************************** */
.form-area .attention {
  margin: 44px 0 58px;
  padding: 26px 46px;
  border: solid 1px #d9d9d9;
  font-size: 14px;
}
.form-area .attention02 {
  font-size: 15px;
  text-align: center;
}
.form-area .attention02 a {
  color: #000;
}

/* ボタン部分のレイアウト *************************************************************************** */
/* 必要に応じてスタイルを修正してください */
.form-area .btn-wrap {
  height: auto;
  margin: 0 auto;
  padding: 60px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.form-area .btn-wrap li {
  width: 390px;
}
.form-area .btn-wrap li.b-send {
  margin: 1em 0 5em;
}
.form-area .btn-wrap li.b-back {
  margin: 1em 0 5em;
}
.form-area .btn-wrap li input {
  width: 100%;
  padding: 1.2em 0;
  border: 0;
  cursor: pointer;
  background: #363636;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.form-area .btn-wrap li input:hover {
  background: #777;
}
.form-area .btn-wrap li.b-conf input {
}
.form-area .btn-wrap li.b-send input {
}
.form-area .btn-wrap li.b-back input {
  background: #aaa;
}
.form-area .btn-wrap li.b-back input:hover {
  background: #888;
}

/* サンキューエラーページのレイアウト *************************************************************************** */
/* 必要に応じてスタイルを修正してください */
.form-area .thanks {
  padding: 30px 15px;
}
.form-area .thanks p {
  text-align: center;
  margin-bottom: 1em;
}
.form-area .thanks p.text {
  font-size: 1.2em;
}
.form-area .thanks p.error-mes {
  font-size: 1.2em;
}
.form-area .error {
  padding: 30px 15px;
}
.form-area .error p {
  text-align: center;
  margin-bottom: 1em;
}
.form-area .error p.text {
  font-size: 1.2em;
}
.form-area .error p.error-mes {
  font-size: 1.2em;
}

/* ==========================================================================
   smartPhone
   ========================================================================== */
@media screen and (max-width: 767px) {
  /*
	 * フォーム共通スタイル
	 * 入力エリアの設定、エラーメッセージの設定
	 */
  .form-area {
    font-size: 14px;
  }
  .form-area .step {
    margin: 0 0 30px;
    padding: 0 15px;
    overflow: hidden;
  }
  .form-area .step li {
    width: 30%;
    height: 40px;
    font-size: clamp(1.2rem, 3.7vw, 1.4rem);
    line-height: 1.4;
    margin: 0 5% 0 0;
  }
  .form-area .step li span {
    margin-left: 5px;
    font-size: 1rem;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
  .form-area .step li:before {
    border-width: 20px 0 20px 10px;
    right: -9px;
  }
  .form-area .step li:nth-child(3) {
    width: 30%;
    margin: 0;
  }
  .form-area .txt {
    margin: 0 0 30px;
    padding: 0 15px;
  }

  /* input、textareaの基本スタイル ***************************************************************** */
  /* 以下の設定は必須です。必要に応じてスタイルを修正してください */
  .form-area input,
  .form-area select,
  .form-area textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*font-size:16px;*/
    font-size: 14px;
    padding: 10px 5px;
    line-height: 1.5;
  }

  /* select画像必須注意 */
  .form-area select {
    width: 100%;
    padding: 9px 5px;
    height: auto;
    background-size: auto 100%;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background: #fafafa url(../../images/common/ico_arrow.png) right 50% no-repeat;
  }
  .form-area select.ok,
  .form-area .ok select,
  .form-area input[type='checkbox'],
  .form-area input[type='radio'] {
    border: 1px solid #c3c3c3;
    width: 26px;
    height: 26px;
    padding: 0;
    vertical-align: middle;
    top: -2px;
  }
  .form-area input[type='radio'] {
    border-radius: 20px;
  }

  /* プレースホルダー ********************************************************************* */
  #main .helper-set .helper-txt {
    padding: 10px 8px;
  }

  /* 入力エリアの横幅指定用 ********************************************************************* */
  /* 以下の設定は必須です。必要に応じて追加してください */
  .form-area .ipt-spWide {
    width: 100%;
  }
  .form-area .ipt-sp80per {
    width: 80%;
  }
  .form-area .ipt-sp70per {
    width: 70%;
  }
  .form-area .ipt-sp60per {
    width: 60%;
  }
  .form-area .ipt-sp50per {
    width: 50%;
  }
  .form-area .ipt-sp40per {
    width: 40%;
  }
  .form-area .ipt-sp30per {
    width: 30%;
  }
  .form-area .ipt-sp25per {
    width: 25%;
  }
  .form-area .ipt-sp20per {
    width: 20%;
  }

  .form-area .ipt-sp50 {
    width: 50px;
  }
  .form-area .ipt-sp60 {
    width: 60px;
  }

  /* 入力エリアの余白指定用 ********************************************************************* */
  /* 以下の設定は必須です。必要に応じて追加してください */
  .form-area .spml0 {
    margin-left: 0;
  }
  .form-area .spml05 {
    margin-left: 0.5em;
  }
  .form-area .spml1 {
    margin-left: 1em;
  }
  .form-area .spml15 {
    margin-left: 1.5em;
  }
  .form-area .spmr0 {
    margin-right: 0;
  }
  .form-area .spmr05 {
    margin-right: 0.5em;
  }
  .form-area .spmr1 {
    margin-right: 1em;
  }
  .form-area .spmr15 {
    margin-right: 1.5em;
  }
  .form-area .spmt0 {
    margin-top: 0;
  }
  .form-area .spmt05 {
    margin-top: 0.5em;
  }
  .form-area .spmt1 {
    margin-top: 1em;
  }
  .form-area .spmt2 {
    margin-top: 2em;
  }

  /* フォーム部分のレイアウト *************************************************************************** */
  /* 以下の設定は基本的な設定です。参考にしながらスタイルを調整してください */
  .form-area .h-mes {
    font-size: 100%;
  }

  /* 確認画面 */
  .confirm.form-area .h-mes {
    margin-bottom: 0.4em;
  }

  /* テーブルスタイル調整 */

  .form-area table {
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
  }
  .form-area table th {
    display: block;
    width: 100%;
    padding: 1em 15px;
    border-top: 1px solid #e9e9e9;
    border-bottom: none;
    box-sizing: border-box;
    background: #eee;
  }
  .form-area table th.vat {
    padding: 1em 15px;
  }
  .form-area table td {
    display: block;
    width: 100%;
    padding: 1em 15px;
    border-top: 1px solid #e9e9e9;
    border-bottom: none;
    box-sizing: border-box;
  }
  .form-area table td dl {
    margin: 1em 0 0;
  }
  .form-area table td dl dt {
    width: 100%;
    display: block;
  }
  .form-area table td dl dt:before {
    content: '■ ';
  }
  .form-area table td dl dd {
    width: 100%;
    display: block;
    margin: 0.5em 0;
  }

  .form-area table td .mr23 {
    margin-right: 0;
  }

  .form-area .message {
    padding: 50px 15px;
  }

  .form-area .ex {
    margin-left: 0;
    margin-top: 0.2em;
    display: block;
  }

  /*必須*/
  .form-area .required:before {
    font-size: 12px;
    top: auto;
  }
  /* 住所検索ボタン */
  .form-area .btn-address {
    width: 100%;
    margin: 10px 0 0;
  }

  .form-area .name input {
    margin: 0 0 10px;
  }

  /* プライバシーポリシー部分のレイアウト *************************************************************************** */
  .form-area .attention {
    margin: 30px 15px;
    padding: 20px 15px;
    font-size: 10px;
  }
  .form-area .attention02 {
    font-size: 12px;
    padding: 0 15px;
  }
  .form-area .attention02 a {
    color: #000;
  }

  /* ボタン部分のレイアウト *************************************************************************** */
  /* 必要に応じてスタイルを修正してください */
  .form-area .btn-wrap {
    width: 100%;
    max-width: auto;
    margin: 0;
    padding: 30px 15px 0;
  }
  .form-area .btn-wrap li {
    width: 100% !important;
    height: 63px;
  }
  .form-area .btn-wrap li.b-send {
    float: none;
    margin-bottom: 15px;
  }
  .form-area .btn-wrap li.b-back {
    float: none;
  }
  .form-area .btn-wrap li.b-back:first-of-type {
  }
  .form-area .btn-wrap li input {
    height: 60px;
    width: 100%;
    border-radius: 0;
    font-size: 14px;
  }
  .form-area .btn-wrap li.b-conf input {
  }
  .form-area .btn-wrap li.b-send input {
  }
  .form-area .btn-wrap li.b-back input {
  }
}
</pre></body></html>