@charset "UTF-8";

/* _chatform.css */
:root {
  /* 下部バナーを非表示にしたい場合はnoneを設定してください。 */
  /* PC版 */
  --cf_header_display: block;
  /* スマフォ版 */
  --cf_sp_header_display: block;
  /* ヘッダー background-color */
  --cf_header_bg_color: linear-gradient(90deg, #ea5455 0%, #f2a17a 50%, #ea5455 100%);
  /* ヘッダー文字色 */
  --cf_header_font_color: #ffffff;
  /* 下部バナー background-color */
  --cf_contact_bg_color: linear-gradient(90deg, #ea5455 0%, #f2a17a 50%, #ea5455 100%);
  /* 吹き出し左 background-color */
  --cf_balloon_left_bg_color: #FFFB9A;
  /* 吹き出し右 background-color */
  --cf_balloon_right_bg_color: #DCEFF5;
  /* OKボタン background-color */
  --cf_ok_btn_bg_color: #228b6f;
  /*ボタン非活性時の色*/
  --cf_button_disable_color: #a5f1a6;
  /* 背景色 */
  --cf_backgrond_color: #ffffff;
  /* 全体文字色 */
  --cf_font_color: #313131;


}




/* 他社bootstrap リセットの際読み込み */
#chatform-container select,
#chatform-container input,
#chatform-container p,
#chatform-container label,
#chatform-container span {
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "YuGothic", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "MS UI Gothic" !important;
  font-size: 16px;
}

#chatform-container input[type=text],
#chatform-container input[type=email],
#chatform-container input[type=password],
#chatform-container input[type=tel] {
  border: solid 1px #121e3e !important;
  background-color: #ffffff !important;
  border-radius: 5px !important;
  width: 100%;
  height: 40px !important;
  line-height: 20px !important;
  padding: 2% !important;
  margin-top: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px !important;
}

#chatform-container select {
  border: 1px solid #121e3e;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  line-height: normal;
  background-color: #ffffff;
  font-size: 16px !important;
  width: 100%;
  color: #202020;
}

#chatform-container select:focus,
#chatform-container input[type=text]:focus,
#chatform-container input[type=tel]:focus,
#chatform-container input[type=email]:focus,
#chatform-container input[type=password]:focus {
  background-color: #fff;
}

#chatform-container input[type=text]:hover,
#chatform-container input[type=email]:hover,
#chatform-container input[type=tel]:hover,
#chatform-container input[type=password]:hover {
  opacity: 1;
}

#chatform-container label {
  display: inline-block;
}

#chatform-container img {
  width: 100%;
}

/* プレビュー用設定 */
.modal-preview {
  /*    height:600px;*/
  background-color: #FFDDBB;
  overflow: auto;
}

/* モーダルプレビュー画面 */
.modal-content-preview {
  width: 400px;
}

/* 全体枠(#cform-body)のスタイル */
#cform-body {
  word-break: break-all;
  line-break: normal;
  overflow: hidden;
  background-color: var(--cf_backgrond_color);
  /* 枠を外すのであればここコメントアウト */
  border: 1px solid #121e3e;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-top-left-radius: 10px;
  -moz-border-top-right-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "YuGothic", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic";
}

/* Chatformのスクロールコンテンツ枠(#cform-content)のスタイル */
#cform-content {
  padding: 80px 0 20px 0;
  font-size: 16px;
  line-height: 16px;
  color: var(--cf_font_color);
}

/* CHatformのフキダシコンテナ(.cform-balloon-container)のスタイル */
.cform-balloon-container {
  padding: 10px;
  /* フキダシ周囲の余白 */
}

/* CHatformのフキダシ共通(.cform-balloon)のスタイル */
.cform-balloon {
  border-radius: 16px;
  /* 角丸 */
  padding: 8px;
  /* 吹き出し余白 */
  margin-top: 5px;
  margin-left: 8px;
}

.cform-inner-balloon {
  border-radius: 16px;
  /* 角丸 */
  padding: 8px;
  /* 吹き出し余白 */
  margin-top: 5px;
  margin-left: 8px;
}

/* Chatformの左フキダシ(.cform-balloon.cform-left)のスタイル */
.cform-balloon.cform-left {
  background: var(--cf_balloon_left_bg_color);
  max-width: calc(90% - 40px);
  /* 最大幅(90%-アイコンサイズ) */
  font-weight: 500;
}

/* CHatformのフキダシコンテナ(.cform-balloon-container)のスタイル */
.cform-balloon-container {
  padding: 10px;
  /* フキダシ周囲の余白 */
}

/* 左吹き出しアイコン */
.cform-icon.cform-left {
  width: 40px;
  height: 40px;
}

/* Chatformの右フキダシ(.cform-balloon.cform-right)のスタイル */
.cform-balloon.cform-right {
  position: relative;
  float: right;
  background: var(--cf_balloon_right_bg_color);
  margin: 5 0 0 auto;
  width: 95%;
}

.cform-inner-balloon.cform-inner-right {
  position: relative;
  float: right;
  background: var(--cf_balloon_right_bg_color);
  margin: 5 0 0 auto;
  width: 95%;
}

/* Chatformの右アイコン(.cform-icon.cform-right)のスタイル */
.cform-icon.cform-right {
  display: none;
}

/* 吹き出しの口をつけるスタイル */
.cform-balloon:not(.cform-right):not(#cform-balloon-waitingBalloon):after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: -15px;
  border: 7px solid transparent;
  border-right: 18px solid var(--cf_balloon_left_bg_color);
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  z-index: -1;
}

