/* ! ボタン ———————————————————————————————————————————————————————————— */
[class*="btn_"]{
  color: #fff;
  font: 500 14px/1em 'Roboto','noto sans japanese',sans-serif;
  letter-spacing: .04em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 24px;
  background: #51C96D;
  border: 1px solid #51C96D;
  border-radius: 5px;
  transition: all 0.1s ease;
  cursor: pointer;
  transition: .1s;
}
[class*="btn_"][disabled] {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: .65;
}
@media screen and (min-width: 480px){
  [class*="btn_"]:hover{
    color: #51C96D;
    background:transparent;
  }
}

/* 料金が入る場合 */
[class*="btn_"][class*="price"] {
  font-weight: 500;
  height: 64px;
}
[class*="btn_"][class*="price"] .price {
  font: bold 14px/1em 'Roboto','noto sans japanese',sans-serif;
  display: inline-block;
  margin: 6px 0 -3px;
}
[class*="btn_"][class*="price"] .tpl_price {
  color: #fff;
  margin: 6px 0 -4px;
}


/* ダークグリーン */
[class*="btn_"][class*="darkgreen"] {
  border-color: #0D6A18;
  background: #0D6A18;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="darkgreen"]:hover { background: transparent; color: #0D6A18;}
}

/* ブルー */
[class*="btn_"][class*="blue"] {
  border-color: #25ADE0;
  background: #25ADE0;
  box-shadow: 0px 8px 12px -4px rgba(37,173,224,.3);
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="blue"]:hover {
    color: #25ADE0;
    background: #fff;
  }
}

/* イエロー */
[class*="btn_"][class*="yellow"] {
  border-color: #f98623;
  background: #f98623;
  box-shadow: 0px 8px 12px -4px rgba(242, 158, 62, .3);
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="yellow"]:hover {
    color: #f98623;
    background: #fff;
  }
}

/* グリーン */
[class*="btn_"][class*="green"] { border-color: #51C96D; background: #51C96D;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="green"]:hover { background: transparent; color: #51C96D;}
}

/* ネイビー */
[class*="btn_"][class*="navy"] { border-color: #576086; background: #576086;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="navy"]:hover { background: transparent; color: #576086;}
}

/* ネイビー */
[class*="btn_"][class*="d-navy"] { border-color: #172858; background: #172858;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="d-navy"]:hover { background: transparent; color: #172858;}
}

/* パープル */
[class*="btn_"][class*="purple"] { border-color: #7857A7; background: #7857A7;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="purple"]:hover { background: transparent; color: #7857A7;}
}

/* ダークブルー */
[class*="btn_"][class*="darkblue"] { border-color: #1E3D58; background: #1E3D58;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="darkblue"]:hover { background: transparent; color: #1E3D58;}
}

/* ブルー */
[class*="btn_"][class*="brightnavy"] { border-color: #3F7CC4; background: #3F7CC4;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="brightnavy"]:hover { background: transparent; color: #3F7CC4;}
}

/* ピンク */
[class*="btn_"][class*="pink"] { border-color: #DD5176; background: #DD5176;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="pink"]:hover { background: transparent; color: #DD5176;}
}

/* オレンジ */
[class*="btn_"][class*="orange"] {border-color: #f98623; background: #f98623;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="orange"]:hover { background: transparent; color: #f98623;}
}

/* newオレンジ */
[class*="btn_"][class*="smorange"] {border-color: #ec8a3f; background: #ec8a3f;}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="smorange"]:hover { background: transparent; color: #ec8a3f;}
}

/* ゴースト */
[class*="btn_"][class*="goast"] {
  color: #fff;
  border-color: #fff;
  background: transparent;
  box-shadow: none;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"]:hover{
    color: #51C96D;
    background: #fff;
  }
}

[class*="btn_"][class*="goast"][class*="smorange"] {
  color: #ec8a3f;
  border-color: #ec8a3f;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="smorange"]:hover {
    color: #fff;
    background: #ec8a3f;
  }
}

[class*="btn_"][class*="goast"][class*="orange"] {
  color: #F29F3E;
  border-color: #F29F3E;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="orange"]:hover {
    color: #fff;
    background: #F29F3E;
  }
}

