/*------------------------------------------------------------------------------

 L me-style

------------------------------------------------------------------------------*/

/* /////////////////////////////////////////////////////////////////////////////

 lm layout

///////////////////////////////////////////////////////////////////////////// */

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	position: relative;
	left: 0;
	overflow: hidden;
	word-wrap: break-word;
	color: #362e2b;
	font-size: 1rem;
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	line-height: 1.6;
	background: #ebebeb;
	background-attachment: fixed;
}

a {
	color: #362e2b;
	text-decoration: underline;
}

a:hover {
	color: #a2d4cd;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}


/* /////////////////////////////////////////////////////////////////////////////

 layout

///////////////////////////////////////////////////////////////////////////// */

/*------------------------------------------------------------------------------

 header

------------------------------------------------------------------------------*/

.lm-header_wrapper {
	height: 70px;
}

.lm-header {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	background: #88b9b3;
	color: #FFF;
}

.lm-header_inner {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 10px;
}


/* logo ----------------------------- */

.lm-header .lm-logo {
	max-width: 60%;
	margin: 0 auto;
	padding-top: 10px;
	transition:all 300ms 0ms ease;
}
.lm-header .lm-logo img ,
.lm-header .lm-logo svg {
	width: 60px;
	margin-top: -10px;
	vertical-align: middle;
}
.lm-header .lm-logo_text {
	display: inline-block;
	margin-left: .5em;
	font-size: .875rem;
}


/* navi ----------------------------- */

.lm-hnavi {
	display: -webkit-flex;
	display: flex;
	justify-content: flex-end;
	max-width: 40%;
}
.lm-hnavi li {
	flex-grow: 0;
	margin-left: 15px;
}
.lm-hnavi a {
	display: block;
	padding: 8px 1.5em;
	border-radius: 50vh;
	background: #FFF;
	font-size: .875rem;
	font-weight: bold;
	text-decoration: none;
}
.lm-hnavi .logout a {
	background: #372d2b;
	color: #FFF;
}
.lm-hnavi a:hover {
	background: #CCC;
	color: #666;
}


/* -----------------------------------------------------------------------------

 .footer

----------------------------------------------------------------------------- */

.lm-footer {
	background: #CCC;
}

.lm-footer_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}

.lm-copy_area {
	text-align: center;
}

/* /////////////////////////////////////////////////////////////////////////////

 メインコンテンツ

///////////////////////////////////////////////////////////////////////////// */

.lm-contents_wrapper {
	clear: both;
	max-width: 800px;
	margin: 20px auto;
	padding: 0 15px;
}

.lm-content_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.lm-main_contents {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	background: #FFF;
}

body.archive .lm-main_contents {
	padding: 0;
	background: none;
}

.lm-contents_title {
	margin-bottom: 20px;
}

/* パンくず
-----------------------------------------------------------*/

.lm-breadcrumb {
	width: 60%;
	font-size: .8125rem;
}
.lm-breadcrumb li {
	display: inline-block;
	padding: 0 8px 0 0;
}


/* search
-----------------------------------------------------------*/

.lm-search_area {
	position: relative;
	width: 40%;
	padding-right: 80px;
}
input.lm-search_input[type="text"] {
	width: 100%;
	background: #FFF;
}
input.lm-search_submit[type="submit"] {
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 72px;
	height: 30px;
	border: none;
	border-radius: 50vh;
	background: #372e2b;
	color: #FFF;
	text-align: center;
	z-index: 1;
}


/* btn box
-----------------------------------------------------------*/

.lm-btn_box {
	margin-bottom: 15px;
	text-align: center;
}
.lm-btn_box a ,
.lm-btn_box label ,
.lm-btn_box button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 180px;
	max-width: 80%;
	padding: 10px 10px;
	border-radius: 50vh;
	background: #372e2b;
	color: #FFF;
	text-decoration: none;
}

.lm-btn_box.mint a ,
.lm-btn_box.mint label ,
.lm-btn_box.mint button {
	background: #88b9b3;
}
.lm-btn_box.pink a ,
.lm-btn_box.pink label ,
.lm-btn_box.pink button {
	background: #f29c9f;
}

.lm-btn_box a:hover ,
.lm-btn_box label:hover ,
.lm-btn_box button:hover {
	background: #999;
}
.lm-btn_box.mint a:hover ,
.lm-btn_box.mint label:hover ,
.lm-btn_box.mint button:hover ,
.lm-btn_box.pink a:hover ,
.lm-btn_box.pink label:hover ,
.lm-btn_box.pink button:hover {
	background: #CCC;
}


/* accordion
-----------------------------------------------------------*/

.lm-vibtn {
	position: absolute;
	visibility: hidden;	
}

