@charset "utf-8";
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
  color:#000;
}
p {
  margin-bottom:auto;
  margin-top:auto;
}
ul {
  margin:0;
  padding: 0;
  list-style-position:inside;
}
.form-note {
  font-size:14px;
  color:#d00000;
}
.note {
  font-size:14px;
}
/* .note, */
.red,
.invalid-feedback,
.alert {
  /* text-align: center; */
  color:#d00000;
}
.button {
  font-weight: bold;
  color:#000;
}
.button:hover {
  text-decoration: none;
}
.button-001 {
  cursor: pointer;
  border-radius: 3px;
  line-height: 1.5;
  min-width: 126px;
}
.bg-form-main{
  padding: 30px 5px;
}
@media (min-width: 641px) {
  .bg-form-main{
    padding: 30px 15px;
  }
}

.main-form-block{
  position: relative;
  z-index: 2;
  padding:10px 5px 30px;
  background-color: #FFF;
  box-shadow:  0 0px 20px rgba(0, 0, 0,0.16);
  color: #FFF;
}
.main-form-block::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  display: block;
  height:7px;
  background: linear-gradient(to right, #b38c34, #d9b763, #b38c34);
}
@media (min-width: 641px) {
  .main-form-block{
    padding:0px 100px;
  }
}

.form-group{
  padding:10px;
}
.font-acc {
  font-size:18px;
}
.bg-acc {
  background-color: #f6f6f6;
}
.form-zipcode {
  width: 4em;
}
.page-form-block{
  padding: 30px 0;
  color: #3C3C3C;
}
@media (min-width: 641px) {
  .page-form-block{
    padding:30px 10px 80px;
    min-height: 100vh;
  }
}
label {
  cursor: pointer;
}
.input-file {
  width: 100%;
}
.input-textarea {
  min-height: 200px;
  width: 100%;
  resize: none;
}
/* @media (min-width: 641px) {
  .input-textarea {
    min-width: 600px;
  }
} */
.indent-01 {
  padding-left:1em;
  text-indent: -1em;
}
.btn-danger {
  background-color:#d00000;
  color:#FFF;
  border:none;
  text-decoration: none;
  padding: 8px 30px;
  display: inline-block;
  cursor: pointer;
}
.bb-01 {
  border-bottom:1px solid #000;
}
.bt-01 {
  border-top:1px solid #888;
}
.button-logout {
  background: transparent;
  border:none;
  width: 100%;
  /* color: #3C3C3C; */
  color:#FFF;
  font-weight: bold;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  line-height: 1.5;
  /* border-bottom:1px solid transparent; */
}
.terms-box {
  padding:10px;
  height: 300px;
  border: 1px solid #CCC;
  overflow: scroll;
}
.input-textarea {
  height: 200px;
}
.disabled-input {
  opacity: 0.6;
}
.bg-page-main {
  padding:30px 5px;
}
.container {
  padding-left:5px;
  padding-right:5px;
}
.page-main-block {
  padding:10px 8px 30px;
}
.form-group {
  padding:10px 0;
}
@media (min-width: 641px) {
  /* .bg-page-main {
    padding:30px 15px;
  }
  .container {
    padding-left:10px;
    padding-right:10px;
  } */
  .page-main-block {
    padding:10px 30px 30px;
  }
  .form-group {
    padding:10px 0;
  }
}
.file-error {
    color: #d00000;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
    display: none;
}

.progress-fill {
    height: 100%;
    background-color: #4caf50;
    width: 0%;
    transition: width 0.3s ease;
}
@media (min-width: 641px) {
  body,
  .header-pc-001 {
      min-width:1200px;
  }
}

.table-container {
    overflow: hidden;
      padding-top:30px;/* モバイル表示でのスクロールヒントのスペース */
}
@media (min-width: 641px) {
  .table-container {
      padding-top:0;
  }
}
.table-wrapper {
    overflow-x: auto;
    /* min-width: 320px; */
}

.form-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}
@media (min-width: 641px) {
  .form-table {
    width: auto;
    min-width: 100%;
  }
}
.form-table th,
.form-table td {
  border:1px solid #ccc;
  padding:10px;
  white-space: nowrap;
}

/* スクロールバーのスタイリング（Webkit系ブラウザ） */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* モバイル表示でのスクロールヒント */
.table-wrapper::after {
    content: "← 横にスクロールできます →";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0.8;
    white-space:nowrap;
}
.table-container {
    position: relative;
}
@media (min-width: 641px) {
  .table-wrapper::after {
    display: none;
  }
}

.gap-10 {
  gap:10px;
}
.nav-pc-003 li {
  padding:0 5px;
}
.nav-pc-003 li button,
.nav-pc-003 li a {
  font-size:14px;
}
/* ログアウトボタンのhoverボーダーエフェクト */
.nav-pc-003 li button {
  position: relative;
}
.nav-pc-003 li button::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #aa812c;
  bottom: 20px;
  visibility: hidden;
  transition: 0.5s;
  opacity: 0;
}
.nav-pc-003 li button:hover::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
.status-stop {
  color:red;
}
.status-before {
  color:grey;
}
.status-active {
  /* color:red; */
}
.status-ended {
  color: #c00;
  font-weight: bold;
}
.user-email-display {
  font-size: 0.85em;
  color: #FFF;
  padding: 10px;
}
#part-wrapper {
  display: none;
}

/* 電話番号入力 3分割 */
.phone-input-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-input-group .phone-part {
  text-align: left;
}
.phone-input-group .phone-hyphen {
  font-weight: bold;
  color: #333;
}

/* サムネイル画像 */
.thumbnail {
  width: 100%;
  max-width: 300px;
  /* max-height: 300px; */
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
}