﻿:root {
    --main-bg-color: #e5eaf0;
    --main-tx-color: #004f99;
    --main-ln-color: #004f99;
    --input-disabled-bg-color: #fafafa;
    --input-disabled-font-color: #a0a0a0;
}
body {
    background: var(--main-bg-color);
}
body,
* {
    font-family: 'Helvetica', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', 'arial', 'helvetica', sans-serif;
    font-feature-settings: "palt";
    padding: 0;
    margin: 0;
    text-decoration: none;
    letter-spacing: 0.07em;
    color: var(--main-tx-color);
}
.clear {
    clear: both;
}
li {
    list-style: none;
}
a {
    text-decoration: none !important;
}
form input[type="button"],
form input[type="submit"],
form input[type="checkbox"],
form input[type="text"],
form input[type="password"],
form select,
form input[type="radio"],
form textarea,
form input[type="date"],
form input[type="month"],
form input[type="time"],
form input[type="datetime-local"] {
    -webkit-appearance: none;
}
form input[type="date"],
form input[type="month"],
form input[type="time"],
form input[type="datetime-local"]{
  background: white;
}
/* user agent stylesheet を上書き */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: #a4bbd3 !important;
}

div.content {
    width: 100%;
    max-height: 100vh;
}
div.content div.container {
    height: 100vh;
}