/* ヘッダ(#cform-header)のスタイル */
#cform-header {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 60px;
  /* padding: 20px 15px; */
  background: var(--cf_header_bg_color);
  color: var(--cf_header_font_color);
  font-size: 20px;
  line-height: 20px;
  display: grid;
  place-items: center;
}

/* カウントダウンヘッダ(#cform-header-countdown-wrapper)のスタイル */
#cform-header-countdown-wrapper {
  position: absolute;
  box-sizing: border-box;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 50px;
  display: flex;
  background:var(--cf_header_bg_color);
  color: var(--cf_header_font_color);
  font-size: 20px;
  line-height: 20px;
  z-index:10000;
}

#cform-header-countdown-wrapper .box1 {
  width: 32%;
  background-color: #FFF100;
  text-align: center;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  line-height: 1.2;
  color: #333;
  font-size: 14px!important;
  font-weight: bold;
  transform: translateX(8px);
}

#cform-header-countdown-wrapper .box1 .box_txt1 {
  position:absolute;
  top:8px;
  font-weight:600;
  font-size: 106% !important;
}

#cform-header-countdown-wrapper .box1 .box_txt2 {
  position:absolute;
  top:26px;
  font-weight: 600;
  font-size: 106% !important;
}

#cform-header-countdown-wrapper .box2 {
  font-size: 14px!important;
  margin-left: 11px;
  margin-top: 13px;
}

#cform-header-countdown-wrapper .box2 span {
  font-size: 26px !important;
  padding: 3px;
}

/* ヘッダ画像 */
#cform-header .cform-header-image {
  position: absolute;
  top: 3px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

/* ヘッダ画像 ロゴ */
#cform-header .cform-header-logo {
  position: absolute;
  bottom: 5px;
  left: 22%;
  width: 55%;
}

/* ヘッダ文章 １段目 */
.cform-header-title {
  /* position: relative; */
  /* top: -30%; */
  /* left: 40%; */
  font-size: 22px !important;
  font-weight: 600;
}

/* ヘッダ文章 ２段目 */
.cform-header-title-sub {
  /* position: relative; */
  /* bottom: 40%; */
  /* left: 30%; */
  font-size: 16px !important;
  font-weight: 600;
}

/* ヘッダー閉じるボタン(#close)のスタイル */
#close.wrapactive {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* ヘッダー閉じるボタン(#close)のスタイル */
#close {
  position: absolute;
  right: 4px;
  top: 14px;
  width: 36px;
  height: 36px;
}

/* テキストフィールド、セレクタデザイン */
.cform-input {
  border: solid 1px #121e3e;
  background-color: #FFFFFF;
  border-radius: 5px;
  width: 100%;
  line-height: 20px;
  padding: 2% 1%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-cform-input {
  font-size: 16px;
  /* -webkit-transform: scale(0.9) translate(5%, 0%); */
  /* transform: scale(0.9) translate(5%, 0%); */
  padding: 2%;
}

/* ボタンデザイン */
.cform-button {
  margin-top: 10px;
  background: var(--cf_ok_btn_bg_color) !important;
  /*任意のカラーボタン*/
  color: #ffffff;
  /*任意のカラーボタン*/
  padding: 0 16px;
  height: 42px;
  border-radius: 30px;
  border: none;
  min-width: 40%;
  -webkit-appearance: none;
}

.cform-button:active {
  background-color: #BB8800;
  color: #BBBBBB;
}

.cform-button:disabled {
  opacity: 0.6;
  background-color: var(--cf_button_disable_color);
  color: #FFFFFF;
}

.ok_btn_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* ボタンを動かすバウンス */
#chatform-container .cform-button:not(.cform-button:disabled) {
  -webkit-animation: buttonMove 3s infinite ease-out;
  animation: buttonMove 3s infinite ease-out;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes buttonMove {
  5% {
    -webkit-transform: scale(1.2, 0.8);
    transform: scale(1.2, 0.8);
  }

  10% {
    -webkit-transform: scale(0.8, 1.2) translateY(-5px);
    transform: scale(0.8, 1.2) translateY(-5px);
  }

  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes buttonMove {
  5% {
    -webkit-transform: scale(1.2, 0.8);
    transform: scale(1.2, 0.8);
  }

  10% {
    -webkit-transform: scale(0.8, 1.2) translateY(-5px);
    transform: scale(0.8, 1.2) translateY(-5px);
  }

  15% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/* formbox */
.formbox {
  position: relative;
  text-align: left;
  width: 100%;
  float: left;
}

.formbox .left {
  float: left;
  /* padding-top: 2%; */
}

.formbox .right {
  float: right;
  width: 100%;
}

.formbox .cform_no_label {
  display: none;
}

/* パスワード */
.cform-passwd {
  position: relative;
  width: 100% !important;
  float: right;
}

/* パスワード表示アイコン */
.iconEye::after {
  position: relative;
  background: url("../img/eye-regular.png") no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  float: right;
  top: 10px;
  left: 140px;
}

.iconEyeOFF::after {
  position: relative;
  background: url("../img/eye-slash-solid.png") no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  float: right;
  top: 10px;
  left: 140px;
}

/*input = telの時firefoxに出る赤枠を消す*/
#chatform-container input:invalid {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* 氏名フィールド */
#chatform-container .sei {
  /* position: relative; */
  /* float: left; */
  /* width: 48% !important; */
  /* margin-bottom: 1px; */
  margin-right: 1%;
}

#chatform-container .mei {
  margin-left: 1%;
  /* position: relative; */
  /* width: 49% !important; */
  /* margin-bottom: 2px; */
}

/* 郵便番号 */
#chatform-container .post7 {
  width: 50% !important;
}

