@import url("/css/reset.css");

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #663140;
  background: url(/img/pc_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

img {
  width: 100%;
}

.text-red-500{
  color: red;
}

.logo img{
  width:68%
}

/* ログインページ */
.login_contents {
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 5px;
  background: #eddbd7;
}

.login_contents h1 {
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
}

.login_contents .login_form {
  width: 90%;
  max-width: 330px;
  margin: 100px auto;
  padding: 24px 30px;
  border: solid 0.5px #261717;
  background-color: #e7c4c0;
  border-radius: 60px;
}

.login_contents .login_form .signin_title {
  width: 100px;
  margin: 0 auto 15px;
}

.login_input {
  margin: 0 auto 10px;
}

.login_input input {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 10px;
  font-size: 18px;
  background: #fff;
  border: 1px solid #928080;
  border-left: 10px solid #928080;
}


.login_input input::placeholder {
  color: #CDCDCD;
}

.login_submit {
  width: 120px;
  margin: 20px auto 0;
  padding: 10px 0;
  color: #fefcef;
  font-size: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #685353;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.login_submit:hover {
  opacity: 0.8;
}

.login_change{
  text-align: center;
}

.login_change a{
  color: blue;
}

/* ログインページ以外の全ページ共通css */
#wrapper {
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 50px;
  background: #eddbd7;
}

#content {
  padding:10px;
  background: #eddbd7;
}

.content_main1{
  border: 1px solid #663140;
  margin: 50px 5px;
  padding: 5px;
  position: relative;
}

.content_main0{
  border: 1px solid #663140;
  margin: 50px 10px;
  padding: 80px 50px 100px;
  position: relative;
}

.content_main00{
  width: 40%;
  margin:30px auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
}

.content_main01{
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
}


.content_main1-1{
  background: #fefcef;
  width: 20px;
  height: 20px;
  position: absolute;
  top:  -5px;
  left:  -4px;
}

.content_main1-2{
  background: #fefcef;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -5px;
  right: -4px;
}

.content_main1-3{
  background: #fefcef;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom:-5px;
  right:-3px;
}

.content_main1-4{
  background: #fefcef;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom:-5px;
  left:  -4px;
}


.site_header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #eddbd7;
  border: solid #663140 0.5px;
}

.site_header .logo {
  width: 68%;
}

.site_header .panel {
  width: 7.2rem;
}

#g-nav {
  position: fixed;
  z-index: 40;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #a2807f;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 40;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 40;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fefcef;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#g-nav li button {
  color: #fefcef;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn {
  position: absolute;
  z-index: 50;
  right: -6px;
  cursor: pointer;
  width: 70px;
  height: 55px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

footer {
  height: 30px;
  display: block;
  background: #e1b6c0;
}

.title {
  font-size: 20px;
  font-weight: bold;
}

.page_title {
  text-align: center;
  padding: 40px 5px;
  border: 1px solid #4e3746;
  border-radius: 10px 10px 0px 0px;
  background: #8b7075;
  margin: 0 auto;
  margin-top: -20px;
  width: fit-content;
  min-width: 110px;
}

.btn {
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  opacity: 0.8;
}

.page_contents {
  padding: 20px 10px;
}

.discount {
  color: #df0b48;
}

.charge_total {
  font-size: 18px;
  font-weight: bold;
}

