@charset "utf-8";
/* CSS Document */
html {
	background-color: #FFFFFF;
}
#lp_container{
	font-family: 'Arial','游ゴシック Medium','Yu Gothic Medium',"游ゴシック体",YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',Osaka,sans-serif;
	font-size: 18px;
	line-height: 160%;
}
#lp_container.screener {
	padding: 10px;
	font-size: 17px;
	line-height: 120%;
}

#footer{
	margin-top:0;
}

.mr10{
	margin-right:10px;
}

.mr30{
	margin-right:30px;
}

.basic_btn{
	margin-top: 30px;
}

span.help{
	box-sizing: border-box;
	padding: 0 20px;
	margin-left: 5px;
	background:url(../image/help2.png) no-repeat;
	background-size: 19px;
}
/*reset form*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input.text_auto{
	width: 100%;
	box-sizing: border-box;
}
.srch_box input {
	border-radius: 0;
	background-color: rgb(255,255,255);
}
.screener input[type="number"] {
	width: 110px;
	text-align: center;
}
.box {
	margin: 0 auto;
	padding: 0 15px;
}
.box_left {
	margin: 40px 0;
}

.tab {
	display: flex;
	flex-wrap: nowrap;
	max-width: 1000px;
	margin:60px auto 30px auto;
	text-align: left;
	border-bottom: solid 3px #5A76BB;
	overflow-x: scroll;
	/* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
}

.tab::-webkit-scrollbar {
    display:none;
  }

.tab li {
	min-width: 120px;
	background: #aaa;
	border-radius: 5px 5px 0 0;
}

.tab li.current {
	background: #5A76BB;
}

.tab li a {
	display: block;
	border-bottom: none;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
}

.tab li:not(:last-of-type) {
	margin-right: 5px;
}

.tab li.current a {
	color: #fff;
}

.tabContents {
	box-sizing: border-box;
	width: 1000px;
	margin: 0 auto;
	text-align: left;
	clear: both;
	display: none;
}

.tabContents.current {
	display: block;
}

/*title*/
.title_tabhd{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom:#5A76BB solid 2px;
}

.tabsub_hd{
	box-sizing: border-box;
	background: #7CA4CB;
	color: #fff;
	padding: 5px 10px;
	margin-bottom: 10px;
}

.frm_blk{
	margin-top:20px;
}

/*form*/
input,textarea {
	border: 1px solid #bbb;
	border-radius: 5px;
}

input {
	box-sizing: border-box;
	margin: 0;
	padding: 5px 10px;
}

select {
 	padding: 5px 30px 5px 10px;
}

input:disabled, select:disabled {
    color: #eee;
}

.select1{
	position:relative;
	width: auto;
	border: 1px solid #bbb;
 	border-radius: 5px;
}

.select1::after {
	content: "";
 	background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1697571/chevron-down.svg) no-repeat center;
 	display: block;
 	height: 1rem;
 	position: absolute;
 	right: 10px;
 	top: 50%;
 	transform: translatey(-50%);
 	width: 1rem;
}

.select2{
	position:relative;
	width: fit-content;
	margin: 0 12px 0 8px;
	border: 1px solid #bbb;
 	border-radius: 5px;
}

.select2::after {
	content: "";
 	background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1697571/chevron-down.svg) no-repeat center;
 	display: block;
 	height: 1rem;
 	position: absolute;
 	right: 10px;
 	top: 50%;
 	transform: translatey(-50%);
 	width: 1rem;
}