#chatform-container .post3 {
  width: 20% !important;
}

#chatform-container .post4 {
  width: 30% !important;
}

/* 住所 */
.addrtitle {
  float: left;
  margin-bottom: 0;
}

.postlabel {
  font-size: 0.9rem !important;
  color: #696969;
  /* float: right; */
}

.addr .addr2,
.addr .addr3 {
  border: solid 1px #121e3e;
  background-color: #FFFFFF;
}

.addrbox input[type=text],
.addrbox select {
  margin-top: 0;
  width: 100%;
}

/* 性別 ラジオボタンの装飾 */
.sex_radio_css {
  text-align: right;
  width: 100%;
}

.sex_radio_css input {
  display: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sex_radio_css label {
  display: inline-block;
  width: 23%;
  cursor: pointer;
  padding: 16px 10px;
  border-right: 1px solid #abb2b7;
  background: #bdc3c7;
  color: #555e64;
  font-size: 11px;
  text-align: center;
  line-height: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sex_radio_css label:first-of-type {
  border-radius: 3px 0 0 3px;
}

.sex_radio_css label:last-of-type {
  border-radius: 0 3px 3px 0;
}

.sex_radio_css input[type=radio]:checked+label {
  border-right: 1px solid #ffbb44;
  background-color: #ffbb44;
  color: #fff;
}

/* 横並び ラジオボタンの装飾 */
.radio_css {
  text-align: right;
  width: 100%;
  overflow: hidden;
}

.radio_css input {
  display: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.radio_css label {
  display: inline-block;
  cursor: pointer;
  border-right: 1px solid #abb2b7;
  background: #bdc3c7;
  color: #555e64;
  text-align: center;
}

.radio_css label {
  border-radius: 3px 3px 3px 3px;
}

.radio_css input[type=radio]:checked+label {
  border-right: 1px solid #3cb371;
  background-color: #3cb371;
  color: #fff;
}

/* 縦並び ラジオボタン */
.radio_block_css {
  float: right;
  width: 100%;
}

.radio_block_css input {
  display: block;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.radio_block_css label {
  cursor: pointer;
  margin: 0;
  padding: 10px 10px;
  border-bottom: 1px solid #abb2b7;
  background: #bdc3c7;
  color: #555e64;
  text-align: center;
  float: right;
  margin: 2px 1px 5px 10px;
  width: 55%;
  border-radius: 3px 3px 3px 3px;
}

.radio_block_css input[type=radio]:checked+label {
  border-bottom: 1px solid #3cb371;
  background-color: #3cb371;
  color: #fff;
}

/* 生年月日*/
.formbox .cf_year {
  position: relative;
  float: left;
  width: 20% !important;
  margin-left: 2%;
}

.formbox .cf_month,
.formbox .cf_day {
  position: relative;
  width: 20%;
  margin-left: 10%;
  float: left;
}

.formbox .cf_year select {
  position: relative;
  float: left;
  padding: 6px 2px 9px 13px !important;
}

.formbox .cf_month select,
.formbox .cf_day select {
  position: relative;
  float: left;
  padding: 6px 2px 9px 21px !important;
}

/* .formbox .cf_year span {
  position:relative;
  left:75px;
  top:10px;
  float: left;
}
 */
.formbox .cf_year span,
.formbox .cf_month span,
.formbox .cf_day span {
  position: relative;
  float: right;
  left: 20px;
  top: -20px;
}

.cf_month,
.cf_day {
  float: left;
  width: 30%;
}

.cf_year input,
.cf_year select {
  width: 65%;
  height: 35px;
}

.cf_month input,
.cf_month select,
.cf_day input,
.cf_day select {
  width: 63%;
  height: 35px;
}

.right.cf_date {
  float: right;
}

/* 時間 */
.cf_hour input,
.cf_minute input,
.cf_hour select,
.cf_minute select,
.cf_select_hour,
.cf_select_minute {
  text-align: center;
  width: 35px;
  height: 35px;
  margin: 3px;
}

.cf_select_hour,
.cf_select_minute {
  width: 40%;
}

.cf_hour,
.cf_minute {
  display: inline;
}

/* メールアドレス */
.cf_mail1 {
  width: 45%;
  float: left;
}

.cf_mail2 {
  width: 48%;
}

#chatform-container .mail {
  width: 200px;
}

#chatform-container .mail1 {
  width: 28%;
}

#chatform-container .mail2 {
  width: 28%;
  float: right;
}

/* 電話番号 */
.cf_tel1,
.cf_tel2,
.cf_tel3 {
  width: 30%;
}

.cf_tel {
  width: 100%;
}

#chatform-container .tel1,
#chatform-container .tel2,
#chatform-container .tel3 {
  width: 20%;
}

#chatform-container .tel {
  width: 50%;
}

/* 選択ボックス */
.formbox select {
  border: 1px solid #121e3e;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 2%;
  border-radius: 5px;
  /*    font-size:12px;*/
  /* width: 80%; */
  height: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* ボックスの境界線を実線で指定する */
}

/* 横並び チェックボックスの装飾 */
.checkbox_css {
  float: right;
  width: 100%;
  /* overflow: hidden; */
}

