
/*====================================*/
/*　お問い合わせCSS                     */
/*  Layout settings                    */
/*====================================*/
/*-------------------------------------*/
/*　ブラウザリセット                     */
/*-------------------------------------*/
h1, h2, h3, h4, h5, h6, em, address, p, th {
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
  margin: 0;
  padding: 0;
}

/*-------------------------------------*/
/*　FAQ共有                             */
/*-------------------------------------*/
/*FAQ外枠*/
.l_wrapper{
  margin: 0 ;
  padding: 0;
  background: #ffffff;	/*背景色*/
  min-height: 100%;
  color:#222222;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size:14px;
}

/*ヘッダー部分*/
header{
  background-color: #94233e;
  width: 100%;
  height:75px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 -1px 0 #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

/*フッター部分*/
footer{
  width: 100%;
  padding: 5px 0 0;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

/*コンテンツ外枠*/
.l_contents{
  width: 95%;
  margin:0 auto;
}

/*ボタン共通スタイル*/
.button_syle{
  font-size:14px;
  margin: 0 auto 20px;
  padding: 0;
  border: 0;
  min-height: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  color: #ffffff;
  min-width: 0.75em;
  display: block;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  zoom: 1;
  border-top: 1px solid #ffffff;
  border-color: rgba(255,255,255,.3);
  text-shadow: 1px 1px 0px #999;
  text-decoration: none;
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,.2);
  -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
  box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
  -webkit-border-radius: 1em;
  border-radius: 1em;
  text-align: center;
  width: 45%;
}

@media screen and (max-width: 751px) {
  .button_syle{
    width: 100%;
  }
}

/*戻る・キャンセル用のボタン*/
.button_cancel {
  padding: 0.6em 20px;
  border: 1px solid #999999;
  background: -moz-linear-gradient(top, rgba(132,132,132,1) 0%, rgba(117,117,117,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(132,132,132,1)), color-stop(100%,rgba(117,117,117,1)));
  background: -webkit-linear-gradient(top, rgba(132,132,132,1) 0%,rgba(117,117,117,1) 100%);
}

/*次へ・送信する用のボタン*/
.button_next {
  padding: 0.6em 20px;
  text-shadow: 1px 1px 0px #94233e;
  border: 1px solid #761c32;	/*ボタンの枠の色*/
  background: #94233e;			/*ボタンの配色*/
}


/*解決したボタン*/
.button_solution {
  padding: 0.6em 20px;
  color: #94233e;
  text-shadow: 1px 1px 0px #f6f5f2;
  border: 1px solid #761c32;	/*ボタンの枠の色*/
  background: #ffffff;			/*ボタンの配色*/
}

/*センター設定*/
.text_center{
  text-align: center;
}

/*トップページへ戻るボタン*/
.button_top{
  background: #94233e;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.5;
}

@media screen and (max-width: 751px) {
  .button_top{
    width: 50px;
    height: 50px;
  }
}

/*-------------------------------------*/
/*　FAQ関連                              */
/*-------------------------------------*/
/*　01.共通　　　　　　　　　　　　　　　　*/
/*-------------------------------------*/
/*タイトル*/
.title_background_color{
  padding: 0.6em 20px;
  font-size: 14px;
  color: #ffffff;
  text-shadow: 0 0 3px #333333;
  background: #d3047;
  background: -webkit-gradient(linear, left top, left bottom, from(#042a41), to(#0d3047));
  background: -moz-linear-gradient(top, #042a41, #0d3047);
  background: -o-linear-gradient(top, #042a41, #0d3047);
  background: -ms-linear-gradient(top, #042a41, #0d3047);
  background: linear-gradient(top, #042a41, #0d3047);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#042a41', endColorstr='#0d3047');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#042a41', endColorstr='#0d3047')";
  background: linear-gradient(top, #042a41, #0d3047);
  border-radius: 0.5em;
}

/*フッター部分のボタン配置用*/
.faq_fotter_button_box{
  padding-bottom:20px;
}

/*ボタン配置用*/
.button_detaile_form{
  margin: 20px auto 0;
}

/*　02.一覧用　　　　　　　　　　　　　　　　*/
/*-------------------------------------*/
/*FAQ外枠設定*/
.l_faq_box{
  margin:0 auto;
}

/*設置したHTMLの表示部分*/
.faq_list_haeder_box{
  margin-top: 30px;
  padding: 0;
}

/*検索タイトル*/
.fas_search_title{
  text-shadow: 0 0 3px #333333;
  font-weight: bold;
  word-wrap:break-word;
  overflow-wrap:break-word;
  white-space:normal;
}

/*件数*/
.faq_cnt {
  text-align:right;
  font-weight: bold;
}

/*FAQリスト*/
ul.faq_list{
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

/*FAQ一覧用*/
ul.faq_list li{
  position: relative;
  padding: 0.6em 20px 0.6em 5px;
  font-size: 14px;
  text-shadow: 0 1px 1px #f6f6f6;
  font-weight: bold;
  color: #2f3e46;
  background: #efefef;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#efefef));
  background: -moz-linear-gradient(top, #fdfdfd, #efefef);
  background: -o-linear-gradient(top, #fdfdfd, #efefef);
  background: -ms-linear-gradient(top, #fdfdfd, #efefef);
  background: linear-gradient(top, #fdfdfd, #efefef);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fdfdfd', endColorstr='#efefef');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fdfdfd', endColorstr='#efefef')";
  background: linear-gradient(top, #fdfdfd, #efefef);
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  zoom: 1;
  white-space: nowrap;
}

ul.faq_list li a{
  display:block;
  text-decoration: none;
  color: #2f3e46;
  text-overflow: ellipsis;
  overflow: hidden;
}

ul.faq_list li.last_line{
  border:none;
  margin: 0;
  border-bottom-right-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}

ul.faq_list li:last-child{
  border:none;
  margin: 0;
  border-bottom-right-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}

ul.faq_list li:before{
  font-family: 'Font Awesome 5 Free';
  content: '\f138';
  position: absolute;
  right: 0.3em;
  color: #94233e;
  font-size: 1.2em;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ul.faq_list li:first-child{
  color: #ffffff;
  text-shadow: 0 0 3px #333333;
  background: #08609b;
  background: -webkit-gradient(linear, left top, left bottom, from(#042a41), to(#0d3047));
  background: -moz-linear-gradient(top, #042a41, #0d3047);
  background: -o-linear-gradient(top, #042a41, #0d3047);
  background: -ms-linear-gradient(top, #042a41, #0d3047);
  background: linear-gradient(top, #042a41, #0d3047);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#042a41', endColorstr='#0d3047');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#042a41', endColorstr='#0d3047')";
  background: linear-gradient(top, #042a41, #0d3047);
  border-top-right-radius: 0.5em;
  border-top-left-radius: 0.5em;
}

ul.faq_list li:first-child:before{
  content : none
}

ul.faq_list li.text_center:before{
  content : none
}

/*検索用フォーム*/
.searchform{
  padding: 0;
}

.search_box {
  position: relative;    /* 基準値 */
  margin:20px auto;
  width: 100%;
}

.search_box::before {
  font-family: "Font Awesome 5 Free";
  content: "\f002";/* アイコンフォント */
  font-weight:900;
  width: 18px;           /* アイコンの横幅 */
  height: 18px;          /* アイコンの高さ */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;    /* 相対位置に指定 */
  top: 7px;              /* アイコンの位置。 */
  left: 5px;             /* アイコンの位置。 */
  background: #eaebf9;
  color: #ffffff;
  border-radius: 50%;
  background: #cccccc;
  font-size: 10px;
}

.search_box input {
  padding: 0.4em 0 0.4em 2em; /* アイコンを設置するため左の余白を多めに指定*/
  border: 1px solid #cccccc;
  width: 100%;
  margin: 0;
  display: block;
  background: #f0f0f0;
  outline: 0!important;
  -moz-box-shadow: inset 0 1px 4px rgba(0,0,0,.2);
  -webkit-box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  -webkit-border-radius: 0.6em;
  border-radius: 0.6em;
  min-height: 1.4em;
  font-size: 16px;
}

/*　03.詳細　　　　　　　　　　　　　　　　*/
/*-------------------------------------*/
.l_detaile_box{
  background:#ffffff;
  margin-top: 20px;
  padding:10px;
  border:1px solid #c8c8c8;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  line-height: 1.6em;
}

/*カテゴリリンク部分*/
.faq_categories{
  padding: 5px 10px;
  margin: 3.5em 0 0;
  border: 1px solid #dedede;
  background: #f6f5f2;
}

/*「他のFAQを探す」部分*/
.faq_categories .name {
  vertical-align: top;
  display: inline-block;
}

/*カテゴリ部分部分*/
.faq_categories .value {
  display: inline-block;
}

/*カテゴリリンク*/
.ui_link {
  color: #b7193f;
  font-weight: bold;
}

/*FAQの質問・回答部分*/
div.faq_ques_box{
  text-shadow: 1px 0 0 #fff;
  font-size: 14px;
  font-weight: bold;
}

div.faq_ques_body *,  div.faq_ques_body *:before,div.faq_answer_body *,  div.faq_answer_body *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

div.faq_ques_body{
  position: relative;
  margin: 1.5em 0;
}

div.faq_answer_body{
  position: relative;
  margin: 2em 0;
  padding: 0 0 1.5em 0;
}

div.faq_ques_body::before, div.faq_answer_body::before {
  font-size: 1.2em;
  margin: 0 0.5em 0 0;
  color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  line-height: 1.2em;
}

div.faq_ques_body::before {
  content:"Q";
  color: #ffffff;
  font-weight:bold;
  background: linear-gradient(#042a41, #0d3047 100%);
  border: 1px solid #042a41;
  border-radius: 5px;
  font-size: 24px;
  padding: 2px 0 0  0.4em;
}

div.faq_answer_body::before {
  content:"A";
  color: #042a41;
  font-weight:bold;
  background:ffffff;
  border: 1px solid #042a41;
  border-radius: 5px;
  font-size: 24px;
  padding: 2px 0 0 0.5em;
}

/*強調部分*/
.emp_font{
  color:#ff0000;
}

/*-------------------------------------*/
/*　お問い合わせフォーム関連            */
/*-------------------------------------*/

/*　01.共通　　　　　　　　　　　　　　　　*/
/*-------------------------------------*/
/*お問い合わせフォームの外枠*/
.l_contact_box{
  background:#ffffff;
  padding:10px;
  border:1px solid #c8c8c8;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin:40px 0 20px;
  line-height: 1.6em;
}

/* ボタン用スタイル */
/*外枠*/
.button_box{
  margin: 0 auto; 
  width: 98%;
}

.button_box_body{
  display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*　02.お問い合わせ入力画面用　　　　　　*/
/*-------------------------------------*/
/*「*は必ず入力してください」の文言用のCSS*/
.presence_text{
  margin-bottom: 20px;
}

/*1つの設問の枠*/
.contact_box{
  margin-bottom: 20px;
}

/*設問のタイトル*/
.contact_title{
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}

/*注意書き*/
.text_bold{
  font-weight: bold;
}

/*必須項目、注意書きの強調*/
.presence {
  color: #b7193f;
  padding: 3px;
}

/*セレクトメニュー*/
.selectbox select {
  width: 100%;
  background: #f6f5f2;
  padding: 0.6em;
  margin: 0;
  min-height: 1.4em;
  font-size: 16px;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  -moz-box-shadow: inset 0 1px 4px rgba(0,0,0,.2);
  -webkit-box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  -webkit-border-radius: 0.6em;
  -webkit-appearance: none;
  appearance: none;
}

.selectbox option {
  background: #ffffff;
}

.selectbox select::-ms-expand {
  display: none;
}

.selectbox {
  border: 1px solid #dedede;
  border-radius: 0.6em;
  position: relative;
}

.selectbox::before {
  position: absolute;
  top: 1.0em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #94233e;
  pointer-events: none;
}

/*1行テキスト用CSS*/
.input_text{
  border: 1px solid #dedede;
  width: 100%;
  padding: 0.6em;
  margin: 0;
  display: block;
  background: #f6f5f2;
  outline: 0!important;
  -moz-box-shadow: inset 0 1px 4px rgba(0,0,0,.2);
  -webkit-box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  -webkit-border-radius: 0.6em;
  border-radius: 0.6em;
  min-height: 1.4em;
  font-size: 16px;
}

/*複数行テキスト用*/
.textarea{
  border: 1px solid #dedede;
  background: #f6f5f2;
  width: 100%;
  padding: 0.6em;
  margin: 0;
  display: block;
  outline: 0!important;
  -moz-box-shadow: inset 0 1px 4px rgba(0,0,0,.2);
  -webkit-box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  box-shadow: inset 0 1px 4px rgb(0 0 0 / 20%);
  -webkit-border-radius: 0.6em;
  border-radius: 0.6em;
  min-height: 1.4em;
  line-height: 1.4em;
  font-size: 16px;
}

/*ラジオボタン内部(label・input・spanタブ部分)スタイル*/
.radio_input_style {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio_input_style_input {
  opacity: 0;
  width: 0;
  margin: 0;
}

.radio_input_style_input:focus + .radio_input_style_dummyinput {
  background: #ffffff;
}

.radio_input_style_input:checked + .radio_input_style_dummyinput {
  background: #4596ce;
}

.radio_input_style_input:checked + .radio_input_style_dummyinput::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #999999;
}

.radio_input_style_dummyinput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cccccc;
  border: dashed 2px transparent;
}

.radio_input_style_labeltext {
  margin-left: 12px;
  display: block;
}

/*ラジオボタンの外部(背景色)スタイル*/
ul.btn_radio_list{
  margin-top: 10px;
  list-style: none;
}

ul.btn_radio_list li {
  border: 1px solid #ccc;
  background: #ebedee;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
  font-weight: bold;
  font-size: 16px;
}

ul.btn_radio_list li:first-child{
  border-top-right-radius: 0.6em;
  -webkit-border-top-right-radius: 0.6em;
  -moz-border-radius-topright: 0.6em;
  border-top-left-radius: 0.6em;
  -webkit-border-top-left-radius: 0.6em;
  -moz-border-radius-topleft: 0.6em;
}

ul.btn_radio_list li:last-child{
  border-bottom-right-radius: 0.6em;
  -webkit-border-bottom-right-radius: 0.6em;
  -moz-border-radius-bottomright: 0.6em;
  border-bottom-left-radius: 0.6em;
  -webkit-border-bottom-left-radius: 0.6em;
  -moz-border-radius-bottomleft: 0.6em;
}


/*チェックボックスの外部(背景色)スタイル*/
ul.btn_check_list{
  margin-top: 10px;
  list-style: none;
}

ul.btn_check_list li {
  border: 1px solid #cccccc;
  background: #ebedee;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
  font-weight: bold;
  font-size: 16px;
}

ul.btn_check_list li:first-child{
  border-top-right-radius: 0.6em;
  -webkit-border-top-right-radius: 0.6em;
  -moz-border-radius-topright: 0.6em;
  border-top-left-radius: 0.6em;
  -webkit-border-top-left-radius: 0.6em;
  -moz-border-radius-topleft: 0.6em;
}

ul.btn_check_list li:last-child{
  border-bottom-right-radius: 0.6em;
  -webkit-border-bottom-right-radius: 0.6em;
  -moz-border-radius-bottomright: 0.6em;
  border-bottom-left-radius: 0.6em;
  -webkit-border-bottom-left-radius: 0.6em;
  -moz-border-radius-bottomleft: 0.6em;
}

/*チェックボックス内部(label・input・spanタブ部分)スタイル*/
.checkbox_input_style {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox_input_style_input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.checkbox_input_style:hover > .checkbox_input_style_dummyinput{
  background: #cccccc;
}

.checkbox_input_style_input:focus + .checkbox_input_style_dummyinput{
  background: #cccccc;
}

.checkbox_input_style_input:checked + .checkbox_input_style_dummyinput {
  background: #4596ce;
}

.checkbox_input_style_input:checked + .checkbox_input_style_dummyinput::before {
  content: "";
  display: block;
  position: absolute;
  top: 25%;
  left: 60%;
  width: 35%;
  height: 2px;
  transform: translate(-5px, 6px) rotateZ(-135deg);
  transform-origin: 1px 1px;
  background: #ffffff;
}

.checkbox_input_style_input:checked + .checkbox_input_style_dummyinput::after {
  content: "";
  display: block;
  position: absolute;
  top: 25%;
  left: 60%;
  width: 70%;
  height: 2px;
  transform: translate(-5px, 6px) rotateZ(-45deg);
  transform-origin: 1px 1px;
  background: #ffffff;
}

.checkbox_input_style_dummyinput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background: #cccccc;
}

.checkbox_input_style_labeltext {
  margin-left: 12px;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

/*ファイル設置用*/
.input_file{
  width: 100%;
  padding: 0.6em;
  margin: 0;
  display: block;
  background: transparent none;
  outline: 0;
  -webkit-appearance: none;
  min-height: 1.4em;
  line-height: 1.4em;
  font-size: 16px;
  color: #333333;
  text-shadow: 0 1px 0 #fff;
  background: #f0f0f0;
  background: #ebedee;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 0 1px 4px #fff;
  box-shadow: inset 0 1px 4px #fff;
  -moz-border-radius: 0.6em;
  -webkit-border-radius: 0.6em;
  border-radius: 0.6em;
  border: 1px solid #ccc;
}

/*　03.お問い合わせ入力エラー用　　　　**/
/*-------------------------------------*/
.err_style_text,.err_style_select{
  border: 1px solid #b7193f;
}

.err_style_label{
  color: #b7193f;
}

.err_style_file{
  color: #b7193f;
  font-weight: bold;
}

.err_message{
  margin-top: 10px;
  color: #b7193f;
  font-weight: bold;
}

/*　04.お問い合わせ確認画面　　　　　　*/
/*-------------------------------------*/
/*タイトルと入力内容の区切線*/
.con_line{
  border-top: 1px dotted #a6a5a5;
  padding-top: 5px;
  font-size: 16px;
}

/*画像サイズ*/
.contact_img{
  max-width: 100%;
  height: auto;
}

#allow_domains {
  .message {
    font-weight: bold;
  }
}
/*-------------------------------------*/
/*　余白                               */
/*-------------------------------------*/
.margin_top_20{
  margin-top: 20px;
}

.margin_top_40{
  margin-top: 40px;
}

/*-------------------------------------*/
/*　cookie_error                       */
/*-------------------------------------*/
. cookie_error {
  font-size: 14px;
}

/*-------------------------------------*/
/*　modal                              */
/*-------------------------------------*/

html.iziModal-isOverflow {
  height: 85vh;
}

iframe {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #cfcfcf;
}

::-webkit-scrollbar-thumb {
  background: #8f8f8f;
}