.week_choice {
  margin-bottom: 7px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.week_choice .week_present {
  padding: 20px 10px  5px;
  color: #663140;
  font-size:19px
}

.week_choice .week_prev a::before {
  font-size: 22px;
  content: "\0ab";
}

.week_choice .week_next a::after {
  font-size: 22px;
  content: "\0bb";
}

.to_back {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.to_back input {
  text-decoration: underline;
}

.to_back a {
  font-size: 14px;
  text-decoration: underline;
}

.pink_btn {
  text-align: center;
}

.pink_btn input,
.pink_btn button {
  width: 140px;
  padding: 10px 0;
  font-size: 16px;
  color: #fefcef;
  text-align: center;
  background: #9d776c;
  border-radius: 5px;
  border:1px solid #4e3746;
}

.green_btn {
  text-align: center;
}

.green_btn input,
.green_btn button {
  width: 180px;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #99c06d;
}

.textarea_block {
  margin-top: 15px;
}

.textarea_block .textarea_title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}

.textarea_block textarea {
  width: 100%;
  padding: 5px;
  min-height: 100px;
  max-height: 200px;
  background: #fff;
}

.textarea_block textarea:focus {
  outline: 1px solid #663140;
}

.header_user{
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.header_user .shop_name,
.header_user .staff_name{
  padding: 0 10px;
}

.openbtn.active span{
 background-color: #fefcef;
}

.openbtn span{
background-color: #fefcef;
}


/* 表のcss */
.listwrap .list_item {
  margin-bottom: 10px;
  padding: 10px 7px;
  display: flex;
  background: #fff;
  border: 1px solid #663140;
}

.listwrap .list_item .list_item_title {
  width: 26%;
  padding: 10px 5px;
  text-align: center;
  border-right: 1px solid #663140;
}

.listwrap .list_item .list_item_contentswrap {
  width: 80%;
  padding: 10px 0 10px 10px;
}

.listwrap .list_item .list_item_contentswrap .list_item_contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.listwrap .list_item .list_item_contentswrap .list_item_contents:not(:last-of-type) {
  margin-bottom: 15px;
}

.listwrap .list_item .list_item_contentswrap .list_item_contents ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.listwrap .list_item .list_item_contentswrap .list_item_contents ul li.reserve_time {
  width: 100px;
}

.listwrap .list_item .list_item_contentswrap .list_item_contents ul li.reserve_name {
  margin-top: 2px;
  display: block;
}

.listwrap .list_item .list_item_contentswrap .list_item_contents ul li.reserve_room {
  margin-top: 2px;
  display: block;
}

.table1 .table1_main_title {
  padding: 15px 0;
  color: #fefcef;
  font-size: 20px;
  text-align: center;
  background: #533637;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border: 1px solid #4e3746;
  border-radius: 5px;
  position: relative;
}

.table1 .table1_main_title .tel_txt{
  padding-top: 2px;
  font-size: 0.9rem;
}

.table1 .table1_main_title .table1_main_title_link {
  margin-left: 15px;
  font-size: 15px;
}

.table1 .table1_main_title .table1_main_title_link a {
  display: block;
  text-decoration: underline;
}

.table1 .table1_img_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.table1 .table1_img_block .table1_img_block_item {
  width: 49%;
  margin-top: 5px
}

.table1 .table1_img_block .table1_img_block_item img {
  height: 160px;
  object-fit: cover;
}

.table1 .table1_block {
  margin-top: 5px;
  padding: 15px 10px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.table1 .table1_block .table1_block_title {
  width: 35%;
  font-weight: bold;
}

.table1 .table1_block .table1_block_txt {
  width: 63%;
  display: flex;
  justify-content: flex-end;
}

.table1 .table1_block.parking .table1_block_title {
  width: 100%;
}

.table1 .table1_block.parking .table1_block_txt {
  width: 100%;
  margin: 10px 0;
  display: block;
}

.table1 .table1_block.parking .table1_img_block {
  width: 100%;
}

.table2 .table2_main_title {
  font-size: 13px;
  font-weight: bold;
}

.table2 .table2_contents {
  margin-top: 5px;
}

.table2 table {
  width: 100%;
  border: 1px solid #663140;
  background: #fff;
}

.table2 table tr:not(:last-of-type) {
  border-bottom: 1px solid #663140;
}

.table2 table th {
  width: 30%;
  padding: 15px 5px;
  background: #d8cfd0;
  border-right: 1px solid #663140;
  vertical-align: middle;
  text-align: center;
}

.table2 table td {
  width: 70%;
  padding: 15px 15px 15px 0;
  text-align: right;
  background: #fff;
  vertical-align: middle;
}

.table3_item {
  background: #fff;
  border: 1px solid #663140;
  margin: 10px;
}

.table3_item a {
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table3_item:not(:first-of-type) {
  margin-top: 5px;
}

.table3_item .table3_item_title {
  font-weight: bold;
}

.table3_item .table3_item_link a {
  text-decoration: underline;
}

.table3_item_left {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 40%;
}

.table3_item_ngtag {
  background-color: #663140;
  padding: 2px 10px;
  color: #fff;
  margin: 0 5px;
}

.table3_item_right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 58%;
}

.table3_item_info {
  margin: 0 15px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.5em;
}

/* トップページ */
.news {
  padding: 20px 10px;
}

.news_title {
  margin-bottom: 7px;
}

.news_list {
  max-height: 300px;
  min-height: 30px;
  overflow: scroll;
}

.news_list ul li {
  border-bottom: 2px solid #e1b6c0;
}

.news_list .news_block {
  padding: 5px 0 10px 0;
  display: flex;
  align-items: center;
}

.news_list .news_block .unread,
.news_list .news_block .read {
  width: 25px;
  padding: 7px 1px;
}

.news_list .news_block .unread {
  color: #fff;
  background: #663140;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
}

.news_list .news_block .news_detail {
  margin-left: 10px;
  word-break: break-all;
}

.news_list .news_block .news_detail .news_heading {
  margin-bottom: 5px;
  font-size: 18px;
}

.news_list .news_block .news_detail .news_date {
  font-size: 14px;
}

.schedule_link {
  color: blue;
  text-decoration: underline;
}

.photo_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.photo_block div {
  width: 49%;
  margin-top: 10px;
}

.photo_block div img {
  height: 120px;
  object-fit: cover;
}

.information {
  background: #ece2e4;
  border-radius: 0 30px 0 0;
}

.information .information_block {
  padding: 20px 10px;
}

.information .information_block .information_detail {
  margin-top: 20px;
}

.information .information_block .information_detail ul li {
  margin-bottom: 5px;
  display: flex;
  word-break: break-all
}

.information .information_block .information_detail ul li span {
  min-width: 33px;
}

.information .information_block .information_detail ul li a {
  text-decoration: underline;
}

.information .information_block .information_detail .remarks {
  margin-top: 20px;
  line-height: 1.4em;
}

.information .information_block .information_detail .information_detail_btn {
  width: 180px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: #d9526e;
}

.information_detail_btn a {
  padding: 10px;
  display: block;
}

.menu_main {
  display: flex;
  justify-content: center;
  align-items: center;
}


.menu_main_block{
  padding:100px 10px;
  background:
  linear-gradient(45deg,  transparent 20px, #f1e7de 20px),
  linear-gradient(135deg, transparent 20px, #f1e7de 20px),
  linear-gradient(225deg, transparent 20px, #f1e7de 20px),
  linear-gradient(315deg, transparent 20px, #f1e7de 20px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  margin-top:50px;
}


.menu_main ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu_main ul::after {
  content: '';
  width: 30%;
}

.menu_main ul li {
  width: 50%;
  height: 75px;
  margin-bottom: 20px;
  font-size: 16px;
}

.menu_main ul li:nth-of-type(1) {
  background: url(/img/menu1.png);
  background-repeat:no-repeat;
  background-position: center;
}

.menu_main ul li:nth-of-type(2) {
  background: url(/img/menu2.png);
  background-repeat:no-repeat;
  background-position: center;
}

.menu_main ul li:nth-of-type(3) {
  background: url(/img/menu3.png);
  background-repeat:no-repeat;
  background-position: center;
}

.menu_main ul li:nth-of-type(4) {
  background: url(/img/menu4.png);
  background-repeat:no-repeat;
  background-position: center;
}

.menu_main ul li:nth-of-type(5) {
  background: url(/img/menu5.png);
}

.menu_main ul li:nth-of-type(6) {
  background: url(/img/menu6.png);
}

.menu_main ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home contentmain1{
 padding:50px;
}


/* 予約情報詳細ページ */
#reserve_detail .table1 {
  margin-bottom: 20px;
}

#reserve .listwrap .list_item .list_item_contentswrap .list_item_contents ul {
  display: block;
}

#reserve_detail .receive {
  margin-top: 10px;
}

#reserve_detail .start_btn {
  margin: 0 auto 20px;
}

.charge_input {
  margin-right: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: bold;
}

.charge_input input {
  margin-left: 10px;
  margin-right: 3px;
  padding: 5px;
  font-size: 18px;
  font-weight: bold;
  width: 100px;
  background: #fff;
  text-align: right;
}

.charge_input input:focus {
  outline: 1px solid #663140;
}


/* 予約情報詳細ページ（開始ボタン押下後） */
.finish {
  margin-top: 20px;
  padding: 20px 10px;
  background: #fff;
}

.finish .charge_display {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.finish .charge_display .price {
  margin-top: 20px;
  margin-left: 20px;
  font-size: 26px;
  font-weight: bold;
}

.finish .charge_display .price span {
  font-size: 16px;
}

.finish .pink_btn {
  margin: 15px auto 0;
}

/* 出勤管理ページ */
#schedule .table2.table2_darkred,
#schedule .table2.table2_blue {
  margin-bottom: 20px;
}

#schedule .annotation {
  margin-bottom: 10px;
}

#schedule .unfixed {
  color: #d9526e;
}

#schedule .btn_pressed {
  width: 180px;
  padding: 10px 0;
  font-size: 16px;
  text-align: center;
}

