@charset "utf-8";

/* 基本スタイルはbaseのcss/style.cssで指定している */
/* 上書きしたいものだけここに追加する */


.map_contents {
  width: 400px;
  height: 400px;

}

.map_info_window {
  position: relative;
  width: 100px;
  padding: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
  font-size: 8pt;
}

.map_footer {
  padding: 5px;
}

.grid td {
  height: 40px;
}

.grid .button {
  float: left;
  margin-left: 5px;
}

article {
  max-width: 1080px;
}

.receipt_thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.receipt_detail {
  width: auto;
  max-width: 100%;
}


#header_account {
  white-space: nowrap;
  width: max-content;
  max-width: 200px;
  overflow: hidden;
  text-align: right;
  padding: 0 10px 0 20px;
}
#header_account div {
  line-height: normal;
}
ul.header_menu {
  display: flex !important;
  align-items: center;
}
ul.header_menu li {
  height: 100%;
}
header a {
  height: 100%;
  display: flex !important;
  align-items: center;
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}