[class*="btn_"][class*="goast"][class*="green"] {
  color: #51C96D;
  border-color: #51C96D;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="green"]:hover {
    color: #fff;
    background: #51C96D;
  }
}
[class*="btn_"][class*="goast"][class*="darkgreen"] {
  color: #0D6A18;
  border-color: #0D6A18;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="darkgreen"]:hover {
    color: #fff;
    background: #0D6A18;
  }
}
[class*="btn_"][class*="goast"][class*="emerald"] {
  color: #37BAA6;
  border-color: #37BAA6;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="emerald"]:hover {
    color: #fff;
    background: #37BAA6;
  }
}
[class*="btn_"][class*="goast"][class*="blue"] {
  color: #3FB0C4;
  border-color: #3FB0C4;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="blue"]:hover {
    color: #fff;
    background: #3FB0C4;
  }
}
[class*="btn_"][class*="goast"][class*="navy"] {
  color: #3F7CC4;
  border-color: #3F7CC4;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="navy"]:hover {
    color: #fff;
    background: #3F7CC4;
  }
}
[class*="btn_"][class*="goast"][class*="purple"] {
  color: #7857A7;
  border-color: #7857A7;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="purple"]:hover {
    color: #fff;
    background: #7857A7;
  }
}
[class*="btn_"][class*="goast"][class*="red"] {
  color: #DD5176;
  border-color: #DD5176;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="red"]:hover {
    color: #fff;
    background: #DD5176;
  }
}
[class*="btn_"][class*="goast"][class*="deepgreen"] {
  color: #40A55A;
  border-color: #40A55A;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="deepgreen"]:hover {
    color: #fff;
    background: #40A55A;
  }
}
[class*="btn_"][class*="goast"][class*="yellow"] {
  color: #f98623;
  border-color: #f98623;
}
[class*="btn_"][class*="goast"][class*="min"] {
  height: 40px;
}
@media screen and (min-width: 480px){
  [class*="btn_"][class*="goast"][class*="yellow"]:hover {
    color: #fff;
    background: #f98623;
  }
}

/* ドットライン */
[class*="btn_"][class*="dot"] {
  color: #7f8eca;
  font: 500 13px/1em 'noto sans japanese',sans-serif;
  border: 1px dotted #7f8eca;
  background: #fff;
  height: 30px;
  box-shadow: none;
}

/* ダッシュライン */
[class*="btn_"][class*="dash"] {
  color: #7f8eca;
  font: 500 13px/1em 'noto sans japanese',sans-serif;
  border: 1px dashed #7f8eca;
  background: transparent;
  height: 60px;
  box-shadow: none;
}


/* ! バックグラウンド ———————————————————————————————————————————————————————————— */


/* ! フォーム ———————————————————————————————————————————————————————————— */
input::-ms-clear{
  display: none;
}

/* ! フォーム_スタイル —————————————————————————————— */
input:not([type="checkbox"]):not([type="submit"]),
select,
textarea {
  font: 400 16px/1.5em 'Roboto','noto sans japanese',sans-serif;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #E5E6EA;
  border-radius: 3px;
  width: 100%;
  flex: 1 1 auto;
  min-width: 10px;
/*   box-shadow: 0px 2px 4px 0px rgba(0,0,0,.05); */
}
input:disabled,
textarea:disabled{
  background: #EFEFEF !important;
}

@media screen and (max-width: 480px){
  input:not([type="checkbox"]),
  select,
  textarea{
    font-size: 14px;
  }
}

/* 無効 */
.wrap_disabled {
  pointer-events: none;
}
.wrap_disabled input:not([type="checkbox"]) {
/*   background: #E5E6EA; */
  background: transparent;
  border-color: transparent;
  font-weight: bold;
}