#schedule .table2.table2_darkred th {
  color: #fff;
  background: #663140;
}

#schedule .table2.table2_blue th {
  background: #a3c5d1;
}

#schedule .table2 th {
  text-align: center;
  font-weight: 500;
}

#schedule .table2 td .table2_contents_room {
  margin-top: 5px;
  margin-left: 10px;
  display: block;
}

#schedule .table2 table td {
  text-align: center;
}

#schedule .schedule_input {
  margin-bottom: 20px;
  text-align: center;
}

#schedule .schedule_input a {
  width: 180px;
  height: 100%;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: block;
  background: #99c06d;
}

#schedule .table2 td .time_input {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 13px;
}

#schedule .table2 td .time_input select {
  padding: 0 5px;
  border: 1px solid #663140;
}

#schedule .table2 td .time_input .wave {
  margin: 0 10px;
}

#schedule .pink_btn {
  margin-top: 30px;
}

#schedule .all_check_btn{
  display: flex;
  justify-content: flex-end;
}

#schedule .all_check_btn .all_check{
  padding: 10px;
  font-size: 14px;
  color: #fefcef;
  text-align: center;
  display: block;
  background: #4e3746;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

#schedule .up_check{
  margin-left: 5px;
}

#schedule .up_check span{
  color: red;
}

