
/**
 * 全画面共通
 */
*{
	zoom: 1;
	margin: 0px;
	padding: 0px;

}

html{
	font-family: Meiryo,メイリオ,'Hiragino Kaku Gothic Pro',sans-serif;
}
select{
	font-family: Meiryo,メイリオ,'Hiragino Kaku Gothic Pro',sans-serif;
}

body{
	position: relative;
    -webkit-text-size-adjust: 100%;

	background: #ffffff;
}

a {
	text-decoration: none;
}

/**
 * iOSの電話番号自動認識無効 ※必要な箇所に都度設定。
 */
.disable_auto_tel a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.header {
	height: 0px;
}
.footer {
	height: 40px;
}
.copyright {
	margin-top: 40px;

	font-size: 12px;
	text-align: center;
	color: #666666;
}

.main_full {
    width: 360px;
    margin: 0 auto;
}
.main {
    width: 320px;
    margin: 0 auto;

	padding-left: 20px;
	padding-right: 20px;
}

p {
	margin-top: 36px;

	font-size: 12px;
	text-align: center;
    color: #666666;
}
p,div,span {
    line-height: 18px;
}

p.title {
	font-size: 14px;
	line-height: 22px;
}
p.sub {
	margin-top: 12px;
}
.wide {
	font-size: 16px;
	font-weight: bold;
}

.notice {
	color: #e53935;
}
.notice_report {
	color: #000000;
}
.notice_time_info {
	font-weight: bold;
}
.notice_box {
	display: inline-block;

	color: #e53935;

	padding: 14px;
	border-style: solid;
	border-width: 1px;
	border-color: #e53935;

	text-align: center;
}
.link {
	text-decoration: underline;
}

/* input {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
} */
input::placeholder {
    color: #CCCCCC;
  }
input[type="submit"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
}
input[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;

    margin-left: 56px;

    vertical-align: middle;
}
input[type="radio"]:first-of-type {
    margin-left: 0px;
}
input[type="checkbox"] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: checkbox;
	appearance: checkbox;

    vertical-align: middle;
}
input[type="text"], input[type="password"] {
	display: block;

	width: 300px;
	height: 28px;
	line-height: 14px;

	margin: 0 auto;
	margin-top: 12px;
	padding: 6px;

	background: #f5f5f5;
	border: 2px;
	border-radius: 9999px;
	border-style: none;


	font-size: 14px;
	text-align: center;
	vertical-align: middle;
	color: #333333;

	appearance: none;
}
input[type="text"][data-fixed="1"] {
	margin-top: 0px;

	background: none;
	border: none;
}
.select_area{
	display: inline-block;
	position: relative;

	width: 124px;
	height: 42px;
}
select {
	display: inline-block;

	padding-left: 16px;
	width: 124px;
	height: 42px;

	font-size: 13px;

	background-color: #FFFFFF;
	border: none;
	border-radius: 9999px;

	appearance: none;
	-webkit-appearance: none;
}
.select_area:after {
	content: "";
	position: absolute;

	right: 16px;
	bottom: 18px;

	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid black;

	pointer-events: none;
}
/* .select_arrow {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid black;
} */
label{
	font-size: 12px;
}
.input_box {
	margin-top: 12px;
}
.input_info {
    margin-top: 12px;

    font-size: 10px;
}
.input_error {
    margin-top: 12px;

	color: #e53935;
}
#validate_msg {
	text-align: center;
	font-weight: bold;
}

