/*** 入力フォーム用CSS ***/

/* 共通 */
body {
  text-align: center;
}
.displayNone{
  display: none;
}
.error {
    color: red;
    display: block;
    margin-top: 4px;
}
.card-header{
  color: white;
  background-color: #0000cd;
}
.logo_pic{
  width: 50%;
}
.enquate_content{
  width: 80%;
  margin: 0 auto;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
.progressbar {
  width: 95%;
}
.progressbar li{
  color: black;
}
.error{
  color: red;
}
.form-att{
  font-size: 0.7rem;
}

/* 構成 */
.navbar {
  position: relative;
  z-index: 1;
}
.top-buttons {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.top-buttons a {
    background-color: #ea005b;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 999px;
    font-size: 1.4vw;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}
.headimage-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}
.headimage {
    width: 100%;
    position: relative;
    z-index: 100;
    display: block;
}
img {
    padding: 0px;
    margin: 0px;
    max-width: 100%;
}
.nav-item {
    font-weight: bold;
    font-size: 1.4vw;
    display: flex;
    align-items: center;
}




.main-container{
  background: linear-gradient(to bottom, #FFF6BF,#ffd148);
}
footer {
    background-color: white;
    /* width: 100%; */
    width: 100vw;
}
/* .doll {
    width: 100%;
} */

.doll_image {
    width: 100%;
    height: auto;
    display: block; /* 画像下の余白を消すために推奨 */
}

.jimukyoku {
    /* width: 100%; */
    width: 100vw;
    text-align: center;
    /* background-color: white; */
    /* margin: 5vh auto; */
    /* transition: transform 0.3s; */
}
.jimukyoku img{
    width: 40%;
}
.kumiai {
    width: 100%;
    text-align: center;
    /* margin: 1vh auto; */
    /* background-color: white; */
}
.kumiai img{
    width: 90%;
}




/*** イベント登録申請フォーム ***/
.progressbar li {
  font-size: 1em;
}

/* 区切り見出し */
.section-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #333;
}

.section-divider::before {
    margin-right: 16px; /* ← スペースを右に追加 */
}

.section-divider::after {
    margin-left: 16px; /* ← スペースを左に追加 */
}

/* 送信確認 */
.table_confirm {
  width: 100%
}
.table_confirm th{
  width: 30%;
  background-color:  #28B7E3;
}
.table_confirm td{
  width: 70%;
  background-color: white;
}
.pic-group{
  margin-bottom: 2rem;
}
.pic-control {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
}
.top-link{
  display: inline-block;
  text-align: center;
  margin: 20px 20px;
  padding: 10px 20px;
  color: #fff;
  background-color: #c82333;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* 送信ボタン */
.custom-red-btn {
    background-color: #dc3545;       /* Bootstrapの danger レッド */
    color: #fff;                     /* 白文字 */
    border: none;
    border-radius: 50px;             /* 長丸ボタン */
    padding: 12px 32px;              /* 少し大きめ */
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 立体感 */
    transition: 0.3s ease-in-out;
}

.custom-red-btn:hover {
    background-color: #c82333;       /* 少し濃い赤に変化 */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* さらに浮き上がる */
}