#schedule .up_check input{
  margin-right: 2px;
}

/* 出勤管理ページ（入力ページ） */
#schedule_input .table2 th {
  text-align: center;
}

#schedule_input .table2 table td {
  text-align: left;
}

#schedule_input .table2 td .time_input {
  display: flex;
  justify-content: center;
  align-items: center;
}

#schedule_input .table2 td .time_input select {
  padding: 0 5px;
  border: 1px solid #d9526e;
}

#schedule_input .table2 td .time_input .wave {
  margin: 0 10px;
}

#schedule_input .pink_btn {
  margin-top: 30px;
}

.page_title h2{
  color:#fefcef;
  padding: 5px;
}



/* ルーム情報ページ */
#room .listwrap .list_item .list_item_contentswrap .list_item_contents {
  align-items: center;
}

#room .listwrap .list_item .list_item_contentswrap .list_item_contents ul {
  width: 80%;
}

#room .room_name {
  margin-bottom: 5px;
}

#room .room_name .room_number {
  margin-left: 5px;
}

#room .list_item_link {
  width: 20%;
  text-align: center;
}

#room .list_item_link a {
  text-decoration: underline;
}


/* ルーム情報詳細ページ */
#room_detail .table1 {
  margin-bottom: 20px;
}

#room_detail .table1_block_map {
  width: 100%;
  margin-top: 15px;
}

#room_detail .map_link {
  margin-bottom: 10px;
  display: block;
  text-decoration: underline;
}

#room_detail .table1_block_map .map_inner {
  position: relative;
}

#room_detail .table1_block_map .map_layer {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}

#room_detail .table1_block_map iframe {
  width: 100%;
}

#room_detail .table2 table td {
  padding: 15px 10px;
  text-align: left;
}