.lm-vibtn ~ .lm-update_form {
	display: none;
	opacity: 0;
	height: 0;
	transition: all .8s;
}

.lm-btn_box .lm-close {
	transition: all .8s;
}
.lm-btn_box .lm-open {
	display: none;
	transition: all .8s;
}

.lm-vibtn:checked ~ .lm-update_form {
	display: block;
	height: auto;
	opacity: 1;
	transition: all .8s;
}
.lm-vibtn:checked ~ .lm-btn_box .lm-close {
	display: none;
}
.lm-vibtn:checked ~ .lm-btn_box .lm-open {
	display: inline;
}

.lm-vibtn:checked ~ .lm-btn_box label {
	padding: 8px;
	border: 2px solid #CCC;
	background: #FFF;
	color: #CCC;
	font-weight: bold;
}
.lm-vibtn:checked ~ .lm-btn_box label:hover {
	background: #CCC;
	color: #FFF;
}

/* -----------------------------------------------------------------------------

 user [archive]

----------------------------------------------------------------------------- */

.lm-user_list {
	margin-bottom: 40px;
}

.lm-user_list li {
	margin-bottom: 10px;
}

.lm-user_list li a {
	display: flex;
	align-items: center;
	padding: 20px;
	border-radius: 10px;
	background: #FFF;
	text-decoration: none;
}
.lm-user_list li a:hover {
	background: #F8F8F8;
}
.lm-user_list .lm-user_text .lm-user_name ,
.lm-user_list .lm-user_text .lm-user_lastdata {
	margin-bottom: 0;
}


/* -----------------------------------------------------------------------------

 user chart [single]

----------------------------------------------------------------------------- */

/* user 情報
-----------------------------------------------------------*/

.lm-user_area {
	font-size: .875rem;
}

/* layout */
.lm-user_head {
	display: flex;
	margin-bottom: 20px;
}
.lm-user_thumb {
	width: 50px;
	margin-right: 20px;
}
.lm-user_text {
	flex: 1;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.lm-user_text .lm-user_name {
	width: 100%;
	margin-bottom: 15px;
}
.lm-user_text .lm-user_lastdata {
	width: 100%;
	margin-bottom: 15px;
}
.lm-user_text .lm-user_desc {
	width: 100%;
	margin-bottom: 15px;
}


/* 中身 */
.lm-user_thumb img ,
.lm-user_thumb svg {
	border-radius: 50%;
}

.lm-user_text .lm-user_name {
	font-weight: normal;
}
.lm-user_text .lm-user_fullname {
	font-size: 1rem;
}
.lm-user_text .lm-user_id {
	color: #a6937c;
	font-size: .625rem;
}
a:hover .lm-user_text .lm-user_id {
	color: #a2d4cd;
}
.lm-user_text .lm-user_birth_day {
	display: inline-block;
	margin-right: 1.5em;
}
.lm-user_text .lm-user_tel {
	display: inline-block;
}
.lm-user_text .lm-user_desc {

}

/* chart カルテ
-----------------------------------------------------------*/

.lm-chart_area {
	font-size: .875rem;
}

.lm-chart_area h2 {
	margin-bottom: 15px;
	font-size: 1rem;
	text-align: center;
}

/* list */
.lm-chart_lists {
	margin-bottom: 40px;
}
.lm-chart_list {
	border-top: 1px solid #EEE;
}
.lm-chart_list li {
	padding: 10px;
	border-bottom: 1px solid #EEE;
}

/* updata form */
.lm-updata_list dt {
	font-weight: bold;
}
.lm-updata_list dd {
	margin-bottom: .5em;
}
.lm-updata_list dt.hide ,
.lm-updata_list dd.hide {
	display: none;
}

.lm-updata_img_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: .75rem;
}
.lm-updata_img_list li {
	width: 100%;
}

.lm-update_form input[type="text"] {
	min-width: 12em;
	border: 1px solid #CCC;
}
.lm-update_form select {
	min-width: 12em;
	height: 2em;
	border: 1px solid #CCC;
}
.lm-update_form textarea {
	width: 100%;
	height: 6em;
	border: 1px solid #CCC;
}

.lm-form_submit {
	margin-top: 15px;
	text-align: center;
}
.lm-form_submit input {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 180px;
	max-width: 80%;
	padding: 10px 10px;
	border: none;
	border-radius: 50vh;
	background: #88b9b3;
	color: #FFF;
}

/* detail */
.lm-chart_detail {
	margin-bottom: 40px;
}

/* img list */
.lm-chart_img {
	display: flex;
	flex-wrap: wrap;
	max-width: 480px;
	margin: 0 -5px 10px;
}
.lm-chart_img li {
	width: 50%;
	padding: 0 5px 10px;
}
/* luminous */
.lum-lightbox {
	z-index: 9999999;
}
@media screen and (max-width: 460px) {
	.lum-lightbox-inner img {
		max-width: 90vw !important;  /* 軽くスワイプで左端から右端まで動かせる量 */
		max-height: 85vh !important;  /* 上下に適度に余白 */
	}
}