.checkbox_css input {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.checkbox_css label {
  cursor: pointer;
  background: #bdc3c7;
  color: #555e64;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 3px 3px 3px 3px;
  display: block;
  float: right;
}

.checkbox_css input[type=checkbox]:checked+label {
  background-color: #ffbb44;
  color: #fff;
}

/* 縦並び チェックボックスの装飾 */
.checkbox_block_css {
  float: right;
  width: 100%;
}

.checkbox_block_css input {
  display: block;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkbox_block_css label {
  cursor: pointer;
  margin: 0;
  padding: 10px 10px;
  border-bottom: 1px solid #abb2b7;
  background: #bdc3c7;
  color: #555e64;
  text-align: center;
  float: right;
  margin: 2px 1px 5px 10px;
  width: 55%;
  border-radius: 3px 3px 3px 3px;
}

.checkbox_block_css input[type=checkbox]:checked+label {
  background-color: #ffbb44;
  border-bottom: 1px solid #ffbb44;
  color: #fff;
}

/* ラジオボタンのデフォルトデザイン 横並び*/
.radio_default_css .rwidth1,
.radio_default_css .rwidth2,
.radio_default_css .rwidth3,
.radio_default_css .rwidth {
  display: inline-block;
  cursor: pointer;
  margin: 2px;
  padding: 16px 10px;
  color: #555e64;
  text-align: center;
}

/* ラジオボタンのデフォルトデザイン 縦並び */
.radio_block_default_css input {
  margin-right: 3%;
}

/* チェックボックスのデフォルトデザイン  縦並び */
.checkbox_block_default_css input {
  margin-right: 3%;
}

/* ラジオボタンのボタンデザイン 横並び*/
.radio_css .rwidth3 label,
.radio_css .rwidth2 label,
.radio_css .rwidth1 label,
.radio_css .rwidth label {
  display: block;
  padding: 36% 3%;
  margin: 0.5%;
  overflow: hidden;
  width: 100%;
}

.radio_css .rwidth {
  display: inline-block;
  padding: 5% 1%;
  margin: 0.5%;
  width: 20%;
}

.radio_css .rwidth3 {
  display: inline-block;
  padding: 5% 1%;
  margin: 0.5%;
  width: 20%;
}

.radio_css .rwidth2 {
  display: inline-block;
  padding: 5% 1%;
  margin: 0.5%;
  width: 20%;
}

.radio_css .rwidth1 {
  display: inline-block;
  padding: 5% 1%;
  margin: 0.5%;
  width: 20%;
}

.rwidth3,
.rwidth2,
.rwidth1 {
  text-align: left;
}

/* チェックボックスのデフォルトデザイン 横並び*/
.checkbox_default_css input {
  display: inline-block;
  margin: 2px;
  text-align: center;
}

.checkbox_default_css .cwidth {
  display: inline-block;
  margin: 3%;
}

.checkbox_default_css .cwidth3 {
  display: inline-block;
  margin: 3%;
}

.checkbox_default_css .cwidth2 {
  display: inline-block;
  margin: 3%;
}

.checkbox_default_css .cwidth1 {
  display: inline-block;
  margin: 3%;
}

/* チェックボックスのボタンデザイン 横並び*/
.checkbox_css .cwidth,
.checkbox_css .cwidth3,
.checkbox_css .cwidth2,
.checkbox_css .cwidth1 {
  display: inline-block;
  padding: 1.5% 1%;
  margin: 0.5%;
  width: 22%;
}

.checkbox_css .cwidth label,
.checkbox_css .cwidth3 label,
.checkbox_css .cwidth2 label,
.checkbox_css .cwidth1 label {
  display: block;
  padding: 30% 3%;
  margin: 0.5%;
  overflow: hidden;
  width: 100%;
}

/* 囲い込みデザイン */
.boxdesign {
  position: relative;
  margin: 2em 0;
  overflow: hidden;
  padding: 25px 10px 7px;
  border: solid 2px #121213;
}

.boxdesign .box-title {
  position: absolute;
  display: inline-block;
  top: -2px;
  left: -2px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #121213;
  color: #ffffff;
  font-weight: bold;
}

.boxdesign p {
  margin: 0;
  padding: 0;
}

/* カルーセル周り ----------------------------------------------
.cform_carousel {
    margin: 0 0 12px;
}
.cform_carousel img {
    width: 100%;
    height: auto;
}
.cform_carousel .slick-slide:not(.slick-center) {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* ロード中は非表示にする設定 */
/*.slider {
  display:none;
}

.slider.slick-initialized {
  display: block;
}
*/
/* 矢印用スタイル */
/*
.cform_carousel .prev-arrow,
.cform_carousel .next-arrow {
  position: absolute;
  top: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.cform_carousel .prev-arrow {
  left: 43px;
  z-index: 99;
}

.cform_carousel .next-arrow {
  right: 43px;
  z-index: 100;
}
------------------------------------------------------*/
/* クレジットカード */
.right .cf_credit {
  width: 40% !important;
}

.cf_creditcard {
  width: 100% !important;
}

.cf_credit {
  /* position: relative; */
  /* float: left; */
  /* height: 45px; */
}

.cf_credit select {
  /* float: left; */
  padding: 2% !important;
}

.cf_credit+.cf_credit {
  margin-left: 10%;
}

.cf_credit span,
.cf_credit span {
  float: right;
  position: relative;
  width: 10px;
  left: 20px;
  bottom: 25px;
}

.formbox .cf_credit {
  /* position: relative; */
  /* margin-bottom: 5px !important; */
  width: 100%;
}

/* 下部バナーチャットフォーム起動ボタン */
#cf-contact {
  display: var(--cf_header_display);
  position: fixed;
  z-index: 1;
  width: 380px !important;
  height: 60px !important;
  background: var(--cf_contact_bg_color);
  border-radius: 40px;
  color: black;
  /* border: 4px solid #fae9db !important; */
}

.header-image-box {
  /* height:100%; */
  display: block;
}

.header-image-box .header-image {
  position: relative;
  max-height: 100%;
  max-width: 100%;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  padding: 1.1%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0px;
}

#cf-contact::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 0 0 8px;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  background-image: url("../img/header_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
}