/* 報酬一覧ページ */

.totalwrap{
  margin-bottom: 20px;
  padding: 10px;
  background: #b5a4a0;
  display: flex;
  justify-content: center;
}

.total {
font-size: 13px;
}

.month {
font-size: 15px;
}


#reward .totalwrap ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 5px;
}

#reward .totalwrap ul li {
  width: 33%;
  font-size: 1rem;
  text-align: center;
}

#reward li+ li {
  border-left: 1px solid #663140;
}

#reward .totalwrap ul li .month{
  display: block;
}

#reward .listwrap .list_item .list_item_contentswrap {
  position: relative;
  cursor: pointer;
}

#reward .listwrap .list_item .list_item_contentswrap .list_item_contents {
  padding-left: 30px;
}

#reward .listwrap .list_item .list_item_contentswrap input{
  position: absolute;
  top: 10%;
  left:10%;
  width: 80%;
  height: 80%;
  background: #ddd;
  padding: 0 10px;
}

#reward .list_item_link {
  width: 20%;
  text-align: center;
}

#reward .list_item_link a {
  text-decoration: underline;
}


.listwrap .list_item .list_item_detail {
  width: 20%;
  padding: 12px 0 10px 0;
  text-align: right;
}

.listwrap .list_item .list_item_detail a {
  background: #4e3746;
  color: #fefcef;
  text-align: center;
  border-radius: 5px;
  padding: 4px 6px;
}


#reward .listwrap .list_item .list_item_contentswrap_sub {
  width: 55%;
}


/* 報酬明細ページ */
#reward_detail .page_contents:not(:first-of-type) {
  margin-top: 20px;
}

#reward_detail .table2_sub_title {
  margin-top: 5px;
}

#reward_detail .table2_sub_title:not(:first-of-type) {
  margin-top: 15px;
}

#reward_detail .table2 table td {
  width: 100%;
  display: block;
}

#reward_detail .table2 table td .table2_td_span {
  width: 100px;
  display: inline-block;
}


#reward_detail .charge_detail {
  padding: 0 10px;
}

#reward_detail .table2 .charge_memo td {
 position: relative;
 padding: 25px 10px 10px 10px;
 min-height: 160px;
 text-align: left;
 font-size: 0.9rem;
}

#reward_detail .table2 .charge_memo td::after {
  content: '';
  background: url(/img/edit.png) center center / cover no-repeat;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
}

/* 顧客一覧ページ */
#customer .search_input {
  width: 100%;
  background-image: url(/img/search.png);
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: auto 60%;
  background-color: #d0cecf;
  margin: 0 auto;
  padding: 8px 5px 8px 24px;
  border: 1px solid #858182;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#customer .search_input:focus {
  outline: 1px solid #663140;
}

#customer .search_input::placeholder {
  color: #9b9597;
}

#customer .sort {
  margin-top: 15px;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#customer .sort span {
  margin-right: 5px;
}

#customer .table3 {
  margin-top: 20px;
}

#customer .table3 .table3_item_title {
  letter-spacing: 0.1em;
}

#customer .customer_input,
#customer_detail .customer_input {
  text-align: center;
}

#customer
#customer_detail{
  width: 110px;
  height: 100%;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  display: block;
  background: #663140;
}

.customer_input a{
  width: 100px;
  padding: 7px;
  font-size: 16px;
  color: #fefcef;
  background: #a79796;
  border-radius: 5px;
  border: 1px solid #4e3746;
}

.customer_input{
  margin: 10px;
}

#customer .table3 ul li {
  position: relative;
}

#customer .table3 ul li .trash_btn {
  background: url(/img/trash.png) center center / cover no-repeat;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
}



/* 顧客詳細ページ */
#customer_detail #memo_content {
  width: 100%;
  word-break: break-all;
}

#customer_detail .green_btn {
  margin-top: 30px;
}

#customer_detail .save_cancel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#customer_detail #save_button {
  width: 110px;
}

#customer_detail #cancel_button {
  margin-left: 15px;
}

#customer_detail .table2 {
  margin-top: 10px;
}