/* text */
.lm-chart_text {
	max-width: 460px;
	margin: 0 auto 20px;
}


/* point calc
-----------------------------------------------------------*/

.lm-point_calc_list {
	margin-bottom: 20px;
}
.lm-updata_list .lm-point_calc_list {
	margin-bottom: 0;
}
.lm-point_calc_list li {
	display: inline-block;
	margin-right: .5em;
}
.lm-point_calc_list input[type="text"] ,
.lm-point_calc_list input[type="number"] {
	min-width: initial;
	max-width: 6em;
	border: 1px solid #CCC;
}
.lm-point_calc_list input.point_before {
	background: #EEE;
}
.lm-point_calc_list input.point_result {
	background: #e1b8b9;
}


/* ページネーション/ページャー
-----------------------------------------------------------*/

.lm-pagination {
	clear: both;
	position: relative;
	line-height: 1.2;
}

.lm-pagination span,
.lm-pagination a {
	width: auto;
	margin-right: 4px;
	padding: 8px 10px 6px 10px;
	border-radius: 4px;
}

.lm-pagination a {
	display: inline-block;
	background: #FFF;
	text-decoration: none;
}
.lm-pagination a:hover {
	background: #F2F2F2;
}

.lm-pagination span {
	display: none;
}

.lm-pagination .current {
	display: inline-block;
	background: #93bdb8;
	color: #FFF;
}


/* -----------------------------------------------------------------------------

 search

----------------------------------------------------------------------------- */

/* 検索フォーム
-----------------------------------------------------------*/

.lm-search_block {
	position: relative;
	margin-bottom: 20px;
	padding: 20px;
	background: #EEE;
}
.lm-search_block button[type="submit"] {
	cursor: pointer;
	width: 200px;
	max-width: 48%;
	padding: 5px;
	border-radius: 50vh;
	background: #333;
	color: #FFF;
}
.lm-search_block input[type="reset"] {
	cursor: pointer;
	width: 200px;
	max-width: 48%;
	padding: 5px;
	border-radius: 50vh;
	background: #CCC;
	color: #FFF;
}
.lm-search_block button[type="submit"]:hover ,
.lm-search_block input[type="reset"]:hover {
	opacity: .5;
}
.lm-search_block input[type="text"] {
	padding: 2px;
	border-radius: 4px;
	border: 1px solid #CCC;
	background: #FFF;
	line-height: 1.2;
}
.lm-search_block select {
	height: 1.5em;
}

.lm-search_dl {
	margin-bottom: 15px;
}
.lm-search_dl dt {
	font-weight: bold;
}
.lm-search_dl dd {
	margin-bottom: 10px;
}

.lm-search_dl label {
	display: inline-block;
	padding-right: 1em;
}

/* label list */
.input_list {
	display: flex;
	flex-wrap: wrap;
}
.input_list.data li {
	width: 12.5%;
}


/* /////////////////////////////////////////////////////////////////////////////

 デバイス別

///////////////////////////////////////////////////////////////////////////// */

/*media Queries スマホ
-----------------------------------------------------------*/

@media only screen and (max-width: 768px) {
}


/*media Queries タブレット 〜 PCサイズ
-----------------------------------------------------------*/

@media only screen and (min-width: 769px) {
	.lm-header_wrapper {
		height: 100px;
	}
	.lm-header_inner {
		padding: 20px 20px;
	}
	.lm-header .lm-logo {
		max-width: 50%;
		padding-top: 10px;
	}
	.lm-header .lm-logo img ,
	.lm-header .lm-logo svg {
		width: 90px;
		margin-top: -10px;
	}
	.lm-header .lm-logo_text {
		font-size: 1rem;
	}
	.lm-hnavi {
		max-width: 50%;
	}
	.lm-hnavi a {
		padding: 12px 2em;
		font-size: 1rem;
	}
	.lm-footer_inner {
		padding: 50px 20px;
	}
	.lm-contents_wrapper {
		margin: 40px auto;
	}
	.lm-updata_img_list li {
		width: 50%;
	}
	.lm-main_contents {
		padding: 40px;
	}
	.lm-user_text .lm-user_name {
		width: 52%;
	}
	.lm-user_text .lm-user_lastdata {
		margin-top: 10px;
		width: 48%;
		text-align: right;
	}
	/* img list */
	.lm-chart_img {
		margin: 0 auto;
	}
	.lm-chart_img li {
		width: 33.33333%;
		padding: 0 10px 20px;
	}
}