.select_flex{
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.select_flex p{
	display: flex;
 	align-items: center;
}

.spin1,.spin1 input{
	width:100px;
	margin: 0 30px 0 0;
}


.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0px 30px;
    position: relative;
    width: auto;
}
.screener .checkbox01 {
	padding: 0px 10px;
}
.checkbox01::before {
    background: #fff;
    border: 1px solid #bbb;
	border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox01::after {
    border-right: 3px solid #5A76BB;
    border-bottom: 3px solid #5A76BB;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.radio01::before {
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio01::after {
    background: #5A76BB;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}

.toggle_switch {
	display: flex;
	align-items: center;
    margin-top: 20px;
	font-size: 24px;
}

.toggle_switch > input {
    display: none;
}

.toggle_switch > label {
    display: block;
    position: relative;
    width: 1.8em;
    height: 1em;
	margin-right: 10px;
    border-radius: 1em;
    background-color: #999;
    cursor: pointer;
}
.toggle_switch > input:checked + label {
    background-color: #5A76BB;
}
.toggle_switch > label::before {
    position: absolute;
    top: 0.05em;
    left: 0.05em;
    width: calc(1em - 0.1em);
    height: calc(1em - 0.1em);
    border-radius: calc(1em - 0.1em);
    background-color: #fff;
    transition: 0.5s;
    content: "";
}
.toggle_switch > input:checked + label::before {
    left: calc(100% - 1em + 0.05em);
}
.toggle_switch .type {
    font-size: 18px;
}

label.checkbox02{
	padding:5px 10px;
	margin: 5px 20px 5px 0;
	border: 1px solid #bbb;
	border-radius: 5px;
	display: inline-block;
}

.check_bx:checked + .checkbox02 {
	background-color: #5A76BB;
	color: #fff;
}

textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 15px;
	font-size: 16px;
	resize: none;
}

.btn_login button {
	display: flex;
	width:480px;
	height: 60px;
	margin: 0 auto;
	background:#5A76BB url(../image/csr_free.png) no-repeat center right 10px;
	background-size: 16px 25px;
	box-sizing: border-box;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
}

.btn_login button:hover {
	background:#4DA6FF url(../image/csr_free.png) no-repeat center right 10px;
	background-size: 16px 25px;
}

.btn_login{
	margin-top: 30px;
}


.btn_regst a {
	display: flex;
	width:480px;
	height: 60px;
	margin: 0 auto;
	background:url(../image/csr_free2.png) no-repeat center right 10px;
	background-size: 16px 25px;
	box-sizing: border-box;
	color: #FF8000;
	font-size: 20px;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
	border: solid 1px #FF8000;
}

.btn_regst a:hover{
	background:#FF8000 url(../image/csr_free.png) no-repeat center right 10px;
	background-size: 16px 25px;
	color: #fff;
}

.btn_regst{
	margin-top: 30px;
}

.passlost{
	width:480px;
	margin: 30px auto;
}

.passlost_t{
	background:url(../image/pass_lost.png) no-repeat;
	background-size: 20px;
	padding-left: 25px;
	font-weight: bold;
}

.passlost p{
	font-size:16px;
	line-height: 140%;
	margin-top: 10px;
}

.pass_reset a {
	display: flex;
	width:480px;
	height: 46px;
	margin: 0 auto;
	background:#5A76BB;
	background-size: 16px 25px;
	box-sizing: border-box;
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
}

.pass_reset a:hover{
	background:#4DA6FF;
	background-size: 16px 25px;
}

.pass_reset{
	margin-top: 20px;
}

.button_set{
	display: flex;
	justify-content: space-between;
	width:480px;
	margin: 0 auto 20px auto;
}

button.clear{
	width:220px;
	height: 60px;
	background:#aaa;
	border-radius: 7px;
	color:#fff;
}

button.save{
	width:220px;
	height: 60px;
	background:#85B200;
	border-radius: 7px;
	color:#fff;
}
button.disabled {
	background:#ccc !important;
}
.select_n {
	display: flex;
	align-items: center;
}
.bb_select {
	display: flex;
	align-items: center;
}
.pattern {
	display: flex;
	justify-content: space-between;
	margin-top: -20px;
}
.pattern .frm_blk {
	width: 100%;
}
.pattern .frm_blk:first-child {
	margin-right: 10px;
}
/* -------------- message  ------------ */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-success {
  color: #1d643b;
  background-color: #d7f3e3;
  border-color: #c7eed8;
}
.alert-success hr {
  border-top-color: #b3e8ca;
}
.alert-success .alert-link {
  color: #123c24;
}
.d-inline {
    display: inline !important;
}
.btn-link {
  font-weight: 400;
  color: #3490dc;
  text-decoration: none;
}
.btn-link:hover {
  color: #1d68a7;
  text-decoration: underline;
}
.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}
/* -------------- mypage  --------------- */
.cyan {
	color: #3998C6;
    font-weight: bold;
}
.mw_60 {
	min-width: 60px;
}
.scr_column {
	min-width: 60px;
	white-space: normal;
}
.list-tbl-box {
	overflow: auto;
	white-space: nowrap;
}
.list-tbl tr:nth-child(even){
    background: #eee;
}
.list-tbl .names {
	min-width: 160px;
}
.list-tbl .small {
	font-size: 11px;
}
.list-tbl th:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
}
.list-tbl td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
}
.list-tbl tr:nth-child(odd) td:first-child {
    background-color: #fff;
}
.list-tbl tr:nth-child(even) td:first-child {
    background-color: #eee;
}
.set_btn {
    padding: 1px 6px;
    background-color: rgb(239, 239, 239);
}
.navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
}
.pagination li {
    display: inline;
    padding: 5px 10px;
    border-radius: 5px;
}
.pagination .current {
    background-color:#777;
    color:#fff;
}
.cond_block {
    position: relative;
    margin-top: 10px;
    border: 4px solid #f9bdc8;
    padding: 10px 5px;
    border-radius: 8px;
}
.cond_title {
    position: relative;
    font-weight: bold;
	cursor: pointer;
}
.cond_content {
    display: none;
    font-size: 12px;
}
.cond_title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 20%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cond_title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
/* ----------- selections  ------------ */
.selections dl {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: dotted 1px #bbb;
}
.selections dl:first-child {
    margin-top: 30px;
    border-top: dotted 1px #bbb;
}
.selections dt {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    padding: 0 10px;
    font-weight: bold;
}
.selections dd:nth-child(2) {
    font-size: 12px;
}
.selections dd:last-child {
    margin-left:auto;
    padding: 0 20px;
}
/* -------------- promo  -------------- */
.header_xl {
    display: block;
    margin: 8px 0;
    font-weight: 700;
    font-size: 18px;
}
.field * {
    box-sizing: border-box;
    margin-bottom: 10px;
}
.field {
    display: block;
    border-bottom: 1px solid #eee;
    padding: 20px 10px;
}
.field:first-of-type {
    border-bottom: 1px solid #eee;
    padding-top: 0;
    margin-top: .5em;
}
.field:last-of-type {
    border: 0;
}
.plan_detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.promo {
    padding: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    background-color: #fafafa;
}
.promo h2 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}
a.upgrade_button:hover, a.upgrade_button:visited:hover {
    border-color: #b0281a;
    background-color: #c53727;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
a.upgrade_button, a.upgrade_button:visited {
    background: 0;
    background-color: #db4c3f;
    color: #fff;
    text-shadow: none;
    border: 1px solid transparent;
}
.upgrade_button:active, .upgrade_button_mousedown {
    color: #202020;
    border-color: #202020 !important;
}
.upgrade_button, .upgrade_button:visited {
    float: right;
    font-weight: bold;
    line-height: 18px;
    padding: 6px 12px 7px 12px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    border-radius: 3px !important;
    text-decoration: none !important;
    text-align: center;
}
.feature_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.feature_list_item {
    display: flex;
    align-items: flex-start;
    padding-right: 48px;
    width: 50%;
}
.feature_list_item .caption {
    font-weight: 600;
}
/* -------------- account  -------------- */
.profile dl {
    display: flex;
    padding: .625em 0;
}
.profile dt {
    color: grey;
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    padding-right: 10px;
}
.profile dd:last-child {
    margin-left:auto;
}
/* -------------- subscribe  ------------ */
.plan-name {
    font-size: 16px;
    font-weight: bold;
    line-height: 100%;
    color: #333;
}
#update-form * {
    box-sizing: border-box;
}
#update-form {
    margin: 10px 0 30px;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}
