body {
    font-family: Arial, sans-serif;
    /* background-color: #f4f4f4; */
}

.header {
    background-color: #bbc7d3;
    color: #00499D;
    padding: 10px;
    text-align: center;
    font-size: 30px;
}
/* 会員種別 */
td.required-field{
    align-items: center;
    vertical-align: middle;
    background-color: #CCDBEB;
    padding: 10px 20px;
}
/* 入力テキストのあるtableで指定 */
table.input-field {
    font-size: 16px;
    background-color: #ffffff;
    width: 100%;
}
/* 入力テキストのあるtableのタイトル部分 */
table.input-field .title,
table.input-field .required-field {
/* table.input-field .title-2 { */
    width: 250px;
    /* white-space: nowrap; */
}
/* 入力テキスト(input=text)タイトル */
/* .title {
    display: inline-block;
    margin-right: 5px;
} */

table.input-field td, table.input-field th {
    border: 1px solid white;
}
table.input-field td {
    /* vertical-align: middle; */
    padding: 10px;
    font-size: 14px;
}
/* 入力テキスト(input=text)の２段部分のタイトル */
.subtitle {
    vertical-align: middle;
    background-color: #e5edf5;
    padding: 10px 20px;
    height: auto;
    width: 150px;
}
/* 入力テキスト(input=text)タイトル */
.title-2 {
    vertical-align: middle;
    background-color: #dcdcdc;
    padding: 10px 20px;
    height: auto;
    width: 250px;
}
/* 会員種別のドロップダウン */
.input-field-required{
    background-color: #E5EDF5;
    padding-left: 5px;
}
/* 固定文「必須」 */
.required {
    background-color: red;
    color: white;
    padding: 2px 5px;
    margin-left: 20px;
    border-radius: 3px;
    font-size: 90%;
}
/* 入力エリアの固定文言 */
.inputTitle {
    display: inline-block;
    padding-right: 15px;
    font-size: 14px;
}
/* ドロップダウンのスタイル */
.custom-dropdown {
    appearance: none; /* デフォルトのスタイルを無効化 */
    -webkit-appearance: none; /* Safari と Chrome 用のプレフィックス */
    -moz-appearance: none; /* Firefox 用のプレフィックス */
    background-color: #f2f2f2; /* ドロップダウンの背景色 */
    color: #333; /* テキストの色 */
    padding: 10px; /* ドロップダウンの余白 */
    border: 2px solid #ccc; /* ボーダー */
    border-radius: 5px; /* 角丸 */
    font-family: 'Roboto', sans-serif; /* フォントの指定 */
    font-size: 14px; /* フォントサイズ */
    width: 300px; /* 幅 */
    height: 40px;
    line-height: 1.0;
    transition: border-color 0.3s ease; /* ホバー時のトランジション */
}
/* ドロップダウンのスタイル：選択時 */
.custom-dropdown:hover {
    border-color: #007bff; /* ホバー時のボーダー色 */
}
/* サブタイトル（お客様情報など）*/
.sub-contents-title {
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #00499D;
    
}
/* 入力フィールドtd */
.input-field {
    padding-left: 10px;
    background-color: #f6f6f6;
}
/* 入力テキストボックス */
.input-text {
    box-sizing: content-box; 
    width: calc(100% - 20px);
    height: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    outline: none;
}
/* 入力テキストエリア */
.input-textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    outline: none;
    width: 100%;
}
/* 入力テキストボックスマウスオーバー時のスタイル */
.input-text:hover,
.input-textarea:hover
{
    border-color: #007bff;
}
.input-text:focus,
.input-textarea:focus
 {
    border-color: #000; /* フォーカス時のボーダーの色（黒） */
    outline: none; /* フォーカス時のデフォルトのアウトラインを削除 */
}

/* 入力テキストボックスのReadonly時のスタイル */
.input-text:read-only,
.input-textarea:read-only {
    background-color: inherit;
    border: none;
    box-shadow: none;
    cursor: not-allowed;
}
/* サブタイトルの区切り線 */
.short-line {
    text-align: left;
    width: 50px; /* 線の長さ */
    height: 5px; /* 線の太さ */
    display: inline-block;
    background-color: orange; /* 線の色 */
    margin-bottom: -2px;
}
/* タイトル部分の説明文 */
.title-contents {
    font-size: 80%;
    white-space: normal;
}
/* 入力フィールドを囲むtdタグ */
.input-border {
    border: 1px solid #cccccc; padding: 20px;
}
/* 個人情報文言、画面上部固定文言 */
.privacy-contents,
.header-contents
 {
    /* font-size: 90%; */
    text-align: center;
}
/* エラーメッセージ */
.error-message {
    color: red;
    font-size: 90%;
}
/* 確認、送信、戻るボタン */
/* .btn-confirm, .btn-regist {
    background-color: #F08300;
    border: 1px solid #f08300;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 30px;
    width: 250px;
    height: 45px;
    background: url(https://www.jmo.pmrj.jp/common/img/icon_arrow_right_white.png) no-repeat center right 20px #f08300;
} */

/* .btn-confirm:hover, .btn-regist:hover {
    color: #f08300;
    border: 1px solid #f08300;
    background: url(https://www.jmo.pmrj.jp/common/img/icon_arrow_right_orange.png) no-repeat center right 20px #fff; } */