#cf-contact.wrapactive::after {
  -webkit-transition: all 0.4s ease 0.8s;
  transition: all 0.4s ease 0.8s;
}

#cf-contact.wrapactive::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.header-title-box {
  position: absolute;
  top: 10%;
  /* left: 20%; */
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 110px);
  flex: 0 0 calc(100% - 110px);
  display: flex;
  justify-content: center;
}

.header-image-box .header-image {
  width: 60px;
  height: 60px;
}

.header-image-box::before {
  content: "";
  -webkit-box-sizing: initial;
  box-sizing: initial;
  position: absolute;
  bottom: 26px;
  left: 68px;
  border-style: solid;
  border-width: 4px 9px 4px 0;
  border-color: transparent #fff transparent transparent;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
  opacity: 1;
  visibility: visible;
}

.header-title-main {
  position: relative;
  visibility: visible;
  opacity: 1;
  width: 55%;
  color: #000;
  line-height: 48px;
  font-weight: 500;
  background-color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 10px;
  border-radius: 20px;
  text-overflow: ellipsis;
}

/* 選択画像枠追加 */
/*.slick-current img{
    border:solid 4px #38B59C;
}*/
/* ファイル選択ボタン */
.cform_file_selection {
  -webkit-appearance: push-button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: pre;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: center;
  cursor: default;
  color: buttontext;
  background-color: buttonface;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1px 6px;
  border-width: 2px;
  border-style: outset;
  border-color: buttonface;
  -webkit-border-image: initial;
  -o-border-image: initial;
  border-image: initial;
}

.cform_selected_file {
  padding: 2%;
  font-size: 14px;
}

.cform_selected_file_fake {
  display: none;
}

/* 性別 ラジオボタンの装飾 */
.sex_radio_css.radio_icon input {
  display: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sex_radio_css.radio_icon {
  text-align: left;
  padding: 8px;
}

.sex_radio_css.radio_icon label {
  padding: 0;
  border-right: none;
}

.sex_radio_css.radio_icon div {
  position: relative;
  top: 0px;
}

.sex_radio_css.radio_icon>div:first-child {
  position: relative;
  float: left;
  width: 49% !important;
  height: 50px !important;
}

.sex_radio_css.radio_icon>div:last-child {
  position: relative;
  float: right;
  width: 49% !important;
  height: 50px !important;
}

.sex_radio_css.radio_icon>div label {
  width: 100% !important;
  text-align: center;
}

.sex_radio_css.radio_icon {
  position: relative;
  padding: 0 !important;
  display: table;
  margin: 0 0 0 0;
  width: 100%;
  border-spacing: 1px;
  table-layout: fixed;
}

.sex_radio_css.radio_icon>div input~label {
  background-color: #ffffff;
}

.sex_radio_css.radio_icon>div:first-child input:checked~label {
  background-color: #0a5dd0 !important;
  border-right: 1px solid #0a5dd0;
  color: #ffffff;
}

.sex_radio_css.radio_icon>div:last-child input:checked~label {
  background-color: #ff69a8 !important;
  border-right: 1px solid #ff69a8;
  color: #ffffff;
}

.sex_radio_css.radio_icon>div:first-child input~label {
  background-color: #ffffff !important;
  color: #0a5dd0;
  height: 100% !important;
}

.sex_radio_css.radio_icon>div:last-child input~label {
  background-color: #ffffff !important;
  color: #ff69a8;
  height: 100% !important;
}

.cf_icon {
  margin-top: 3%;
  font-size: 40px !important;
}

.sex_radio_css.radio_icon>div:first-child input~label,
.sex_radio_css.radio_icon>div:last-child input~label {
  border-radius: 3px 3px 3px 3px;
}

/* エラー表示箇所強制調整 */
/* validationのエラーが下に行き過ぎる場合指定ください。*/
/*.sex_radio_css.radio_icon > div .formError {
  top: 2px !important;
}*/
/* ラジオボタンの装飾　*/
.radio_design_css input[type=radio] {
  display: none;
}

.radio_design_css>div {
  display: table;
  float: right;
  width: 100%;
}

.radio_design_css div {
  position: relative;
  float: right;
}

.radio_design_css input:checked~label {
  background-color: #f1e1ca !important;
  color: #000000;
}

.radio_design_css input~label {
  background-color: #ffffff !important;
  color: #000000;
}

.radio_design_css input+label {
  padding-left: 30px;
  position: relative;
}

.radio_design_css input+label::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
  width: 17px;
  height: 17px;
  border: 1px solid #dec159;
  border-radius: 50%;
}

.radio_design_css input:checked+label {
  color: black;
}

.radio_design_css input:checked+label::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 10px;
  width: 11px;
  height: 11px;
  background: #dec159;
  border-radius: 50%;
}

.radio_design_css label {
  display: table;
  table-layout: fixed;
  width: 100%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 8px 10px 8px;
  text-align: left !important;
  margin-bottom: 3px;
}

.radio_design_css div:first-child label {
  border-top-left-radius: 10px !important;
  /* -webkit-border-top-left-radius: 10px !important; */
  -moz-border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  /* -webkit-border-top-right-radius: 10px !important; */
  -moz-border-top-right-radius: 10px !important;
}

