.captures-row {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 20px;
}

.captures-row:not(:last-child) {
  margin-bottom: 30px;
}

.captures-list {
  width: 220px;
  flex-shrink: 0;
}

.capture-wrap a,
.capture-wrap a:visited,
.capture-wrap a:hover,
.capture-wrap a:active {
  color: #fff;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.capture-wrap:not(:last-child) {
  margin-bottom: 30px;
}

.capture {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

.capture-person {
}

.capture-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  box-sizing: border-box;
}

.capture-nameplate{
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
}

.capture-minicomment {
  margin-left: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.capture-info{
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #cbcbcb;
}

.capture-info div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.capture-commentbox {
  background: #333;
  padding: 7px;
  border-radius: 7px;
  line-height: 24px;
}

.capture-fullcomment {
  margin-left: 0.5em;
}

/* 画像 */

.capture-image {
  position: relative;
  display: inline-block;
}

.capture-image .front-image {
  width: 100%;
  border: 2px solid #fff;
  border-radius: 14px;
  box-sizing: border-box;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.capture-image .back-image {
  width: 28%;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  border: 2px solid #000;
  border-radius: 7px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.capture-image-dummy {
  width: 100%;
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 14px;
  box-sizing: border-box;
  aspect-ratio: 3 / 4;
}
.custom-button {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 12px 32px;
  cursor: pointer;
}

.custom-delete-button {
  background: #000;
  color: #fff;
  border: 2px solid red;
  border-radius: 20px;
  padding: 12px 32px;
  cursor: pointer;
}

.custom-label {
  display: block;
}

.custom-image-label {
  width: 120px;
  border: 2px solid #666;
  border-radius: 7px;
  padding: 7px;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
}

input[type="radio"]:checked + .custom-image-label {
  border: 2px solid #fff;
}

.custom-textfield {
  width: 100%;
  font-size: 20px;
  background: none;
  border: none;
  outline: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  padding: 5px 10px 7px;
  box-sizing: border-box;
}

.custom-textfield:focus {
  border-bottom: 2px solid #ffcd4f;
}

.custom-label:has(+ .custom-textfield:focus) {
  color: #ffcd4f;
}

.custom-textarea {
  width: 100%;
  height: 150px;
  background: none;
  color: white;
  font-size: 20px;
  border: 2px solid #fff;
  border-radius: 17px;
  padding: 14px;
  box-sizing: border-box;
}

.custom-textarea:focus {
  border: 2px solid #ffcd4f;
}

.custom-label:has(+ .custom-textarea:focus) {
  color: #ffcd4f;
}
.pages-link-button {
  padding: 14px;
  background: #171717;
  display: inline-block;
  border-radius: 7px;
  color: #ffcd4f;
  border: 1px solid;
}

.image-shelf {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.account-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  box-sizing: border-box;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.field_with_errors {
  border: 1px solid red;
  padding: 7px;
}
.flash {
  padding: 7px;
  color: black;
}
.notice {
  background: #b7ff8d;
}
.alert {
  background: #ff9f9f;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  background: #000;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  height: 70px;
  top: 0;
  border-bottom: 1px solid #777;
  z-index: 999;
}
footer {
  text-align: center;
  border-top: 1px solid #777;
  padding: 10px;
  box-sizing: border-box;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin: 20px 0;
}
footer ul li a,
footer ul li a:visited,
footer ul li a:hover,
footer ul li a:active {
  color: white;
}

a,
a:visited,
a:hover,
a:active {
  color: #ffcd4f;
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: middle;
}

main {
  min-height: 100vh;
  margin: 70px auto 0;
  padding: 20px;
  max-width: 720px;
}

.bealive-copylight {
  color: #777;
}
.bealive-logo {
  font-size: 32px;
}
.bealive-logo a {
  color: white;
}

/* MENU */

body.no-scroll {
  overflow: hidden;
}
.hamburger-menu {
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
.close-menu {
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding-top: 80px;
}
.menu ul {
  list-style: none;
  padding: 0;
}
.menu ul li {
  margin: 20px 0;
}
.menu ul li a,
.menu ul li a:visited,
.menu ul li a:hover,
.menu ul li a:active {
  color: white;
}
.header-menu-account {
  font-size: 24px;
}
.header-menu-account button {
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
.header-menu-general {
  font-size: 16px;
}
.menu.is-active {
  display: block;
}