/* ラジオボタン */
.radiobox,　.radiobox_yn {
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
.radiobox {
  width: 100%;
  padding: 4px !important;
}
.radiobox_yn {
  width: 70%;
}
.radiobox input[type="radio"], .radiobox_yn input[type="radio"] {
  display: none;
}
.radiobox label, .radiobox_yn label {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  color: #b5b5b6;
  font-size: 14px;
  margin: auto 0;
  padding: 8px 0;
}
.radiobox label {
  width: 46%;
}
.radiobox_yn label {
  width: 50%;
}
.radiobox input[type="radio"]:checked + label,
.radiobox_yn input[type="radio"]:checked + label {
    background: #357ade;
    color: #fff;
}

/* チェックボックス */
.check input[type="checkbox"] {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    position: relative;
    top: 4px;
    border: solid 1px #c9caca;
    margin-right: 3px;
}
.check input[type="checkbox"]:checked {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("../../images/checked.png");
}

/* ボタン */
a:not(.ui-corner-all), input[type="submit"], input[type="button"] {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    min-height: 34px;
}
input[type="button"] {
    background: #004f99;
    color: #fff;
    font-size: 16px;
    padding: 5px 25px;
    border: none;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    -o-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    margin: 5px;
}
input[type="button"]:hover {
    cursor: pointer;
    background: #587ea7;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
input[type="button"]:disabled {
    background: #E7E7E7;
    color: #C4C3CB;
}
input[type="button"]:disabled:hover {
    cursor: default;
    background: #E7E7E7;
    color: #C4C3CB;
}
input[type="submit"]:disabled {
    background: #E7E7E7 !important;
    color: #C4C3CB !important;
}

/* テキスト、セレクトの共通スタイル */

/* テキストボックス、セレクト、テキストエリア共通 */
input[type="text"], input[type="password"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime-local"], select, textarea {
    border: none;
    padding: 2px 5px;
    border-radius: 4px;
}
/* テキストボックス、セレクト共通 */
input[type="text"], input[type="password"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime-local"], select {
    height: 30px;
    border-radius: 4px;
}
/* テキストボックス共通 */
input[type="text"],input[type="password"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
}

/* 日付（月）選択 */
input[type="month"] {
    width: 110px;
}
/* 日付（日）選択 */
input[type="date"] {
    width: 130px;
}

/* セレクト共通 */
select::-ms-expand {
    display: none;
}
select, input[type="text"].select_list {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    border-radius: 5px;
    border: none;
    background-image: url(../../Images/file.png);
    background-repeat: no-repeat;
    background-size: 13px 13px;
    background-position: right 10px center;
}
input[type="text"].select_list::-webkit-calendar-picker-indicator {
    opacity: 0;
}
select.list_box {
    padding-right: 4px;
    background-image: none;
}

/* テキストエリア共通 */
textarea {
  resize: none;
  border-radius: 4px;
}
/* 必須項目 */
input[type="text"].req, input[type="password"].req, input[type="date"].req, input[type="month"].req, input[type="time"].req, input[type="datetime-local"].req, select.req, textarea.req {
    /* border: 2px solid #f69595 !important; */
    background-color: #ffeaea !important;
}
/* 入力支援あり項目 */
input[type="text"].sup, input[type="password"].sup, input[type="date"].sup, input[type="month"].sup, input[type="time"].sup, input[type="datetime-local"].sup, select.sup, textarea.sup {
    background-color: #edfeff !important;
}
/* フォーカス時 */
input[type="text"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
    outline: 2px solid #ff9b54;
}
/* 非活性状態 */
input[type="text"]:disabled, input[type="password"]:disabled, input[type="date"]:disabled, input[type="month"]:disabled, input[type="time"]:disabled, input[type="datetime-local"]:disabled, select:disabled, textarea:disabled {
    background-color: var(--input-disabled-bg-color);
    color: var(--input-disabled-font-color);
}

/* モーダルダイアログ */
.modal-content {
  position: fixed;
  display: none;
  z-index: 999;
  width: 50%;
  margin: 0;
  padding: 20px 30px 20px 30px;
  border: 2px solid #004f99;
  background: #eef4f7;
  text-align: left;
}
.large-dialog {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1024px) {
    .modal-content {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.modal-content p {
  margin: 0;
  padding: 0;
}
.modal-overlay {
  z-index: 7;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(255,255,255,0.75);
}
.modal-open {
  color: #00f;
  text-decoration: underline;
}
.modal-open hover {
  cursor: pointer;
  color: #f00;
}
.modal-content {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: 90vh;
}
@media screen and (max-width: 1024px) {
  .modal-content {
    width: 90%;
    height: 70vh;
    padding: 15px;
  }
}
.modal-content h2 {
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .modal-content h2 {
    font-size: 20px;
  }
}
.modal-content h2 span {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .modal-content h2 span {
    font-size: 12px;
  }
}
.modal-content .border {
  border: solid 2px #a4bbd3;
  width: auto;
  margin-top: 10px;
  margin-bottom: 30px;
}
.modal-content h3 {
  padding-bottom: 20px;
}
.modal-content .text {
  padding-bottom: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modal-content .text h4 {
  font-size: 13px;
  font-weight: 500;
  color: #587ea7;
  padding-right: 15px;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .modal-content .text h4 {
    width: auto;
    font-size: 12px;
    padding-right: 10px;
  }
}
.modal-content .text p {
  font-size: 14px;
  border-bottom: solid 1px #a4bbd3;
  height: 16px;
}
@media screen and (max-width: 1024px) {
  .modal-content .text p {
    font-size: 12px;
  }
}
.modal-content .text a img {
  position: relative;
  bottom: 8px;
  padding-left: 5px;
}
.modal-content .text a img:hover {
  opacity: 0.7;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.modal-content .text .check input[type="checkbox"] {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: #fff;
  position: relative;
  top: 5px;
  border: solid 1px #c9caca;
  margin-right: 3px;
}
.modal-content .text .check input[type="checkbox"]:checked {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../../images/checked.png");
}
.modal-content .text .button {
  background: #004f99;
  color: #fff;
  font-size: 16px;
  padding: 5px 25px;
  border: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -o-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -ms-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  height: 20px;
  position: relative;
  bottom: 8px;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .modal-content .text .button {
    font-size: 8px;
    padding: 10px 25px;
    height: 15px;
  }
}
.modal-content .text .button:hover {
  background: #587ea7;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.modal-content .upload {
  padding-top: 25px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload {
    display: block;
  }
}
.modal-content .upload::-webkit-scrollbar {
  display: none;
}
.modal-content .upload select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: #fff transparent;
  vertical-align: middle;
  font-size: inherit;
  color: #587ea7;
  border: none;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px 10px;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6em;
  min-width: 130px;
}
.modal-content .upload .choise_file {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload .choise_file {
    width: 100%;
  }
}
.modal-content .upload .display_file {
  width: 48%;
  background: #fff;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload .display_file {
    width: 100%;
    margin-bottom: 5px;
  }
}
.modal-content .upload .display_file img {
  position: relative;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
}
.modal-content .upload .upload_file {
  width: 48%;
  background: #fff;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload .upload_file {
    width: 100%;
  }
}
.modal-content .upload .upload_file img {
  width: 15px;
  padding-right: 5px;
  position: relative;
  top: 3px;
}
.modal-content .upload .upload_file p.sentence {
  padding-bottom: 10px;
  font-size: 13px;
}
.modal-content .upload .upload_file p.count {
  padding-top: 10px;
  font-size: 13px;
}
.modal-content .upload .upload_file input[type="button"] {
  -webkit-appearance: none;
  background: #587ea7;
  padding: 5px 25px;
  border: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  font-size: 15px;
  color: #fff;
  -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -o-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -ms-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
}
.modal-content .upload .upload_file input[type="button"]:hover {
  background: #004f99;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.modal-content .upload2 {
  padding-top: 0px;
  padding-left: 15%;
  padding-right: 15%;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload2 {
    padding-left: 0;
    padding-right: 0;
    margin-left: 10%;
    margin-right: 10%;
  }
}
.modal-content .upload2 .upload_file {
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload2 .upload_file {
    width: 100%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
.modal-content .upload_text {
  margin-top: 10px;
  padding-left: 15%;
  padding-right: 15%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .modal-content .upload_text {
    margin-top: 10px;
    padding-left: 10%;
    padding-right: 10%;
    display: block;
  }
}
.modal-content .upload_text .text p {
    width: 90%;
}
@media screen and (max-width: 1024px) {
    .modal-content .upload_text .text p {
        width: 85%;
    }
}
.modal-content .upload_text .text .imgarea {
    width: 10%;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .modal-content .upload_text .text .imgarea {
        width: 15%;
   }
}
.modal-content .buttons {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 25px;
}
.modal-content .buttons input[type="button"].disable {
  background: #E7E7E7;
  color: #C4C3CB;
}
.modal-content .buttons input[type="button"]:hover {
  background: #587ea7;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.modal-content .buttons input[type="button"].disable:hover {
  background: #E7E7E7;
  color: #C4C3CB;
}
.modal-content .buttons input[type="submit"] {
  background: #004f99;
  color: #fff;
  font-size: 20px;
  padding: 20px 80px;
  border: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -o-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -ms-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
}
@media screen and (max-width: 1024px) {
  .modal-content .buttons input[type="submit"] {
    font-size: 14px;
  }
}
.modal-content .buttons input[type="submit"]:hover {
  background: #587ea7;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.modal-content h3.title_h3_modal03 {
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .modal-content h3.title_h3_modal03 {
    padding-top: 0;
  }
}
.modal-content .radioselect {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .modal-content .radioselect {
    padding-top: 0;
    display: block;
    padding-bottom: 15px;
  }
}
.modal-content .radioselect h4 {
  font-size: 13px;
  font-weight: 500;
  color: #587ea7;
  position: relative;
  top: 6px;
}
@media screen and (max-width: 1024px) {
  .modal-content .radioselect h4 {
    padding-bottom: 10px;
  }
}
.modal-content .radioselect .radiobox {
  width: 35%;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .modal-content .radioselect .radiobox {
    width: 100%;
  }
}
.modal-content .radioselect .radiobox input[type="radio"] {
  display: none;
}
.modal-content .radioselect .radiobox label {
  width: 55%;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  color: #b5b5b6;
  font-size: 14px;
  padding: 5px 0;
}
.modal-content .radioselect .radiobox label:nth-child(1) {
  position: absolute;
  left: 0;
}
.modal-content .radioselect .radiobox label:nth-child(2) {
  position: absolute;
  right: 0;
}
.modal-content .radioselect .radiobox input[type="radio"]:checked + label {
  background: #36aa5b;
  color: #fff;
}
.modal-content .radioselect .radiobox input[type="radio"]:checked:disabled + label {
    background: #E7E7E7;
    color: #C4C3CB;
}
.modal-content .textinput {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .modal-content .textinput {
    display: block;
    padding-bottom: 10px;
  }
}
.modal-content .textinput h4 {
  font-size: 13px;
  font-weight: 500;
  color: #587ea7;
  position: relative;
  top: 6px;
}
@media screen and (max-width: 1024px) {
  .modal-content .textinput h4 {
    padding-bottom: 10px;
  }
}
.modal-content .textinput input[type="text"] {
  width: 80%;
  border: none;
  padding: 10px 10px;
  font-size: 14px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .modal-content .textinput input[type="text"] {
    width: 100%;
  }
}
.modal-content .textinput input[type="password"] {
  width: 80%;
  border: none;
  padding: 10px 10px;
  font-size: 14px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .modal-content .textinput input[type="password"] {
    width: 100%;
  }
}

.modal-content .container .input-box {
    padding: 0 50px 10px 50px;
    border-bottom: 1px solid var(--main-ln-color);
}
.modal-content .controll-box .input-box > div {
    text-align: left;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
}
.modal-content .controll-box .input-box > div > div {
    padding: 10px;
}
.modal-content .controll-box .input-box .label {
    width: 20%;
    padding-left: 10px;
    margin: auto 0;
    text-align: right;
}
.modal-content .controll-box .input-box .form {
    width: 80%;
}

.modal-content > input[type="button"].top-right {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    padding: 0 6px 0 8px;
    min-height: 26px;
}

/* モーダルダイアログ(確認、エラー、情報) */
.modal-msg {
  max-width: 500px;
}

.modal-msg label {
    white-space: pre-line;
}

/* 非表示 */
.hidden {
  display: none;
}

/* aタグのリンクを無効にする */
.btn-disabled {
  pointer-events: none; /* aタグのリンクを無効にする */
  cursor: default;  /* マウスオーバー時のカーソルをdefaultに固定 */
  text-decoration: none;  /* 下線等を消す。 */
}

/* 読み込み時アイコン */
.display-lock-by-submit-block.loading-icon {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9001;
    background-image: url("../../Images/svg-loading.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 120px 120px;
    background-color: rgba(0,0,0,0.4);
}

/* ツールチップ */
.tooltip {
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.description {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #000;
    width: 100px;
}
.description:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 15px solid transparent;
    border-top: 15px solid #000;
    margin-left: -15px;
}

.tooltip:hover .description {
    display: inline-block;
    top: -70px;
    left: -30px;
}

.modal-content.show-text .controll-box textarea {
    width: 98%;
}

/******************* 以降のスタイルは未整理 **************************/


/* 詳細情報表示欄(ヘッダ) */
div.detail_header H3 {
  display: inline;
}
div.detail_header .toggle_detail {
  position: relative;
  background-color: white;
  padding: 0px 5px 0px 5px;
  width: 15px;
  height: 24px;
  float: left;
  margin-right:5px;
}
div.detail_header .toggle_detail::before, div.detail_header .toggle_detail.icon__plus::after {
  position: absolute;
  top: 11px;
  left: 50%;
  content: '';
  display: inline-block;
  width: 13px;
  height: 19px;
  border-top: 2px solid #004f99;
  transform: translateX(-50%);
}
div.detail_header .toggle_detail.icon__plus:after {
  top: 2px;
  left: -4px;
  transform: rotate(90deg);
}
div.detail_header .btn_detail_header {
  float: right;
  color: #fff;
  background: #004f99;
  margin-top: -4px;
  padding: 2px 10px;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
/* 詳細情報表示欄(ボディ) */
div.detail_body {
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 10px;
  margin-bottom: 10px;
}
div.detail_body .div_tbl1 {
  font-size: 14px;
}
div.detail_body .div_tbl1 .div_row1 {
  display: flex;
}
div.detail_body .div_tbl1 .div_row1 .div_row11 {
  display: flex;
  width: 50%;
  margin: 5px 0px 5px 0px;
}
@media screen and (max-width: 1024px) {
  div.detail_body .div_tbl1 .div_row1 {
    display: block;
  }
  div.detail_body .div_tbl1 .div_row1 .div_row11 {
    width: 100%;
  } 
}
div.detail_body .div_tbl1 .div_row1 .div_row11 .div_col_head {
  font-weight: bold;
}
div.detail_body .div_tbl1 .div_row1 .div_row11 .div_col1 {
  width: 35%;
}
div.detail_body .div_tbl1 .div_row1 .div_row11 .div_col2 {
  width: 65%;
}
div.detail_body .btn-detail_body {
  color: #fff;
  width: 45px;
  background: #004f99;
  padding: 10px 20px;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  height: 30px;
  line-height: 30px;
}

/* 表1 */
table.tbl1 {
  font-size: 14px;
}
table.tbl1 .thead {
  text-align: center;
}
table.tbl1 th {
  padding: 5px;
  color: #fff;
  background: #587ea7;
}
table.tbl1 td {
  padding: 5px;
  background-color: white;
}
table.tbl1 a {
  color: #fff;
  width: 45px;
  background: #004f99;
  padding: 0px 10px;
  margin-left: 5px;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  table.tbl1 .thead {
    display: none;
  }
  table.tbl1 tr {
    width: 100%;
  }
  table.tbl1 td {
    display: flex;
    width: auto;
  }
}

/* マイナス金額 */
.minus_amount {
  color: #ff0000 !important;
  -webkit-text-fill-color: #ff0000 !important;
}

input[type='file'] {
    color: var(--main-tx-color);
    cursor: pointer;
    border: 1px solid #004f99;
    background-color: #ffffff;
    border-radius: 5px;
    padding-right: 10px;
    width: 80%;
}

::file-selector-button,
::-webkit-file-upload-button {
    background-color: #004f99;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-right: 1px solid #004f99;
    padding: 10px 10px;
    margin-right: 10px;
}