.radio_design_css div:last-child label {
  border-bottom-left-radius: 10px !important;
  -webkit-border-bottom-left-radius: 10px !important;
  -moz-border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  -webkit-border-bottom-right-radius: 10px !important;
  -moz-border-top-bottom-radius: 10px !important;
}

/* 画像ラジオボタン */
.radio_img_css input[type=radio] {
  display: none;
}

.radio_img_css>div {
  display: table;
  float: right;
  width: 100%;
}

.radio_img_css div {
  position: relative;
  float: right;
}

.radio_img_css input:checked~label {
  background-color: #f1e1ca !important;
}

.radio_img_css input~label {
  background-color: #ffffff !important;
}

.radio_img_css label {
  display: table;
  table-layout: fixed;
  width: 100%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 8px 10px 8px;
  margin-bottom: 3px;
}

.radio_img_css label::before,
.radio_img_css label::after {
  display: none !important;
}

/* 部品タイトル */
.formbox .left label {
  position: relative;
  margin-top: 2.5%;
  margin-bottom: 2px;
  width: 100%;
}

/* 注意書き*/
span .cf_note {
  position: relative;
  font-size: 0.7rem !important;
  color: blue;
}

/* エラーメッセージ */
#cform-email-error {
  position: relative;
  float: right;
  font-size: 0.8rem;
  color: red;
  font-weight: bold;
}

/* マスク処理 */
.cform-form-warp.cf-mask {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  z-index: 1;
  opacity: 0.3;
  background: #000;
  color: #fff;
  pointer-events: none;
}

/**** 顧客固有設定 ******************************************************************************************/
/* 入力確認のタイトル */
.cf_title_header {
  font-weight: 600;
  font-size: 15px !important;
  margin-bottom: 10px;
}

/* お届け予定日 */
.cf_delivday_box {
  border: 1px solid #ccc;
  padding: 10px;
  background: #f2fafe;
}

.cf_regular_deliv_day {
  border-left: 2px dotted #ccc;
  padding-left: 5px;
  padding-right: 5px;
}

.cf_delivday_message {
  padding-bottom: 10px;
}

/* submitボタン */
.bt-submit {
  margin-top: 20px;
  margin-bottom: 10px;
}

.bt-image {
  background: none!important;
  width: 100%;
  height: 100%;
  border-radius: 45px;
}

/* 確認画面の水平の横線（hrタグ） */
.cf_hr {
  border-top: 1px dotted;
  border-right: none;
  border-bottom: none;
  border-left: none;
  margin: 8px 0px;
}

/* 規約 */
.cform-terms {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* 必須&任意 */
span.cf_note_any {
  margin: 0 5px;
  padding: 0 5px;
  font-size: 12px !important;
  background: #999;
  line-height: 16px;
  color: #fff;
}

span.cf_note_required {
  margin: 0 5px;
  padding: 0 5px;
  font-size: 12px !important;
  background: #e54848;
  line-height: 16px;
  color: #fff;
}

/* 埋め込み規約 */
.cform_compo-privacy {
  overflow: auto;
  margin-bottom: 0px;
  padding: 15px;
  background-color: white;
  height: 200px;
  line-height: 18px;
  border: 1px solid #CCC;
}

.header-e {
  margin-top: 15px;
}

.cform_compo-privacy header {
  margin-bottom: 10px;
  border-bottom: solid 2px #202020;
}
/* フラバン血管用の商品選択ボタン */
.flavan-button label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 2%;
  padding: 1em 2em;
  width: 330px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  background-color: #bbbbbb;
  box-shadow: 0 0 10px rgba(0 0 0 / .2);
  border-radius: 6px;
  transition: 0.3s;
}

.flavan-button label:hover {
  text-decoration: none;
  background-color: #aaaaaa;
  box-shadow: 0 0 10px rgba(0 0 0 / 0);
}
.flavan-button input:checked~label{
  background-color: #228b6f !important;
  color:#fff;
}
/**********************************************************************************************/
/* スマフォ対応 */
@media only screen and (max-device-width: 480px) {

  /* 吹き出し内左寄せ */
  .cform-balloon {
    text-align: left;
  }

  /* カルーセル */
  .cform_carousel .prev-arrow {
    left: 5%;
    z-index: 99;
  }

  .cform_carousel .next-arrow {
    right: 5%;
    z-index: 100;
  }

  /* クーポンエラー */
  #cform-coupon-error {
    font-size: 13px;
  }

  /* 下部バナーのデザイン */
  #cf-contact {
    display: var(--cf_sp_header_display);
    position: fixed;
    z-index: 100000 !important;
    left: 0% !important;
    top: 90% !important;
    width: 100% !important;
    height: 60px !important;
  }

  .header-image-box {
    display: block;
  }

  /* 下部バナー　矢印 */
  .header-image-box::before {
    content: "";
    -webkit-box-sizing: initial;
    box-sizing: initial;
    position: absolute;
    bottom: 45%;
    left: 22%;
    border-style: solid;
    border-width: 4px 12px 4px 0;
    border-color: transparent #fff transparent transparent;
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
    opacity: 1;
    visibility: visible;
  }

  /* 下部バナー　白い吹き出し */
  .header-title-box {
    /* position: absolute; */
    top: 0%;
    height: 100% !important;
    display: flex;
    align-items: center;
    /* width: calc(100% - 15px); */
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 15px);
    flex: 0 0 calc(100% - 15px);
    justify-content: center;
  }

  /* 下部バナー　白い吹き出し */
  .header-title-main {
    position: relative;
    visibility: visible;
    opacity: 1;
    width: 50vw;
    color: #333;
    /* line-height: 217%; */
    margin-left: 4%;
    font-weight: 500;
    background-color: #fff;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 20px;
    text-overflow: ellipsis;
  }

  /* 下部バナー　（へ）のところ */
  #cf-contact::after {
    content: "";
    width: 20px;
    height: 20px;
    margin: 0 0 0 8px;
    -webkit-box-sizing: initial;
    box-sizing: initial;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 10px);
  }

  #cf-contact.wrapactive::after {
    -webkit-transition: all 0.4s ease 0.8s;
    transition: all 0.4s ease 0.8s;
  }

  #cf-contact.wrapactive::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  /* ヘッダー */
  #cform-header {
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    /* 変数をサポートしていないブラウザのフォールバック */
    text-align: center;
  }

  #cform-header .cform-header-image {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    left: 4%;
    top: 10%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
  }

  #cform-header .cform-header-logo {
    position: absolute;
    bottom: 10%;
    left: 26%;
    width: 55%;
  }

  /* ヘッダータイトル １行目*/
  .cform-header-title {
    position: relative;
    font-size: 14px;
    overflow: hidden;
    padding: 0 10px;
    visibility: visible;
    /* bottom: 10px; */
    /* left: 0; */
  }

  /* ヘッダータイトル ２行目*/
  .cform-header-title-sub {
    position: relative;
    font-size: 14px;
    overflow: hidden;
    padding: 0 10px;
    visibility: visible;
    /* bottom: 10px; */
    /* left: 0; */
  }
  