#customer_detail .table2 .table2_contents:not(:last-of-type) {
  margin-bottom: 20px;
}

#customer_detail .table2 table th {
  width: 33%;
}

#customer_detail .table2 table td {
  width: 100%;
  display: block;
  text-align: center;
}

#customer_detail .table2 table td .table2_td_span {
  width: 100px;
  display: inline-block;
}

#customer_detail .table2 table {
  position: relative;
}

#customer_detail .table2 table::after {
  content: '';
  background: url(/img/edit.png) center center / cover no-repeat;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 18px;
  height: 18px;
}

#customer_detail .del_btn {
  text-align: right;
  padding-right: 3px;
  margin-top: 5px;
}

#customer_detail .del_btn button {
  color: red;
  text-decoration: underline;
}

#customer_detail .table1_main_title::after {
  content: '';
  background: url(/img/edit-white.png) center center / cover no-repeat;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
}

.swal2-content{
  text-align: left!important;
}

.swal2-input {
  margin: 8px auto!important;
  font-size: 1rem;
}

input[type="date"].swal2-input {
  width: 50%!important;
  margin-right: 2%!important;
}

.swal2-input[type=number] {
  max-width: 100%!important;
}

select[name="time"].swal2-select {
  width: 45%!important;
  min-width: 45%!important;
}

.swal2-select {
  margin: 8px auto!important;
  border:1px solid #d9d9d9;
  border-radius:.1875em;
  font-size: 1rem;
  width: 100%;
}

.swal2-select:focus {
  border:1px solid #b4dbed;
  outline:0;
  box-shadow:0 0 3px #c4e6f5
}

.swal2-textarea {
  margin: 8px auto!important;
  font-size: 1rem;
}



/* 姫予約ページ */
#therapist_reserve .search_input {
  width: 100%;
  background-image: url(/img/search.png);
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: auto 60%;
  background-color: #d0cecf;
  margin: 0 auto;
  padding: 10px 5px 10px 35px;
  border: 1px solid #858182;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#therapist_reserve .search_input:focus {
  outline: 1px solid #663140;
}

#therapist_reserve .search_input::placeholder {
  color: #9b9597;
}

#therapist_reserve .sort {
  margin-top: 15px;
  text-align: right;
}

#therapist_reserve .sort span {
  margin-right: 5px;
}

#therapist_reserve .table3 {
  margin-top: 20px;
}

.table2_contents td{
 word-break: break-all;
}


/* 姫予約ページ(入力ページ) */
#therapist_reserve_input .table2 table td {
  padding: 15px;
  text-align: center;
}

#therapist_reserve_input .table2 table td.table2_contents_flex {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#therapist_reserve_input .table2 table td.table2_contents_flex::after {
  content: "";
  width: 40%;
}

#therapist_reserve_input .table2 td input {
  width: 70%;
  padding: 5px;
  text-align: left;
  border: 1px solid #663140;
}

#therapist_reserve_input .table2 tr.date td input {
  width: 120px;
}

#therapist_reserve_input .table2 td select {
  padding: 5px;
  border: 1px solid #663140;
}

#therapist_reserve_input .table2 tr.date td select {
  padding: 0;
  height: 30px;
}

#therapist_reserve_input .table2 td textarea {
  width: 70%;
  height: 100px;
  padding: 5px;
  text-align: left;
  border: 1px solid #663140;
}

#therapist_reserve_input .table2 td input[type="checkbox"] {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* クーポン重複禁止に設定された項目 */
#therapist_reserve_input .table2 td input[type="radio"] {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

#therapist_reserve_input input[type="text"]:focus,
#therapist_reserve_input input[type="tel"]:focus,
#therapist_reserve_input input[type="datetime-local"]:focus {
  outline: 1px solid #d9526e;
}

#therapist_reserve_input .table2 td label {
  width: 40%;
  margin: 7px;
  display: inline-block;
}

#therapist_reserve_input .pink_btn {
  margin-top: 30px;
}

#therapist_reserve_input .thanks_message {
  margin: 50px 80px;
}

.thanks_message_btn {
  width: 180px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: #d9526e;
}

.thanks_message_btn a {
  padding: 10px;
  display: block;
}