/* .btn-regist {
    background-color: #45a049; 
} */
/* .btn-return {
    background-color: #d1cbcb;
    color: #333;
} */
/* .btn-regist:hover {
    background-color: #0056b3; 
} */
#btnConfirm:disabled {
    background-color: #cccccc; 
    border: 1px solid #cccccc;
    color: #fff;
    cursor: none;
    background: url(https://www.jmo.pmrj.jp/common/img/icon_arrow_right_white.png) no-repeat center right 20px #ccc; 
}



.btn-company-delete {
    background-color: #756bcf; /* 青色の背景 */
    border: none;
    color: white;
    padding: 5px 20px; /* 内部の余白 */
    text-align: center; /* 文字を中央揃え */
    text-decoration: none;
    display: inline-block; /* インラインブロック要素として表示 */
    font-size: 14px; /* フォントサイズ */
    margin: 0; /* 外側の余白 */
    transition-duration: 0.4s; /* アニメーション時間 */
    cursor: pointer; /* カーソルをポインターに */
    border-radius: 5px; /* 角の丸み */
    box-sizing: border-box; /* パディングとボーダーを幅に含む */
    width: auto; /* 自動的に内容に応じた幅 */
    height: auto; /* 自動的に内容に応じた高さ */
    line-height: normal; /* 通常の行の高さ */
    vertical-align: middle; /* 親要素との垂直方向の中心揃え */
}
.btn-company-delete:hover {
    background-color: #483bb9;
}


ul{
  margin: 10px 0 !important;
}

/* 固定文字 */
.fix-content {
    font-size: 14px;
}

/* body{
  margin: 40px 20px;
} */

/**ファイル**/
.uploadField {
    margin: 10px;
}

.fileLabel {
    display: inline-block;
    /* padding: 3px 3px; */
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px; /* 角の丸みを少し増やす */
    cursor: pointer;
    margin-right: 10px;
    height: 30px; /* 高さを調整 */
    line-height: 30px; /* テキストの垂直中央揃え */
    font-size: 14px; /* テキストサイズを調整 */
    width: 150px;
    text-align: center;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* カスタムファイル選択ボタンのホバー時のスタイル */
.custom-file-upload:hover {
    background-color: #0056b3;
}

/* カスタムファイル選択ボタンのフォーカス時のスタイル */
.custom-file-upload:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
/* .fileInput {
    display: none;
} */
input[type="file"] {
    display: none;
}
.dropArea {
    width: 100%;
    padding: 50px;
    text-align: center;
    background-color: #f0f0f0;
    border: 2px dashed #007bff;
    border-radius: 5px;
    margin-top: 20px;
}

.dragover {
    background-color: #d9edf7;
}
  /* テキストボックスの枠線を非表示にするスタイル */
  .no-border {
    border: none;
    outline: none;
    /* その他のスタイルを必要に応じて追加 */
  }

 label.colon {
    display: inline-block;
    width: 140px;
    position: relative;
    padding-right: 15px; /* コロンの余地 */
}

label.colon:after {
    content: '：';
    position: absolute;
    right: 0;
}

.overlay-content dt {
    font-size: 14px;
}

/* footer {
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 10px;
    text-align: center;
    left: 0;
    bottom: 0;
    z-index: 1000;
} */
footer {
    padding: 10px 0;
    background-color: #fff;
    text-align: center;
}
footer hr {
    border: 0;
    height: 1px;
    background: #f1f8ff;
    margin: 0px 10px;
}
footer p {
    font-weight: normal;
    font-size: 14px;
} 

.colorCheckBox-container {
    display: flex;
    flex-wrap: wrap;
}

.colorCheckBox-row {
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    /* margin-bottom: 5px; */
}
/* .colorCheckBox {
    display: inline-block;
    width: 200px;
    margin: 0; }
    .colorCheckBox input {
      opacity: 0;
      -webkit-appearance: none;
      appearance: none;
      position: absolute; }
      .colorCheckBox input + span {
        display: flex;
        align-items: center;
        width: 210px;
        cursor: pointer; }
        .colorCheckBox input + span:before {
          display: inline-block;
          background-color: #fff;
          border: 1px solid #464646;
          content: '';
          width: 14px;
          height: 14px;
          margin-right: 6px; }
      .colorCheckBox input:checked + span::before {
        background-color: #00499d;
        border-color: #00499d;
        background-image: url(https://www.jmo.pmrj.jp/common/img/icon_checked.png);
        background-size: 11px 10px;
        background-repeat: no-repeat;
        background-position: 1px; }
 */
 /* .colorCheckBox {
    display: inline-flex;
    width: auto;
    margin: 0; } */
    .colorCheckBox input {
      opacity: 0;
      -webkit-appearance: none;
      appearance: none;
      position: relative; 
    }
      .colorCheckBox input + span {
        display: inline-flex;
        align-items: center;
        width: 210px;
        cursor: pointer; }
        .colorCheckBox input + span:before {
          /* display: inline-block; */
          background-color: #fff;
          border: 1px solid #464646;
          content: '';
          width: 14px;
          height: 14px;
          margin-right: 6px; }
      .colorCheckBox input:checked + span::before {
        background-color: #00499d;
        border-color: #00499d;
        background-image: url(https://www.jmo.pmrj.jp/common/img/icon_checked.png);
        background-size: 11px 10px;
        background-repeat: no-repeat;
        background-position: 1px; }

.agreementBox {
    width: 400px;
    text-align: center;
    cursor: pointer;
    background: #ffdbdc;
    padding: 12px 0;
    margin: 20px auto 0; }