/* ! フォーム_スタイル_フォーカス時 —————————————————————————————— */
input:focus,select:focus,textarea:focus { outline: none; border-color: #7f8eca;}

/* ! フォーム_高さ —————————————————————————————— */
input:not([type="submit"]),
select,
.wrap_checkbox label,
.wrap_radio label { height: 36px;}
.wrap_checkbox.min label,
.wrap_radio.min label { height: 36px;}
textarea { min-height: 100px; resize: none; padding: 8px 12px;}

@media screen and (max-width: 480px){
  input:not([type="submit"]),
  select,
  .wrap_checkbox label,
  .wrap_radio label
  .wrap_radio label { height: 42px;}
}

/* ! フォーム_デフォルトリセット —————————————————————————————— */
input,select,button,textarea{ -webkit-appearance: none; -moz-appearance: none; appearance: none;}
button { outline: none;}
select::-ms-expand { display: none;}
input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px #fafafa inset;}
input[type="checkbox"],input[type="radio"]{display: none;}

/* ! プレイスホルダー —————————————————————————————— */
input::-webkit-input-placeholder { color: #ccc;}
input:-ms-input-placeholder { color: #ccc;}
input::-moz-placeholder { color: #ccc;}
textarea::-webkit-input-placeholder { color: #ccc;}
textarea:-ms-input-placeholder { color: #ccc;}
textarea::-moz-placeholder { color: #ccc;}

/* ! フォーム_リスト —————————————————————————————— */
[class*="list_form"] { margin: -5px -10px;}
[class*="list_form"] > li { padding: 5px 10px;}

/* ! フォーム_タイトルの幅 —————————————————————————————— */
[class*="list_form"][class*="100"] .form_ttl {flex: 0 0 100px;}
[class*="list_form"][class*="200"] .form_ttl {flex: 0 0 200px;}
[class*="list_form"][class*="300"] .form_ttl {flex: 0 0 300px;}
[class*="list_form"] small {
  color: #999;
  font: 300 11px/1.3em 'noto sans japanese',sans-serif;
  display:inline-block;
  margin: 4px 0 0;
}
[class*="list_form"] .sub_message {
  padding: 10px;
  background: #f7f9f9;
  border: 1px solid #eee;
  color: #333;
}

/* ! フォーム_レイアウト —————————————————————————————— */
.layout_form {
  display: flex;
  align-items: flex-start;
}

/* ! フォーム_タイトル —————————————————————————————— */
.ttl_form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 160px;
  min-height: 32px;
  margin: 0 10px 0 0;
  position: relative;
}

/* ! フォーム_コンテンツ —————————————————————————————— */
.cnt_form {
  flex: 1 1 auto;
  min-width: 10px;
}

/* ! フォーム_ラップ —————————————————————————————— */
[class*="wrap_input"] {
  display: flex;
  width: 100%;
  position: relative;
}
/* 住所などインプット要素を縦に並べる場合に仕様 */
[class*="wrap_input"][class*="column"] {
  flex-direction: column;
}
[class*="wrap_input"] + [class*="wrap_input"] {
  margin: 5px 0 0;
}
/* input要素の横幅を指定(wrap_inputと同時に指定) */
[class*="wrap_input_"][class*="50"] { max-width: 50px;}
[class*="wrap_input_"][class*="60"] { max-width: 60px;}
[class*="wrap_input_"][class*="75"] { max-width: 75px;}
[class*="wrap_input_"][class*="100"] { max-width: 100px;}
[class*="wrap_input_"][class*="120"] { max-width: 120px;}
[class*="wrap_input_"][class*="140"] { max-width: 140px;}
[class*="wrap_input_"][class*="150"] { max-width: 150px;}
[class*="wrap_input_"][class*="160"] { max-width: 160px;}
[class*="wrap_input_"][class*="200"] { max-width: 200px;}
[class*="wrap_input_"][class*="250"] { max-width: 250px;}
[class*="wrap_input_"][class*="280"] { max-width: 280px;}
[class*="wrap_input_"][class*="300"] { max-width: 300px;}
[class*="wrap_input_"][class*="350"] { max-width: 350px;}
[class*="wrap_input_"][class*="400"] { max-width: 400px;}
[class*="wrap_input_"][class*="450"] { max-width: 450px;}
[class*="wrap_input_"][class*="500"] { max-width: 500px;}
[class*="wrap_input_"][class*="550"] { max-width: 550px;}
[class*="wrap_input_"][class*="600"] { max-width: 600px;}
[class*="wrap_input_"][class*="full"] { max-width: 100vw;}


/* 注意書き */
.attention_required {
  color: #ED6086;
  font: 500 11px/1em 'noto sans japanese',sans-serif;
  letter-spacing: .04em;
  display:inline-block;
  padding: 0 0 0 20px;
  margin: 0 0 12px;
  position: relative;
}
.attention_required:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #ED6086 url(../img/shape/ico_form_check_white.svg) no-repeat;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* バリデーションスタイル */
[role="alert"].invalid-feedback {
  display: block;
  margin: 4px 0;
}
[role="alert"].invalid-feedback strong {
  color: #ED6086;
  font: 500 11px/1em 'noto sans japanese',sans-serif;
  letter-spacing: .04em;
  display: block;
}


/* ! ユニット —————————————————————————————— */
[class*="unit_"] {
  color: #000;
  font: 400 12px/1em 'noto sans japanese',sans-serif;
  padding: 0 .5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 auto;
}
[class*="unit_min"] { flex: 0 0 .5em; padding: 0; }
[class*="unit_1"] { flex: 0 0 2.5em; }
[class*="unit_2"] { flex: 0 0 3.5em; }
[class*="unit_3"] { flex: 0 0 4.5em; }
[class*="unit_4"] { flex: 0 0 5.5em; }
[class*="unit_5"] { flex: 0 0 6.5em; }
[class*="unit_6"] { flex: 0 0 7.5em; }
[class*="unit_7"] { flex: 0 0 8.5em; }
[class*="unit_8"] { flex: 0 0 9.5em; }
[class*="unit"][class*="left"] { justify-content: flex-start;}
[class*="unit"][class*="right"] { justify-content: flex-end;}
[class *="unit"][class*="center"] { justify-content: center;}

/* ! フォーム_セレクトボックス —————————————————————————————— */
select {
  width: 100%;
  padding-right: 20px;
  cursor: pointer;
}
.wrap_select {
  width: 100%;
  position: relative;
}
.wrap_select:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("https://d38jpe7aprjxji.cloudfront.net/asset/img/shape/ico_down.svg") no-repeat center center;
  background-size: contain !important;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events:none;
  z-index: 1;
}

/* ! チェックボックス・ラジオボタン_共通項目 —————————————————————————————— */
.wrap_checkbox,
.wrap_radio {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.wrap_checkbox label,
.wrap_radio label {
  font: 400 12px/1.3em 'noto sans japanese';
  padding: 0 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  user-select: none;
  cursor: pointer;
}
.wrap_checkbox label a,
.wrap_radio label a {
  color: #7f8eca;
  font-weight: 500;
}
@media screen and (min-width: 480px){
  .wrap_checkbox label a:hover,
  .wrap_radio label a:hover {
    text-decoration: underline;
  }
  .paging a:hover {
    color: #fff;
    background: #222;
  }
}
.wrap_checkbox label:before,
.wrap_checkbox label:after,
.wrap_radio label:before,
.wrap_radio label:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.wrap_checkbox label:before,
.wrap_radio label:before {
  display: block;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 2px;
}
.wrap_checkbox label:after,
.wrap_radio label:after {
  border: 1px solid #ddd;
  background: #222;
}
/* 選択時の指定 */
input[type=checkbox]:checked + label::after,
input[type=radio]:checked + label::after {
  display: block;
}
/* 横並び時用 */
input[type="checkbox"] + label,
input[type="radio"] + label{
  margin-right: 24px;
}
/* 線で囲む */
.wrap_radio.line {
  border: 1px solid #E5E6EA;
  border-radius: 5px;
  padding: 0 12px 0 24px;
}
/* ! チェックボックス —————————————————————————————— */
.wrap_checkbox label:after {
  background: #7f8eca url(../img/shape/ico_check_white.svg) no-repeat center center;
  border-color: #7f8eca;
  border-radius: 2px;
  display: none;
}

/* ! タブ型チェックボックス —————————————————————————————— */
.wrap_checkbox.tab input[type="checkbox"] + label {
  color: #000;
  font: 500 18px/1em 'Roboto','noto sans japanese',sans-serif;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0 24px;
  z-index: 1;
  cursor: pointer;
}
.wrap_checkbox.tab label:before,
.wrap_checkbox.tab label:after {
  height: 100%;
  width: 100%;
  background: #576086;
  border-color: #576086;
  border-radius: 4px;
  margin-right: 0;
  z-index: -1;
}
.wrap_checkbox.tab label:before {
  background: #fff;
  border: 1px solid #C1C5D3;
  border-radius: 4px;
}
.wrap_checkbox.tab label:after {  /* これで通常のscaleも打ち消している */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wrap_checkbox.tab input[type=checkbox]:checked + label {
  color: #fff;
}

/* ! 住所のチェックボックス —————————————————————————————— */
.wrap_prefectures.wrap_checkbox .button_area {
  width: 100%;
  padding: 10px 0;
}
.wrap_prefectures.wrap_checkbox label {
  height: 28px;
  width: 72px;
  margin-right: 12px;
}


/* ! ラジオボタン —————————————————————————————— */
.wrap_radio label:before {
  border-radius: 50%;
}
.wrap_radio label:after {
  background: #7f8eca url(../img/shape/shape_circle_white.svg) no-repeat center center;
  background-size: 8px 8px;
  border-color: #7f8eca;
  border-radius: 50%;
  display: none;
}

/* ! テキスト型ラジオ —————————————————————————————— */
.wrap_radio.text label {
  margin: 0;
  padding: 4px 8px;
  height: auto;
}
.wrap_radio.text label:before,
.wrap_radio.text label:after {
  display: none !important;
}
.wrap_radio.text input[type=radio] + label{
  color: #CCD4E3;
}
.wrap_radio.text input[type=radio]:checked + label {
  color: #7f8eca;
}

/* ! タブ型ラジオ —————————————————————————————— */
/* ラジオボタンのタブ型デザイン */
.wrap_radio.tab input[type="radio"] + label,
.wrap_radio.tab input[type="radio"] + label:before,
.wrap_radio.tab input[type="radio"] + label:after {
  height: 40px;
  width: 78px;
}
.wrap_radio.tab input[type="radio"] + label {
  color: #E5E6EA;
  text-align: center;
  font: bold 18px/1em 'Roboto','noto sans japanese',sans-serif;
  margin: 5px 5px 0 0 ;
  padding: 0 24px;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}
.wrap_radio.tab label:before,
.wrap_radio.tab label:after {
  height: 28px;
  width: 100%;
  margin-right: 0;
  border-radius: 4px;
  border-color: #fff;
  border: 1px solid #E5E6EA;
  left: 0;
  z-index: -1;
}
.wrap_radio.tab label:after{
  background: #7857A7;
}
.wrap_radio.tab label:before {
  background: #fff;
}
.wrap_radio.tab label:after {  /* これで通常のscaleも打ち消している */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wrap_radio.tab input[type=radio]:checked + label {
  color: #fff;
}



/* ! 画像アップロード —————————————————————————————— */
.wrap_file {
  position: relative;
}
.wrap_file:before {
  content: "画像を選択";
  color: #fff;
  font: 600 13px/1em 'noto sans japanese',sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(0,0,0,.1);
  position: absolute;
  border-radius: 100px;
  top: 0;
  left: 0;
  z-index: 1;
}
.wrap_file input[type="file"] {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.file_preview {
  background: url("https://d38jpe7aprjxji.cloudfront.net/asset/img/bg_no-photo.svg") no-repeat center center;
  background-size: contain !important;
}


/* ! セレクトを追加する箇所 ———————————————————————————————————————————————————————————— */
.wrap_add:first-child .button_text_delete_area {
  display: none;
}
.button_text_add_select,
.register_profession_button_text_add_select {
  margin: 4px 0 16px;
}
.wrap_add [class*=btnarea] {
  margin: 0 !important;
}

/* ! フラッシュメッセージ ———————————————————————————————————————————————————————————— */
.area_flash {
  padding: 20px;
}
.list_flash p {
  color: #333;
  font: 300 13px/1em 'noto sans japanese',sans-serif;
  letter-spacing: .04em;
  height: 40px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 40px 0 20px;
  background: #fff;
  border: 2px solid #51C96D;
  box-shadow: 0px 16px 8px -4px rgba(82, 200, 109,0.4);
}
.list_flash > li {
  transform: translateX(150%);
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.list_flash > li.flash_on {
  animation: flash 4s ease forwards;
}
.list_flash > li.flash_on p {
  cursor: pointer;
  pointer-events: all;
}
@keyframes flash {
  0% {
    transform: translateX(150%);
    visibility: hidden;
    opacity: 0;
  }
   20% {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
   80% {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
/* クリックして消す場合。 */
.list_flash > li.flash_on.flash_remove {
  animation: flash_remove 1s ease forwards;
}
.list_flash > li.flash_on.flash_remove p {
  pointer-events: none;
  cursor: default;
}
@keyframes flash_remove {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
  }
}



/* ! リスト ———————————————————————————————————————————————————————————— */
[class*="list_text"] > li > article {
  display: flex;
  align-items: flex-start;
}
[class*="list_text"] > li + li {
  margin-top: 4px;
}
[class*="list_text"] .ttl_list {
  flex: 0 0 70px;
}
[class*="list_text"] .ttl_list p {
  font: 300 13px/1em 'noto sans japanese',sans-serif;
  padding: .5em 0 0;
}
[class*="list_text"] .cnt_list {
  flex: 1 1 auto;
  min-width: 10px;
}


/* ! ============================================================
　パーミッションエリア
============================================================ */
.area_permission {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.area_permission.left{
  align-items: flex-start;
}
.area_permission p {
  color: #444;
  font: 200 11px/1.3em 'noto sans japanese',sans-serif;
  padding: 0 0 0 12px;
  position: relative;
  width: 100%;
}
.area_permission p + p{
  margin: 3px 0 0;
}
.area_permission p:before {
  content: "※";
  position: absolute;
  top: .6em;
  left: 0;
  transform: translateY(-50%);
}
.area_permission a {
  color: #7f8eca;
  font-weight: 500;
  display: inline-block;
}
.area_permission.right{ align-items: flex-end;}


/* ラジオ */
.area_permission .wrap_checkbox {
  justify-content: center;
}

/* 会員登録箇所 */
.area_register .area_permission {
  margin: 0 0 16px;
}