/* カウントダウンヘッダ(#cform-header-countdown-wrapper)のスタイル */
  #cform-header-countdown-wrapper .box1 .box_txt1 {
    position:absolute;
    top:8px;
    font-weight:600;
    font-size: 106% !important;
  }
  
  #cform-header-countdown-wrapper .box1 {
    font-size: 3vw !important;
  }
  
  #cform-header-countdown-wrapper .box1 .box_txt2 {
    position:absolute;
    top:26px;
    font-weight: 600;
    font-size: 106% !important;
  }
  
  #cform-header-countdown-wrapper .box2 {
    font-size: 3vw !important;
  }
  
  #cform-header-countdown-wrapper .box2 span {
    font-size: 7vw !important;
    padding: 3px;
  }

  #close {
    position: absolute;
    right: 2%;
    top: 25%;
    width: 36px;
    height: 36px;
  }

  /* 郵便番号 */
  #chatform-container .post7 {
    width: 85px !important;
    /* text-align: center; */
  }

  /* テキストエリア */
  #chatform-container textarea {
    position: relative;
    right: 25px;
    width: 110%;
  }

  /* 数量 */
  .cf_suryo {
    position: relative;
    float: right;
    width: 50px !important;
  }

  .cf_suryo_title {
    position: relative;
    top: 28px;
    left: 180px;
  }

  /* aリンクをブルーに */
  .cwidth1 a {
    color: blue;
    text-decoration: underline;
  }

  /* 住所 */
  #chatform-container .addrtitle {
    float: left;
    margin-top: 2%;
  }

  #chatform-container .zip {
    position: relative;
    /* right: 10%; */
    /* width: 110% !important; */
    /* text-align: left; */
  }

  #chatform-container .pref {
    position: relative;
    /* right: 10%; */
    /* width: 110% !important; */
  }

  #chatform-container .addr1,
  #chatform-container .addr2,
  #chatform-container .addr3 {
    position: relative;
    /* right: 10%; */
  }

  #chatform-container .addr .addr2,
  #chatform-container .addr .addr3 {
    border: solid 1px #121e3e !important;
    background-color: #FFFFFF !important;
  }

  /* ラベル（ハイフン無しで入力） */
  #chatform-container .postlabel {
    font-size: 10px !important;
    float: right;
    color: #696969;
  }

  /* 氏名 */
  #chatform-container .sei {
    float: left;
    right: 12px;
    width: 49% !important;
  }

  #chatform-container .mei {
    right: 12px;
    width: 48% !important;
  }

  /* 電話番号、メール */
  .cf_tel,
  .cf_mail {
    /* position: relative; */
    /* right: 10%; */
    /* width: 110% !important; */
  }

  /* クレジットカード */
  .cf_creditcard {
    /* position: relative; */
    /* right: 10%; */
    /* width: 110% !important; */
  }

  /* 生年月日*/
  .formbox .cf_year select {
    position: relative;
    float: left;
    width: 110% !important;
    line-height: 25px !important;
  }

  .formbox .cf_year span {
    position: relative;
    float: right;
    left: 27px;
    top: -20px;
  }

  .formbox .cf_month select,
  .formbox .cf_day select {
    float: left;
    line-height: 25px !important;
    padding: 2% 36% !important;
  }

  .formbox .cf_month span,
  .formbox .cf_day span {
    float: right;
    /* padding-top:10px; */
  }

  .radio_block_default_css>div {
    display: table;
    float: right;
    width: 100%;
  }

  .radio_block_default_css div {
    position: relative;
    margin-top: 2px !important;
    float: right;
  }

  .rwidth input:checked~label,
  .rwidth1 input:checked~label,
  .rwidth2 input:checked~label,
  .rwidth5 input:checked~label {
    background-color: #f1e1ca !important;
    color: #000000;
  }

  .rwidth input~label,
  .rwidth1 input~label,
  .rwidth2 input~label,
  .rwidth5 input~label {
    background-color: #ffffff !important;
    color: #000000;
  }

  .rwidth input+label,
  .rwidth1 input+label,
  .rwidth2 input+label,
  .rwidth5 input+label {
    /* padding-left: 30px; */
    position: relative;
  }

  .rwidth input+label::before,
  .rwidth1 input+label::before,
  .rwidth2 input+label::before,
  .rwidth5 input+label::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #dec159;
    border-radius: 50%;
  }

  .rwidth input:checked+label,
  .rwidth1 input:checked+label,
  .rwidth2 input:checked+label,
  .rwidth5 input:checked+label {
    color: black;
  }

  .rwidth input:checked+label::after,
  .rwidth1 input:checked+label::after,
  .rwidth2 input:checked+label::after,
  .rwidth5 input:checked+label::after {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: #dec159;
    border-radius: 50%;
  }

  .rwidth label,
  .rwidth1 label,
  .rwidth2 label,
  .rwidth5 label {
    display: table;
    table-layout: fixed;
    width: 100%;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 8px 8px 8px;
    text-align: left !important;
  }

  .radio_block_default_css div:first-child label {
    border-top-left-radius: 10px !important;
    /* -webkit-border-top-left-radius: 10px !important; */
    -moz-border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    /* -webkit-border-top-right-radius: 10px !important; */
    -moz-border-top-right-radius: 10px !important;
  }

  .radio_block_default_css div:last-child label {
    border-bottom-left-radius: 10px !important;
    -webkit-border-bottom-left-radius: 10px !important;
    -moz-border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    -webkit-border-bottom-right-radius: 10px !important;
    -moz-border-top-bottom-radius: 10px !important;
  }

  /* クレジットカード */
  .right .cf_credit {
    position: relative;
    right: 10px;
    width: 44.5% !important;
  }

  #chatform-container span.credit_month {
    /* display: none; */
  }

  #chatform-container span.credit_year {
    /* display: none; */
  }

  /* クレジットカード名義 姓名１行の場合 */
  #chatform-container .cf_creditCardName {
    /* position: relative; */
    /* width: 110% !important; */
    /* right: 30px; */
  }
  /* フラバン血管用の商品選択ボタン */
  .flavan-button label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 0%;
    padding: 1em 2em;
    width: 330px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    background-color: #bbbbbb;
    box-shadow: 0 0 10px rgba(0 0 0 / .2);
    border-radius: 6px;
    transition: 0.3s;
  }
  
  .flavan-button label:hover {
    text-decoration: none;
    background-color: #aaaaaa;
    box-shadow: 0 0 10px rgba(0 0 0 / 0);
  }
  .flavan-button input:checked~label{
    background-color: #228b6f !important;
    color:#fff;
  }

  #chatform-container .cf_scrollarea_caution {
    height: 200px;
    background: #fff;
    border: 1px solid #ddd;
    overflow-y: scroll;
  }
}