.positive_button{
	display: block;

	width: 200px;
	height: 40px;
	line-height: 40px;

	margin: 0 auto;
	margin-top: 36px;

    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFB522), color-stop(100%, #FFD35B));
    background: -webkit-linear-gradient(0deg, #FFB522 0%, #FFD35B 100%);
    background: -o-linear-gradient(-45deg, #FFB522 0%, #FFD35B 100%);
    background: -ms-linear-gradient(-45deg, #FFB522 0%, #FFD35B 100%);
    background: linear-gradient(45deg, #FFB522 0%, #FFD35B 100%);
    border-radius: 9999px !important;

    box-shadow: 0px 3px 5px rgba(0,0,0,0.1);

	font-size: 14px;
	text-align: center;
	vertical-align: middle;
	color: #ffffff;

	cursor: pointer;

	border: none;
	appearance: none;
}
.positive_button[disabled]{
    background: #dddddd;
	box-shadow: none;
	pointer-events: none;
}
.positive_button.container{
	position: relative;
}
.positive_button.container .icon{
	position: absolute;
    display: inline-block;
    left: 16px;
    top: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;

	font-weight: bold;
	background-color: #E53935;
	vertical-align: middle;
	border-radius: 9999px;
}
.negative_button{
	display: block;

	width: 200px;
	height: 40px;
	line-height: 40px;

	margin: 0 auto;
	margin-top: 36px;

    background: #ffffff;
    border-radius: 9999px !important;

    box-shadow: 0px 3px 5px rgba(0,0,0,0.1);

	font-size: 14px;
	text-align: center;
	vertical-align: middle;
	color: #FFB522;

	cursor: pointer;

	border: none;
	appearance: none;
}
.negative_button[disabled]{
	background: #dddddd;
    box-shadow: none;
}

.payment_button{
	display: block;

	width: 200px;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;

	margin: 0 auto;
	margin-top: 36px;

    background: #ffffff;
    border-radius: 8px !important;

    box-shadow: 0px 3px 5px rgba(0,0,0,0.1);

	font-size: 13px;
	text-align: center;
	vertical-align: middle;
	color: #0092C8;

	cursor: pointer;

	border: none;
	appearance: none;
}

.validation_mail_main {
	position: relative;
}

.validation_mail_button {
	display: block;

	width: 136px;
	height: 42px;
	line-height: 40px;

	margin: 0 auto;
	margin-top: 16px;

	background: #ffffff;
    border-radius: 9999px !important;

    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);

	font-size: 12px;
	text-align: center;
	vertical-align: middle;
	color: #FFB522;

	cursor: pointer;

	border: none;
	appearance: none;
}
.validation_mail_button[disabled]{
    background: #E2E2E2;
	color: #FFFFFF;
	box-shadow: none;
	pointer-events: none;
}

.validation_status {
	font-size: 12px;
    margin-top: 12px;
	padding-bottom: 16px;
	text-align: center;
	color: #E2E2E2;
}

.validation_status[data-status="-1"] {
	color: #e53935;
}

.validation_status[data-status="-2"] {
	color: #e53935;
}

.validation_status[data-status="1"] {
	color: #FFB522;
}

.validation_notice {
	color: #333333;
}

.status_icon {
	display: none;
	background-size: contain;
}
.status_icon[data-status="-1"] {
	display: inline-block;
	vertical-align: text-bottom;
	width: 16px;
	height: 16px;
	background-image: url(./../img/icon_test_error.png);
}
.status_icon[data-status="-2"] {
	display: inline-block;
	vertical-align: text-bottom;
	width: 16px;
	height: 16px;
	background-image: url(./../img/icon_test_error.png);
}
.status_icon[data-status="1"] {
	display: inline-block;
	vertical-align: middle;
	width: 22px;
	height: 28px;
	background-image: url(./../img/icon_test_confirmed.png);
}

#loading {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #000000;
	opacity: 0.5;
	z-index: 1;
}

#spinner {
	display: none;
	color: #ffffff;
	z-index: 2;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.text-primary {
	color: #007bff !important;
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner-border {
	display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.sr-only {
	position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.text_link{
	color: #FFB522;
	cursor: pointer;
}
.text_link.dark{
	color: #333333;
}
.text_link.bold {
   font-weight: bold;
   text-decoration: underline;
}

.fade_area {
	position: absolute;

	bottom: 0;
	width: 100%;

    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    background: -o-linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    background: -ms-linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
}

/**
 * ---------------------------------------------
 * 共通要素
 * ---------------------------------------------
 */

/**
 * 共通ヘッダ
 */
.main_header{
	width: 360px;
	height: 56px;

	margin: 0 auto;

	background: url(../img/img_header.png) no-repeat;
    background-size: contain;
}
.main_header_single_color{
	background-color: #FFB522;
	background-image: none;
}
.main_header .main_logo{
	display: inline-block;

	width: 138px;
	height: 44px;

	margin-left: 16px;
	margin-top: 6px;

	background: url(../img/logo_hellolight_set.png) no-repeat;
    background-size: contain;
}
.main_header .main_readonly{
	width:100%;
	height:100%;
	position:relative;
}
.main_header .main_reload{
	display: inline-block;
	position:absolute;

	width: 56px;
	height: 56px;

	right: 4px;
	top: 0px;

	background: url(../img/button_auto_update_pause.png) no-repeat;
  background-size: auto 56px;
	visibility:hidden;
}
/**
 * ヘッダ下のタイトルエリア
 */
.main_title_area{
	position: relative;

	width: 360px;
	margin: 0 auto;
	margin-top: 24px;

	text-align: center;
}
.main_title_area .main_title_back{
	display: inline-block;
	position: absolute;

	height: 20px;
	line-height: 20px;

	left: 24px;

	font-size: 12px;
	color: #FFB522;
	vertical-align: middle;
}
.main_title_area .main_title_text{
	display: inline-block;

	height: 20px;
	line-height: 20px;

	font-size: 14px;
	font-weight: bold;
	color: #666666;
	vertical-align: middle;
}

/**
 * 画面上の丸型枠
 */
.bg_round{
	width: 360px;
	height: 250px;

	background: url(../img/bg_img.png) no-repeat;
    background-size: cover;

    overflow: auto;
}
.bg_round_single{
	height: 105px;
	background-position-y: -145px;
}
/**
 * 左(または右)にボタンをabsolute配置する場合の設定。
 */
.bg_round_control{
    position: relative;
}
.bg_round_single .close{
    margin-top: 14px;
}

.bg_round p{
	margin: 0 auto;
	margin-top: 36px;

	font-size: 12px;
	text-align: center;
	color: #ffffff;
}
.bg_round .logo{
	width: 67px;
    height: 75px;

	margin-top: 24px;

	background: url(../img/hellolight_logo_sub_monochrome_reversed.png) no-repeat;
    background-size: 100% 100%;
}
.bg_round .main{
    margin-top: 12px;

    font-size: 16px;
    font-weight: bold;
}
.bg_round_single .main{
    margin-top: 38px;
}
.bg_round .main_singleline{
    overflow: hidden;
    text-overflow: ellipsis;
}
.bg_round .sub{
	margin-top: 6px;
}
.bg_round .light_setting_logo{
    margin-top: 17px;
}
.bg_round .light_setting_title{
    margin-top: 21px;

    font-size: 14px;
    font-weight: bold;
}
.bg_round .light_setting_title:first-of-type{
    margin-top: 13px;

    font-size: 14px;
    font-weight: bold;
}
.bg_round .light_setting_value{
    margin-top: 10px;

    font-size: 18px;
}
.bg_round .negative{
	margin: 0 auto;
	margin-top: 24px;

    font-size: 16px;
    font-weight: bold;
	text-align: center;
	color: #e53935;
}
.bg_round .single_line{
    white-space: nowrap;
}
.bg_round .close{
	display: inline-block;
	position: absolute;
	z-index: 10000;

	left: 0;
	top: 0; /** 背景の位置に応じてソース側で随時調整 */

	width: 60px;
	height: 60px;

	line-height: 60px;

	text-align: center;
	vertical-align: middle;
	color: #ffffff;
	font-weight: bold;
    font-size: 24px;

    cursor: pointer;
}

/**
 * 画面上の丸型枠(高さ可変)
 */
.bg_round_flex_area{
	width: 360px;

	background: linear-gradient(0deg, #FFB522 0%, #FFB522 100%), url(../img/bg_img_short.png);
	background-repeat: no-repeat;
    background-size: 100% 100%, 100% 101px;
    background-position: left bottom, left bottom;
    background-position-y: -99px,bottom;
}
/**
 * 画面下の丸型枠(高さ可変)
 */
.bg_round_bottom_flex_area{
	width: 360px;

	margin-top: 28px;

	background: linear-gradient(0deg, #FFB522 0%, #FFB522 100%), url(../img/bg_img_bottom.png);
	background-repeat: no-repeat;
    background-size: 100% 100%, 100% 101px;
	background-position-y: 99px,top;
}
.bg_round_bottom_flex_area .user_name{
	padding-top: 34px;
	padding-bottom: 22px;
	text-align: center;

	font-size: 14px;
	color: #ffffff;
}
.bg_round_bottom_flex_area p, .bg_round_bottom_flex_area .copyright{
	color: #ffffff;
}

/**
 * 画面下の丸型枠
 */
.bg_round_bottom{
	width: 360px;
    height: 242px;

	margin-top: 24px;

	background: url(../img/bg_img_under.png) no-repeat;
    background-size: 100% 100%;

    overflow: auto;
}
.bg_round_bottom_short{
    /* height: 242px; */
    overflow: hidden;
}

.bg_round_bottom p{
	margin: 0 auto;
	margin-top: 36px;

	font-size: 12px;
	text-align: center;
	color: #ffffff;
}

.bg_round_bottom .copyright{
	color: #ffffff;
}

/**
 * 折りたたみUI
 */
.expand_area_title {
	margin-top: 36px;
	color: #666666;
	font-size: 12px;
	text-align: center;
}
.expand_button {
	margin-top: 36px;

	color: #666666;
	font-size: 12px;
	text-align: center;
}
.expand_icon {
	display: inline-block;

	margin-left: 8px;

	width: 20px;
	height: 20px;

	background: url(../img/button_arrow_open.png?ts=2019121201) no-repeat;
	background-size: cover;

	vertical-align: middle;
}
.expand_icon[data-open="1"] {
	background: url(../img/button_arrow_close.png?ts=2019121201) no-repeat;
	background-size: cover;
}
.expand_area {
	overflow: hidden;
}

/**
 * ヘルプボタン/ツールチップ
 */
.tippy-tooltip.hellolight-theme {
	background-color: #FEEAB9;

	padding: 8px;

	color: #666666;
	font-size: 12px;
}
.tippy-tooltip.hellolight-theme .tippy-arrow {
	border-top-color: #FEEAB9;
	border-bottom-color: #FEEAB9;
}


.hint_area {
	text-align: center;
}
.hint_title {
	display: inline-block;
	margin-top: 36px;

	font-size: 12px;
	text-align: center;
    color: #666666;
}
.hint_button {
	display: inline-block;

	margin-left: 8px;

	width: 28px;
	height: 28px;

	background: url(../img/button_hint_yellow.png?ts=2020092401) no-repeat;
	background-size: cover;

	font-size: 0px;
	vertical-align: middle;
}
.validation_mail_main .hint_button {
	position: absolute;
	top: 6px;
	right: 68px;
}

/**
 * 完了メッセージ
 */
 .update_alert{
	display: table;

	margin: 0 auto;

	width: 360px;
	height: 40px;

	background-color: #FEEDC1;
}
.update_alert .update_alert_text{
	display: table-cell;

	padding-left: 24px;

	font-size: 14px;
	text-align: left;
	color: #666666;
	vertical-align: middle;
}
.update_alert .update_alert_close{
	display: table-cell;

	padding-right: 24px;

	font-size: 14px;
	font-weight: bold;
	text-align: right;
	color: #666666;
	vertical-align: middle;

	cursor: pointer;
}

/**
 * ---------------------------------------------
 * 各画面固有の要素
 * ---------------------------------------------
 */

/**
 * TOP画面のライト一覧
 */
.top_light_area{
	width: 360px;
}
.top_light_area .top_light{
	position: relative;
	display: table;

	width: 316px;
	height: 111px;

	margin: 0 auto;
	margin-top: 24px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 15px;

	background-color: #ffffff;
	box-sizing: border-box;
	box-shadow: 0px 3px 12px #0000001F;
	border-radius: 12px;

	font-size: 13px;
	font-weight: bold;
	color: #666666;
}
.top_light_area .top_light:not([data-light-status="2"]){
	color: #E53935;
}
.top_light_area .top_light.first{
	margin-top: 0px;
}
.top_light_area .top_light_area_title{
	display: table-cell;
}
.top_light_area .top_light_area_icon{
	display: inline-block;

	width: 81px;
	height: 81px;

	background-repeat: no-repeat;
	background-size: cover;
}
.top_light_area .top_light_area_icon[data-status="0"]{
	background-image: url(../img/img_report_observe_on_top.png);
}
.top_light_area .top_light_area_icon[data-status="1"]{
	background-image: url(../img/img_report_notice_on_top.png);
}
.top_light_area .top_light_area_contents{
	display: table-cell;
	box-sizing: border-box;
	width: 235px;
	height: 81px;
	padding-left: 12px;
	vertical-align: top;
}
.top_light_area .top_light_area_item{
	height: 24px;
}
.top_light_area .top_light_area_item:nth-child(3){
	margin-top: 6px;
}
.top_light_area .add_new_light_area{
	height: 18px;
	line-height: 18px;
	padding-top: 24px;
	padding-bottom: 32px;
	text-align: center;
}
.top_light_area .add_new_light_icon{
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../img/icon_plus_setup.png);

	background-repeat: no-repeat;
	background-size: cover;
	vertical-align: middle;
}
.top_light_area .add_new_light_text{
	display: inline-block;

	padding-top: 4px;
	padding-left: 8px;

	font-size: 13px;
	color: #ffffff;
	vertical-align: middle;
}

.top_light_area .top_light_terminating_area{
	position: absolute;
	display: flex;

	margin-left: -16px;
	margin-top: -16px;
	top: 16px;

	width: 316px;
	height: 113px;
	line-height: 113px;

    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;

	background-color: rgba(80, 80, 80, 0.8);
	border-radius: 12px;

	color: #FFFFFF;
}
.top_light_area .top_light_terminating{
	display: inline-block;
}

/**
 * カード登録エラー
 */
 .card_alert{
	display: table;

	margin: 0 auto;

	width: 360px;
	height: 40px;

	background-color: #FF0000;
}
.card_alert .card_alert_text{
	display: table-cell;

	padding: 20px 10px 20px 10px;

	font-size: 14px;
	text-align: left;
	color: #FFF;
	vertical-align: middle;
}
.card_alert .card_alert_text a{
	font-size: 14px;
	color: #FFF;
	text-decoration:underline;
}

/**
 * メール送信完了画面。
 */
.img_send_success{
    width: 110px;
    height: 89px;
	margin: 0 auto;
    margin-top: 36px;

    background-image: url(../img/icon_paper_airplane.png);
    background-size: 100% 100%;
}


 /**
 * 開始画面
 */
 .logo{
	width: 160px;
	height: 180px;
	margin: 0 auto;
	margin-top: 64px;

	background: url(../img/hellolight_logo_length.png?ts=220711) no-repeat;
    background-size: 100% 100%;

    overflow: auto;
}



/**
 * 入力したコードの結果表記。
 */
.code_title{
	margin: 0 auto;

	font-size: 24px;
	text-align: center;
	color: #ffffff;
}
.code_title_positive{
	margin-top: 28px;
}
.code_title_negative{
	margin-top: 18px;
}
.code_positive{
	margin: 0 auto;
    margin-top: 18px;

	font-size: 18px;
	font-weight: bold;
	text-align: center;
    color: #00c147;

	text-decoration: none;
}
.code_negative{
	margin: 0 auto;
	margin-top: 17px;

	font-size: 18px;
	font-weight: bold;
	text-align: center;
    color: #e53935;

	text-decoration: none;
}
.code_simple{
	margin: 0 auto;
	margin-top: 8px;

	font-size: 18px;
	font-weight: bold;
	text-align: center;
    color: #FFFFFF;

	text-decoration: none;
}

.result_icon{
    width: 56px;
    height: 56px;
	margin: 0 auto;
    margin-top: 22px;

    background-size: 100% 100%;
}
.result_positive{
    background-image: url(../img/icon_normal_setup.png);
}
.result_negative{
    background-image: url(../img/icon_error_setup.png);
}

/**
 * 要注意事項
 */
.attention{
	margin-top: 48px;
	padding: 36px 12px 36px 12px;

	background-color: #FFB522;

	border-radius: 3px;

	font-size: 12px;
	text-align: center;
	color: #333333;
}


/**
 * チェックリスト
 */
.checklist{
	margin-top: 24px;

	width: 312px;
}
.checklist .icon{
	display: inline-block;

	width: 16px;
	height: 13px;
	margin-top: 3px;

	background-image: url(../img/icon_check_setup.png);
	background-repeat: no-repeat;
	background-size: cover;

	vertical-align: top;
}
.checklist *[type="checkbox"]{
	display: inline-block;

	margin-top: 3px;
	vertical-align: top;
}
.checklist .item{
	display: inline-block;

	width: 290px;
	padding-left: 12px;
	box-sizing: border-box;

	font-size: 12px;
	color: #e53935;
}
.checklist label{
	display: block;

	padding-bottom: 25px;
}
.checklist label:last-of-type{
	padding-bottom: 0px;
}


/**
 * HelloLightの識別コード入力画面
 */
.img_code_guide {
	width: 360px;
	height: 250px;

	margin: 0 auto;

	background: url(../img/img_reading_guide.png?t=2019052301) no-repeat;
	background-size: 100% 100%;
}

.qr_video_area{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.qr_video{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


.qr_finder_header_area{
	width: 100%;
	height: 60px;

	position: absolute;
	left: 0;
    top: 0;

    line-height: 60px;

	background: transparent;
}
.qr_finder_header_area .close{
	display: inline-block;
	position: absolute;
	z-index: 10000;

	left: 0;
	top: 0;

	width: 60px;
	height: 60px;

	line-height: 60px;

	text-align: center;
	vertical-align: middle;
	color: #ffffff;
	font-weight: bold;
	font-size: 32px;
}
.qr_finder_header_area .title_area{
    display: inline-block;
	position: relative;

    width: 100%;

    vertical-align: middle;
    line-height: initial;
}
.qr_finder_header_area .title{
	display: block;

    margin: 0 auto;

	text-align: center;
    color: #ffffff;
    font-size: 16px;
	font-weight: bold;
}
.qr_finder_header_area .description{
	display: block;

    margin: 0 auto;
    margin-top: 4px;

	text-align: center;
	color: #ffffff;
    font-size: 10px;
	font-weight: bold;
}

.qr_finder{
	position: absolute;
	left: 0;
	top: 0;
}


/**
 * 入力したコードの確認結果画面
 */
.img_code_success {
	width: 40px;
	height: 40px;

	margin: 0 auto;
	margin-top: 20px;

	background: #EEEEEE;
}


 /**
 * アクティベートリンクの送信画面。
 */
.img_code_send_confirm {
	width: 40px;
	height: 40px;

	margin: 0 auto;
	margin-top: 20px;

	background: #EEEEEE;
}
.img_code_send_image {
	width: 80px;
	height: 80px;

	margin: 0 auto;
	margin-top: 40px;

	background: #EEEEEE;
}

 /**
 * 入力したコードのエラー表示画面
 */
.img_code_error {
	width: 40px;
	height: 40px;

	margin: 0 auto;
	margin-top: 20px;

	background: #EEEEEE;
}

/**
 * ライト情報エリア
 */
.light_status_area{
	display: table;

	width: 360px;

	margin: 0 auto;
	margin-top: 24px;
	padding: 21px;
	box-sizing: border-box;

	background-color: #F5F5F5;
	color: #666666;
}
.light_status_area.readonly{
	margin-top: 80px;
	padding: 0px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: transparent;
}

.light_status_area .light_status_title{
	display: table-cell;
	width: 123px;

	font-size: 12px;
}
.light_status_area .light_status_contents{
	display: table-cell;
	width: 218px;

	font-size: 12px;
	font-weight: bold;
}
.light_status_area.readonly .light_status_contents{
	font-size: 14px;
	padding-left: 5px;
}
.light_status_area .light_status_contents:not([data-light-status="2"]){
	color: #E53935;
}

.light_status_area .light_status_item{
	margin-top: 14px;
	height: 24px;
	line-height: 24px;
}
.light_status_area.readonly .light_status_item{
	height: 32px;
	line-height: 32px;
}
.light_status_area.readonly .light_status_item.serial_no{
	font-weight: normal;
}
.light_status_area .light_status_item:first-of-type{
	margin-top: 0px;
}

.light_elapsed_days{
	display: inline-block;
	width: 54px;
	height: 24px;
	line-height: 24px;

	background-color: #666666;
	border-radius: 6px;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
}
.light_elapsed_days:not([data-light-status="2"]){
	background-color: #E53935;
}
.light_rssi{
	display: inline-block;
	width: 20px;
	height: 18px;
	background-size: 100% 100%;
	vertical-align: middle;

}
.light_rssi[data-level="-1"]{
	display: none;
}
.light_rssi[data-level="0"]{
	background-image: url(../img/icon_pict_antenna_00_setup.png?ts=2020072201);
}
.light_rssi[data-level="1"]{
	background-image: url(../img/icon_pict_antenna_01_setup.png?ts=2020072201);
}
.light_rssi[data-level="2"]{
	background-image: url(../img/icon_pict_antenna_02_setup.png?ts=2020072201);
}
.light_rssi[data-level="3"]{
	background-image: url(../img/icon_pict_antenna_03_setup.png?ts=2020072201);
}
.light_rssi[data-level="4"]{
	background-image: url(../img/icon_pict_antenna_04_setup.png?ts=2020072201);
}

.light_contract_status{
	display: inline-block;

	font-size: 12px;
	font-weight: normal;
	border-style: solid;
	border-width: 1px;
	border-radius: 6px;

	padding-left: 6px;
	padding-right: 6px;
	padding-top: 3px;
	padding-bottom: 3px;
}
.light_contract_status[data-status="0"]{
	color: #666666;
	border-color: #666666;
}
.light_contract_status[data-status="1"]{
	color: #00c151;
	border-color: #00c151;
}
.light_status_link{
	display: inline-block;

	margin-left: 10px;

	font-size: 12px;
	font-weight: normal;

	text-decoration: underline;
	color: #666666;
}
.light_link_text{
	display: inline-block;
	float: right;

	margin-top: 5px;

	text-decoration: underline;
	color: #666666;
}

/**
 * ライトの一覧
 */
.light_list_title {
	font-weight: bold;
	font-size: 14px;
}
.light_list_border {
    width: 100%;
    height: 1px;

    margin-top: 12px;
    margin-bottom: 12px;

    background: #f5f5f5;
}

.light_list_row {
    display: table;

    width: 300px;
    height: 60px;

    margin: 0 auto;
}
.light_list_row .left {
    display: table-cell;

	width: 50px;

    text-align: center;
	vertical-align: middle;
}
.light_list_row .icon {
    display: inline-block;

	width: 21px;
	height: 33px;

	background: url(../img/hellolight_logo_simple.png) no-repeat;
    background-size: 100% 100%;
}
.light_list_row .icon.extended {
	width: 41px;
	height: 54px;
	background: url(../img/icon_light_standard.png) no-repeat;
    background-size: 100% 100%;
}
.light_list_row .center {
    display: table-cell;

	font-size: 12px;
    text-align: center;
	color: #666666;
    vertical-align: middle;

    padding-left: 12px;
    padding-right: 12px;

    white-space: nowrap;
}
.light_list_row .right {
    display: table-cell;

    vertical-align: middle;
}
.light_list_row .right .img {
	display: inline-block;

	width: 38px;
	height: 38px;

	background-image: url(../img/icon_set.png);
	background-repeat: no-repeat;
	background-size: cover;
}

/**
 * ライト設定 プラン表示
 */
/* .light_contract_status{
	margin: 0 auto;
	margin-top: 38px;

	width: 160px;
	height: 44px;

	background-image: url(../img/icon_option_non_contract.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.light_contract_status[data-status="option"]{
	width: 176px;
	background-image: url(../img/icon_option_under_contract.png);
} */

/**
 * ライト設定 通知種別
 */
.report_type_box {
	margin-top: 14px;

	display: table;

	width: 100%;
}
.report_type_area .item {
	display: table-cell;

	text-align: center;
}

.report_type_area .image {
	display: inline-block;

	width: 140px;
	height: 100px;
	background-size: contain;
	background-repeat: no-repeat;
}
.report_type_area .image_notice {
	background-image: url(../img/img_report_observe_on_setup.png?ts=2020071401);
}
.report_type_area .image_notice[data-selected="0"] {
	background-image: url(../img/img_report_observe_off_setup.png?ts=2020071401);
}
.report_type_area .image_reaction {
	background-image: url(../img/img_report_notice_on_setup.png?ts=2020071401);
}
.report_type_area .image_reaction[data-selected="0"] {
	background-image: url(../img/img_report_notice_off_setup.png?ts=2020071401);
}

.report_type_area input[type="radio"] {
	margin-top: 4px;
	margin-left: 0px !important;
}
.report_type_area .desc {
	display: inline-block;

	width: 120px;

	margin-top: 4px;

	font-size: 12px;
    color: #666666;
}
/**
 * ライト設定 時間設定
 */
.bg_sub_edge{
	width: 100%;
	height: 24px;
	background-size: 100% 24px;
	background-repeat: no-repeat;
}
.bg_sub_top{
	margin-top: 28px;
	background-image: url(../img/bg_img_under_gray_top.png?ts=2019121201);
}
.bg_sub{
	background-color: #F5F5F5;
}
.bg_sub_bottom{
	background-image: url(../img/bg_img_under_gray_bottom.png?ts=2019121201);
}

.report_time_area {
	padding-bottom: 18px;
}

.report_time_area .title{
	margin-top: 0px;
	font-size: 13px;
	font-weight: bold;
}

.report_time_area .range_area{
	position: relative;

	margin: 0 auto;
	margin-top: 16px;

	width: 312px;
	height: 140px;

	background: url(../img/mat_report_range_setup.png?ts=2019121204) no-repeat;
	background-size: cover;

	text-align: center;
}
.report_time_area .range{
	display: inline-block;
	margin: 0 auto;
}
.report_time_area .range_label{
	display: inline-block;

	width: 20px;
	height: 70px;
	line-height: 70px;

	font-size: 12px;
	text-align: center;

	vertical-align: middle;
}
/**
 * ライト設定 時間帯/間隔
 */
.report_time_area .time_area .time{
	text-align: center;
}
.report_time_area .time_area .time_yesterday_label{
	display: inline-block;

	margin-right: 8px;

	height: 42px;
	line-height: 42px;

	font-size: 12px;
	vertical-align: middle;
}
.report_time_area .time_area .time_yesterday{
	margin-top: 22px;
}
.report_time_area .range_area .range_hours{
	position: absolute;
	right: 62px;
	bottom: 8px;

	font-size: 12px;
}

/**
 * HL03調光機能
 */
.hl03_light_type_area{
	text-align: center;
}

.hl03_light_type_area .image {
 	display: inline-block;

 	width: 96px;
 	height: 120px;
 	background-size: contain;
 	background-repeat: no-repeat;
 }

.hl03_light_type_area .image_60w {
	background-image: url(../img/hellolight_img_60w_setup.png?ts=2020071401);
}
.hl03_light_type_area .image_40w {
	background-image: url(../img/hellolight_img_40w_setup.png?ts=2020071401);
}
.hl03_light_type_area .image_20w {
	background-image: url(../img/hellolight_img_20w_setup.png?ts=2020071401);
}

.hl03_light_type_box {
	margin-top: 4px;

	display: table;
	width:100%;
}
.hl03_light_type_area .item {
	display: table-cell;

	text-align: center;
}

.hl03_light_type_area input[type="radio"] {
	margin-top: 4px;
	margin-left: 0px !important;
}

.hl03_light_type_area .desc {
	display: inline-block;

	width: 96px;

	margin-top: 10px;

	font-size: 12px;
    color: #666666;
}

/**
 * 利用規約
 */
 .term_of_use {
    text-align: left;
 }

 /**
  * お知らせ/更新履歴
  */
 .info_changelog_link {
	margin-top: 18px;

	font-size: 12px;
	text-align: center;

 }
 .info_changelog_icon {
	display: inline-block;

	margin-right: 2px;

	width: 18px;
	height: 22px;

	background: url(../img/icon_info.png?ts=2019121201) no-repeat;
	background-size: cover;
	vertical-align: middle;
 }


 .info_changelog {
    text-align: left;
 }
 .info_changelog .title {
    font-weight: bold;
 }


/**
 * LINE連携
 */
.line_colored_button {
	background: #00C300 !important;
}

.line_login_area {
	background: #E5F8E5 !important;

	margin-top: 36px;
	padding: 20px;

	border-radius: 6px;
}
.line_id {
	font-size: 14px;
	text-align: center;
    color: #666666;
}
.line_login_button {
	width: 220px;
	height: 52px;

	margin: 0 auto;

	background: url(../img/button_LINE_base.png) no-repeat;
	background-size: cover;
}
.line_login_button_disabled {
	background: url(../img/button_LINE_disable.png) no-repeat;
	background-size: cover;
}

/* .line_login_area {
	display: table;

	width: 200px;
	height: 40px;

	margin: 0 auto;

	border-radius: 5px;
	box-sizing: border-box;

	background: #00C300 !important;
}
.line_login_area_disabled {
	background: #C6C6C6 !important;
}

.line_login_icon_area {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.line_login_icon {
	width: 40px;
	height: 40px;

	background: url(../img/line_icon.png) no-repeat;
	background-size: cover;
}
.line_login_border {
	display: inline-block;

	width: 1px;
	height: 100%;

	background: #00B300;
}
.line_login_border_disabled {
	background: #B5B5B5;
}
.line_login_text {
	display: table-cell;

	width: 100%;

	color: #FFFFFF;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
} */

/**
 * 契約状態リスト
 */
.contract_list{
	position: relative;

	display: table;
	table-layout: fixed;

	width: 294px;

	padding: 13px;
	margin-top: 28px;

	background-color: #F5F5F5;
	border-radius: 3px;

	text-align: left;
}
.contract_list[data-value="1"]{
	background-color: #FEEDC1;
}
.contract_list.fix{
	background-color: transparent;
}
.contract_list .cell{
	display: table-cell;

	overflow: hidden;
    white-space: nowrap;
	text-overflow: ellipsis;

	font-size: 12px;
	color: #666666;
	line-height: 24px;
}
.contract_list .cell.header{
	width: 112px;
}
.contract_list .cell.radio{
	width: 24px;

	text-align: center;
	vertical-align: middle;
}

.contract_list .contract_list_terminating_area{
	position: absolute;
	display: flex;
	z-index: 10000;

	left: 0px;
	top: 0px;

	width: 320px;
	height: 100%;
	line-height: 100%;

    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;

	background-color: rgba(80, 80, 80, 0.8);

	color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
}
.contract_list .contract_list_terminating{
	display: inline-block;
}


/**
 * 契約プラン比較表
 */
 .compare_list{
	display: table;
	table-layout: fixed;
	box-sizing: border-box;

	width: 100%;
	padding-left: 32px;
	padding-right: 9px;

	background-color: #FFFFFF;
	color: #666666;
}
.compare_list.even{
	background-color: #F5F5F5;
}
.compare_list.header{
	background-color: #FFB522;
	color: #FFFFFF;

	border-radius: 6px 6px 0px 0px;
}

.compare_list .cell{
	display: table-cell;

	padding-top: 12px;
	padding-bottom: 12px;

	text-align: left;
	font-size: 12px;
	white-space: nowrap;
}
.compare_list .cell.check{
	text-align: center;
	font-size: 10px;
	width: 60px;
}
.compare_list .cell.check_header{
	vertical-align: bottom;
}

.compare_list .cell .available{
	display: inline-block;

	width: 16px;
	height: 13px;

	background-image: url(../img/icon_check_setup.png);
	background-repeat: no-repeat;
	background-size: cover;

	vertical-align: middle;
}
.compare_list .cell .available.not{
	background-image: url(../img/icon_check_non.png);
}

/**
 * 契約プラン選択
 */
 .plan_area{
	width: 100%;

	padding-top: 12px;
	padding-bottom: 20px;

	background-color: #FFB522;

	border-radius: 0px 0px 6px 6px;
}
 .plan_list{
	display: table;
	table-layout: fixed;

	width: 100%;
}
.plan_list .cell{
	display: table-cell;

	width: 50%;
	padding-left: 15px;

	text-align: left;

	font-size: 12px;
	color: #666666;
	line-height: 20px;
}
.plan_list .cell_items{
	display: inline-block;

	text-align: center;
}
.plan_list .cell:first-of-type{
	padding-right: 15px;

	text-align: right;
}
.plan_list .name{
	margin-top: 8px;
	margin-bottom: 8px;

	font-size: 12px;
	color: #FFFFFF;
}

.plan_list .plan_label_area{
	width: 112px;

	padding-left: 9px;
	padding-right: 9px;
	padding-top: 14px;
	padding-bottom: 14px;

	border-radius: 6px;

	background-color: #FFB522;
	border-style: solid;
	border-width: 2px;
	border-color: #FFFFFF;
	color: #FFFFFF;
}
.plan_list .plan_label_area[data-value="1"]{
	background-color: #FFFFFF;
	color: #FFB522;
}

.plan_list .plan_label_area .amount{
	font-size: 12px;
}
.plan_list .plan_label_area .amount .bold{
	font-size: 18px;
	font-weight: bold;
}

/**
 * 支払い方法設定
 */
 .payjp_update_card_notice{
	margin: 0 auto;
	margin-top: 30px;

	width: 259px;
	height: 24px;

	background-image: url(../img/3Dsecure_img.png);
	background-repeat: no-repeat;
	background-size: cover;
}
 .payjp_button_area{
	 margin-top: 36px;
	 text-align: center;
 }
 .payjp_button_area[data-enabled="0"]{
	 pointer-events: none;
	 opacity: 0.3;
 }
 .payjp_button_area form{
	 display: inline-block;
 }
 .payment_ready_status{
	margin: 0 auto;
	margin-top: 24px;

	width: 176px;
	height: 44px;

	background-image: url(../img/icon_info_pay_notset.png);
	background-repeat: no-repeat;
	background-size: cover;
 }
 .payment_ready_status[data-ready="1"]{
	width: 190px;
	background-image: url(../img/icon_info_pay_set.png);
 }