#update-form > fieldset {
    margin-bottom: 1.5rem;
    padding: 0;
    border: 0;
}
#update-form input:focus {
    outline: none;
    box-shadow: 0 1px 3px 0 #cfd7df;
}
#update-form .plan {
    display: flex;
    justify-content: space-between;
}
#update-form .plan label {
    position: relative;
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: .75rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    cursor: pointer;
}
#update-form .plan label:first-child {
    margin-right: 1em;
}
#update-form .plan label.selected {
    border-color: #e44232;
    box-shadow: 0 1.5px 3px -0.5px rgba(0,0,0,.2);
}
#update-form .plan input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
#update-form .note {
    font-size: .75rem;
    line-height: 1.35;
}
#update-form .price {
    margin-right: 20px;
    color: #202020;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
}
#update-form .check-font:before {
    position: absolute;
    top: .75rem;
    right: 1rem;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    color: #e44232;
    visibility: hidden;
}
#update-form label.selected .check-font:before {
    visibility: visible;
}
#update-form .card-holder {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: .75rem;
    font-size: 16px;
}
#update-form .card {
    height:50px;
    border:1px solid #e1e1e1;
    border-radius:5px;
}
#update-form .left {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
#update-form .total {
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.3125rem;
}
#card-button {
    margin: 20px 0 0;
    border-radius: .5em;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
    padding: .65em 1.15em;
    color: #fff;
    border-color: #e44232;
    background-color: #e44232;
}
#card-button:disabled {
    border-color: #ccc;
    background-color: #ccc;
}