/* スマフォ end */
/***********************************************************************/
/******* プログレスバーCSS                                   ***********/
/***********************************************************************/
.cform-balloon.cform-right {
  position: relative;
  margin-bottom: 20px;
}

/* プログレスバーUIのコンテナ（枠の位置や大きさ)*/
.cform-progress-bar-container {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 40px;
}

/* プログレスバーの背景(通常背景と同色にしている) */
.cform-progress-bar-bg {
  background-color: #FFDDBB;
  position: absolute;
  bottom: 0px;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* プログレスバーの枠の設定 */
.cform-progress-bar-border {
  border-radius: 10px;
  width: calc(100% - 20px);
  height: 20px;
  margin: 10px 10px 10px 10px;
  background-color: #ffffff;
  border: solid 1px #FFBB44;
}

/* プログレスバーの中身の設定 */
.cform-progress-bar-content {
  border-radius: 8px;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #FFBB44;
}

/* プログレスバーのラベルの設定 */
.cform-progress-bar-label {
  position: absolute;
  top: 11px;
  color: #884422;
  font-size: 15px;
  margin: 0 0 0 16px;
}

/* 画面上につけたい場合 */
/* Chatformのスクロールコンテンツ枠(#cform-content)のスタイル */
/* スクロール上下の余白(ヘッダ分の余白 + 20px) */
/* 
#cform-content{
	padding :80px 0 20px 0;
}
*/
/* プログレス分の余裕を下につけた例。*/
/* プログレスをうえに */
/* スクロール上下の余白(ヘッダ分の余白 + 40px) */
/*
#cform-content{
	padding :80px 0 40px 0;
}
*/
/* 全体の基本文字サイズ */
/*
#cform-content{
	font-size:16px;
	line-height:16px;
	color:#000000;
}
*/
/* 文字の色  */
/***********************************************************************/

#chatform-container .cf_scrollarea_wrapper {
  width: 100%;
}

#chatform-container .cf_scrollarea {
  height: 200px;
  background: #fff;
  border: 1px solid #ddd;
  overflow-y: scroll;
}

#chatform-container .cf_scrollarea_inner {
  padding: 7px;
  line-height: 1.4;
}

#chatform-container .cf_scrollarea_inner p {
  font-size: 13px;
}

#chatform-container .cf_scrollarea_inner {
  font-size: 13px;
}

#chatform-container .cf_scrollarea_inner span {
  font-size: 13px;
  display: block;
}

#chatform-container .cf_scrollarea h4 {
  font-size: 16px !important;
  margin: 12px 0 8px 0;
}

#chatform-container .cf_cartResult p {
  font-size: 14px;
  line-height: 18px;
}