/* ------------------------------------- smp_top ------------------------------------- */
@media only screen and (max-width: 896px) {
.tabContents {
	width: 100%;
	margin: 0 auto;
}
}

@media only screen and (max-width: 480px) {
.tabContents {
	width: 100%;
	margin: 0 auto;
}
.screener input[type="number"] {
	width: 100px;
}
.box {
	padding: 0;
}
.box_left {
	margin: 40px auto;
}
.title_tabhd{
	width: auto;
}
.frm_blk{
	padding: 0 10px;
}
.screener .frm_blk {
	padding: 0;
}
.toggle_switch {
    font-size: 30px;
}
.btn_login button,.btn_regst a,.pass_reset a {
	width:100%;
}
.passlost{
	width:auto;
	margin: 30px 20px;
}
.botm_fix{
	position: fixed;
	bottom:0px;
	box-sizing: border-box;
	width:100%;
	height: auto;
	margin-left: -10px;
	padding: 20px;
	background:rgba(51,51,51,0.9);
}
.button_set{
	width:100%;
	margin: 0;
}
button.clear{
	height: 46px;
	width:45%;
}
button.save{
	height: 46px;
	width:45%;
}
.select_n {
	flex-direction: column;
	align-items: flex-start;
}
.select_rng {
	margin: 8px 0 0 8px;
	font-size: 16px;
}
.bb_select {
	margin-top: 8px;
}
.pattern {
	flex-direction: column;
}
.tab {
	margin: 10px auto 20px auto;
}
.tab li {
	min-width: 100px;
}
.tab li a {
	padding: 10px 0;
}
.search_btm {
	margin: 50px 0;
}
.folder_name {
	width: 100% !important;
}
/* -------------- mypage  ------------ */
.list-tbl .names {
	min-width: 140px;
}
.count_info {
	font-size: 12px;
}
.navigation {
	flex-direction: column;
}
.pagination {
	margin-top: 10px;
	text-align: right;
}
/* ----------- selections  ------------ */
.selections dl {
    flex-direction: column;
    align-items: flex-start;
}
.selections dd:nth-child(2) {
    padding: 5px 10px;
}
/* -------------- promo  -------------- */
.promo {
	padding: 20px 10px;
}
.upgrade_button, .upgrade_button:visited {
	padding: 7px;
}
.feature_list {
	flex-direction: column;
}
.feature_list_item {
	width: 100%;
}
/* -------------- account  -------------- */
.profile dt {
	width: 100px;
	min-width: 100px;
	max-width: 100px;
}
/* -------------- subscribe  ------------ */
.plan-name {
	margin: 30px 10px 0;
}
#update-form {
	padding: 2rem 1.5rem;
	margin: 10px;
}
#update-form .plan {
	display: flex;
	flex-direction: column;
}
#update-form .plan label:first-child {
	margin-right: 0;
	margin-bottom: 1em;
}
}


@media only screen and (max-width: 375px) {
ul.listbtn_2p li {
	font-size: 13px;
}
}





