@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  background-color: #F0F0F0;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
  text-decoration: none;
  color: #000;
}

a:hover,
a:focus {
  text-decoration-style: dashed;
  color: #333;
  transition: .2s ease;
}

a:active {
  text-decoration: none;
}

ol,
ul,
li {
  list-style: none;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  zoom: 1;
}

.clearfix {
  display: block;
}

.container {
  width: 100%;
  height: 100vh;
  min-width: 1280px;
  /* min-height: 768px; */
  min-height:1024px;
  position: relative;
}

.container__centerPos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 101px);
}

/*-------------------------
BUTTON - COLOR
-------------------------*/
.btn {
  display: inline-block;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover {
  opacity: .8;
  color: #fff;
}

.btn-primary {
  background-color: #5190C2;
}

.btn-secondary {
  background-color: #C44D4D;
}

.btn-noraml {}

.btn-small {
  min-width: 92px;
  font-size: 15px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 20px;
}

.btn-medium {
  min-width: 175px;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

.btn-large {
  min-width: 274px;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 30px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

.f-blue {
  color: #5190C2;
}

.f-yellow {
  /* 尾形さんからいただいたスタイルでは #B79F19 だったが
    高齢の場合、白内障になると黄色っぽい色は白と識別できないとのことで
    #8b4513 に修正した。*/

  /* color:#B79F19; */
  color: #8b4513;
}

.f-red {
  color: #C44D4D;
}

.f-approved {
  color: #008000;
}

/*-------------------------
HEADER
-------------------------*/

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

header.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

header h1 {
  padding: 20px 0 20px 60px;
}

header h1 a {
  display: inline-block;
  background-color: #fff;
  font-size: 20px;
  color: #469CCE;
  line-height: 1;
  padding: 8px 40px;
  border-radius: 40px;
  letter-spacing: -.06em;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

header .header__left {
  display: flex;
  align-items: center;
}

header .header__left nav {
  margin: 0 0 0 20px;
}

header .header__left nav ul {
  display: flex;
  align-items: center;
}

header .header__left nav ul li {
  margin: 0 20px 0 0;
  font-size: 15px;
}

header .header__left nav ul li:last-child {
  margin: 0;
}

header .header__left nav ul li.tag {}

header .header__left nav ul li.tag span {
  display: inline-block;
  background-color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
}

header .header__left nav ul li i {
  margin: 0 .5em 0 0;
}

header .header__left nav ul li i img {
  vertical-align: middle;
}

header .header__right {
  display: flex;
  align-items: center;
  padding: 0 60px 0 0;
}

.header__account {
  font-size: 15px;
}

.header__account i {
  margin: 0 .5em 0 0;
}

.header__account i img {
  vertical-align: middle;
}

.header__logout {
  margin: 0 0 0 20px;
}

.header__logout .btn {
  box-shadow: none;
}

/*-------------------------
FOOTER
-------------------------*/

footer {
  text-align: right;
  padding: 40px 60px;
}

footer a {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding: 0 3em;
  border-right: solid #000 1px;
}

footer a:hover {
  text-decoration: underline;
}

footer .copyright {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-size: 13px;
  padding: 0 0 0 3em;
}

/*-------------------------
LOGIN BOX
-------------------------*/

.container__centerBox {
  min-width: 470px;
  width: 40%;
  margin: 0 60px;
}

.centerBox__error {
  background-color: #FFCCCC;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 0 0 20px;
}

.centerBox__error p {
  color: #C44D4D;
}

.centerBox__wrap {
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.centerBox__title {
  padding: 15px 20px;
  background-color: #E2F2FF;
}

.centerBox__title h2 {
  font-size: 18px;
  font-weight: bold;
}

.centerBox__body {
  padding: 20px;
}

.centerBox__body p {
  margin: 0 0 20px;
}

.centerBox__form {}

.centerBox__formInputWrap {
  display: flex;
  align-items: center;
  padding: 10px;
  border: solid #C9C9C9 1px;
  border-radius: 6px;
  margin: 0 0 15px;
}

.centerBox__formInputIcon {
  margin: 0 20px 0 0;
}

.centerBox__formInputIcon img {
  vertical-align: middle;
}

.centerBox__formInputText {
  border: none;
  outline: none;
  padding: 0;
  color: #000;
}

.centerBox__formButton {
  text-align: center;
}

.centerBox__contact {
  margin: 20px 0 0;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.centerBox__contactLink {
  display: flex;
  align-items: center;
}

.centerBox__contactTitle {
  width: 50%;
  padding: 0 0 0 30px;
}

.centerBox__contactTitle p {
  font-size: 15px;
  line-height: 2;
  border-bottom: solid #EFE953 1px;
  padding: 10px 0 15px;
}

.centerBox__contactImage {
  width: 50%;
  background-color: #EFE953;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.centerBox__contactImage img {
  width: 53px;
}

/*-------------------------
CONTENT
-------------------------*/

.container__main {
  padding: 100px 60px 0;
  min-height: calc(100vh - 110px);
}

.container__main-for-medication-concomitant-notes {
  padding: 370px 60px 0;
  min-height: calc(100vh - 110px);
}

.container__main.header-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #F0F0F0;
  z-index: 2;
  min-height: 0;
}

.container__main.content-main {
  padding: 235px 60px 0;
}

.container__mainTitle {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
}

.container__mainTitle h2 {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  padding: 0 0 0 20px;
  border-left: solid #5190C2 5px;
}

.container__mainTitle .btn {
  margin: 0 0 0 25px;
}

.container__content {}

.container__column {
  display: flex;
  justify-content: space-between;
}

.column__main {
  width: 65%;
  margin: 0 20px 0 0;
}

.column__side {
  width: 470px;
}

.main__newsList {}

.main__newsList dl {
  margin: 0 0 20px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.main__newsList dl dt {
  background-color: #E2F2FF;
  font-size: 15px;
  padding: 20px;
  position: relative;
}

.main__newsList dl dt:after {
  content: "";
  position: absolute;
  background: url(../img/next.svg) no-repeat center;
  width: 24px;
  height: 24px;
  transition: .2s ease;
  top: 50%;
  right: 20px;
  margin: -12px 0 0;
}

.main__newsList dl.open dt:after {
  transform: rotate(180deg);
}

.main__newsList dl dd {
  display: none;
  padding: 20px;
}

.main__newsList dl dd p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.main__newsList dl dd p:last-child {
  margin: 0;
}

.side__banner {
  margin: 0 0 20px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.side__bannerLink {
  display: flex;
  align-items: center;
}

.side__bannerTitle {
  width: 60%;
  padding: 0 0 0 25px;
}

.side__bannerTitle p {
  font-size: 15px;
  line-height: 2;
  padding: 10px 0 15px;
}

.side__bannerImage {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side__bannerImage img {}

.side__documentTitle p {
  border-bottom: solid #00D1B5 1px;
}

.side__documentImage {
  background-color: #00D1B5;
  padding: 5px 0;
}

.side__documentImage img {
  width: 120px;
}

.side__contactTitle p {
  border-bottom: solid #EFE953 1px;
}

.side__contactImage {
  background-color: #EFE953;
  padding: 40px 0;
}

.side__contactImage img {
  width: 53px;
}

.main__tableList {
  max-height: calc(100vh - 151px);
  /* 修正_220307 */
}

.main__tableList table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.main__tableList table tr {}

.main__tableList table th {
  background-color: #E2F2FF;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid #F0F0F0 5px;
  position: sticky;
  /* 修正_220307 */
  top: 0;
  /* 修正_220307 */
}

.main__tableList table td {
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid #F0F0F0 5px;
  transition: .2s ease;
}

.main__tableList table tr:hover td {
  background-color: #e0e0e0;
}

.main__tableList table th.center,
.main__tableList table td.center {
  text-align: center;
}

.main__tableList table td.tableList__link {
  padding: 0;
}

.main__tableList table td.tableList__link a {
  display: block;
  padding: 20px;
  color: #5190C2;
}

.main__tableList table td.tableList__link a:hover {
  opacity: .8;
}

.column__contactSide {
  width: 36%;
  padding: 0 10% 0 0;
}

.column__contactMain {
  width: 64%;
  padding: 0 10%;
  border-left: solid #5190C2 1px;
}

.column__contactSide dl {}

.column__contactSide dl dt {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.column__contactSide dl dd {
  margin: 0 0 0 1em;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.column__contactMain h3 {
  font-size: 18px;
  margin: 0 0 25px;
}

.column__contactMain table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 10px;
}

.column__contactMain table tr {}

.column__contactMain table th {
  background-color: #E2F2FF;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  width: 30%;
}

.column__contactMain table td {
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  width: 70%;
}

.column__contactMain table th.center,
.column__contactMain table td.center {
  text-align: center;
}

.column__contactMain table td input,
.column__contactMain table td textarea {
  border: solid #C9C9C9 1px;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
}

.contactMain__btn {
  padding: 10px 0 0;
}

.content__case {
  margin: 0 0 25px;
}

.content_caseInputData {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
}

.caseInputData__content {
  display: flex;
  align-items: center;
}

.caseInputData__contentBox {
  position: relative;
  background-color: #fff;
  border: solid #C9C9C9 1px;
  border-radius: 10px;
  padding: 3px 20px;
  min-width: 280px;
  margin: 0 10px 0 0;
}

.caseInputData__contentBox:focus {
  outline: solid #5190C2 2px;
}

.caseInputData__contentBox_title {}

.caseInputData__contentBox_title small {
  margin: 0 0 0 1em;
}

.caseInputData__contentBox_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.caseInputData__contentBox_body input {
  font-size: 18px;
  border: none;
  outline: none;
  padding: 2px 0 5px 0;
}

.caseInputData__contentBox_icon {
  border-left: solid #C9C9C9 1px;
  padding: 3px 0 3px 20px;
  margin: -18px 0 0;
}

.caseInputData__contentBox_icon img {
  vertical-align: middle;
}

.caseInputData__contentBox_error {
  position: absolute;
  top: 2px;
  right: 3px;
}

.content__caseDataList {}

.caseDataList__title {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}

.caseDataList__title h3 {
  font-size: 18px;
  font-weight: bold;
}

.caseDataList__title p.error {
  margin: 0 0 0 2em;
  color: #C44D4D;
  font-weight: bold;
}

.caseDataList__body {
  display: flex;
  flex-wrap: wrap;
}

.caseDataList__item {
  display: flex;
  flex-direction: column;
  width: 49.5%;
  margin: 0 1% 10px 0;
}

.caseDataList__item:nth-child(even) {
  margin: 0 0 10px;
}

.caseDataList__item table {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: collapse;
}

.caseDataList__item table th {
  text-align: left;
  vertical-align: middle;
  padding: 10px 25px;
  background-color: #E2F2FF;
  width: 40%;
  position: relative;
}

.caseDataList__item.caseDataList__item_error table th {
  background-color: #FFCCCC;
  color: #C44D4D;
}

.caseDataList__item.caseDataList__item_notice table th {
  background-color: #FCE198;
  color: #A8910C;
}

.caseDataList__item.caseDataList__item_text {
  padding: 0 25px;
  color: #469CCE;
  font-weight: bold;
}

.caseDataList__item.caseDataList__item_textbox {
  color: #469CCE;
  font-weight: bold;
}

.caseDataList__item table th small {
  margin: 0 0 0 1em;
  font-weight: normal;
}

.caseDataList__item_req {
  position: absolute;
  top: 5px;
  right: 5px;
}

.caseDataList__item table td {
  padding: 10px 25px;
  text-align: left;
  vertical-align: middle;
}

.caseDataList__item table td.inputText {}

.inputText__wrap {
  display: inline-block;
  width: 100%;
}

.inputText__label {}

.inputText__label input {
  padding: 10px;
  font-size: 16px;
  background-color: #fff;
  border: solid #C9C9C9 1px;
  border-radius: 6px;
  width: 100%;
}

.inputText__label input.inputText__readOnly {
  background-color: #EFEFEF;
}

/* 220303 */
.inputDate {
  position: relative;
}

.inputDate .caseInputData__contentBox_icon {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 10px;
}

.caseDataList__item table td.inputCheckbox {
  padding: 10px 25px;
}

.inputCheckbox__wrap {
  display: inline-block;
  line-height: 1.5;
  margin: 0 1em 5px 0;
  position: relative;
}

.inputCheckbox__wrap:last-child {
  margin: 0;
}

.inputCheckbox__wrap label {
  position: relative;
  padding: 0 0 0 5px;
}

.inputCheckbox__label_disabled {
  opacity: .5;
}

.inputCheckbox__wrap input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

.inputCheckbox__wrap input::before {
  content: '';
  display: block;
  border-radius: 2px;
  border: solid #C9C9C9 1px;
  width: 12px;
  height: 12px;
  position: relative;
  top: 3px;
  left: 0;
}

.inputCheckbox__wrap input::after {
  content: '';
  display: block;
  border-radius: 1px;
  width: 9px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  left: 2.5px;
  top: 5.5px;
  transition: .2s ease;
}

.inputCheckbox__wrap input:checked::after {
  background-color: #5190C2;
}

.inputRadio__wrap {
  display: inline-block;
  line-height: 1.5;
  margin: 0 1em 5px 0;
  position: relative;
}

.inputRadio__wrap:last-child {
  margin: 0;
}

.inputRadio__wrap label {
  position: relative;
  padding: 0 0 0 5px;
}

.inputRadio__label_disabled {
  opacity: .5;
}

.inputRadio__wrap input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  appearance: none;
}

.inputRadio__wrap input::before {
  content: '';
  display: block;
  border-radius: 50%;
  border: solid #C9C9C9 1px;
  width: 12px;
  height: 12px;
  position: relative;
  top: 2px;
  left: 0;
  z-index: 1;
}

.inputRadio__wrap input::after {
  content: '';
  display: block;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  left: 2.5px;
  top: 6px;
  transition: .2s ease;
  z-index: 1;
}

.inputRadio__wrap input:checked::after {
  background-color: #5190C2;
}

.inputEtc {
  vertical-align: top;
}

.inputEtc__text {
  display: inline-block;
}

.inputEtc__text input {
  padding: 3px 6px;
  font-size: 13px;
  background-color: #fff;
  border: solid #C9C9C9 1px;
  border-radius: 6px;
  width: 100%;
}

.inputEtc__text input.inputEtc__readOnly {
  background-color: #EFEFEF;
}

.caseInputData__btn {}

.caseInputData__btn a.btn-large {
  min-width: 120px;
}

.content_caseFooter {
  text-align: right;
  padding: 25px 0 0;
}

.content_caseFooter a.btn-large {
  min-width: 120px;
}

#dialog__editConfirm {
  display: none;
}

.ui-dialog {
  overflow: hidden;
  min-width: 600px !important;
  border-radius: 30px !important;
  padding: 20px !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.ui-dialog-titlebar {
  display: none;
}

.dialog__box {}

.dialog__box h3 {
  font-size: 18px;
  margin: 0 0 20px;
}

.dialog__body {}

.dialog__body ul {}

.dialog__body ul li {
  margin: 0 0 5px;
}

.dialog__textarea {
  padding: 5px 0 0;
}

.dialog__textarea textarea {
  padding: 10px;
  border: solid #C9C9C9 1px;
  border-radius: 10px;
  width: 100%;
}

.dialog__btn {
  padding: 10px 0 0;
  text-align: center;
}

.dialog__btn .btn-medium {
  color: #fff;
  padding: 15px 15px;
  min-width: 120px;
}

.dialog__body ul li label {
  position: relative;
  padding: 0 0 0 20px;
}

.dialog__body ul li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  appearance: none;
}

.dialog__body ul li input::before {
  content: '';
  display: block;
  border-radius: 50%;
  border: solid #C9C9C9 1px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.dialog__body ul li input::after {
  content: '';
  display: block;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  transition: .2s ease;
}

.dialog__body ul li input:checked::after {
  background-color: #5190C2;
}


/*-------------------------
MOBILE MENU
-------------------------*/

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #E2F2FF;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav ul li.border-bottom {
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px #000 solid;
}

#g-nav li.tag {
  background: #fff;
  border-radius: 999px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 20px;
}

#g-nav li.tag a {
  padding: 0 10px;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 20px;
  font-size: 1.1rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#g-nav li a.btn {
  display: inline-block;
  border-radius: 999px;
  color: #fff;
  padding: 5px 30px;
  margin-top: 10px;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: none;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 60%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

/* 調整 */
.case.detail .inputRadio__wrap input::before {
  left: -10px;
}

.case.detail .inputCheckbox__wrap input::after {
  left: -7.5px;
}

.case.detail .inputCheckbox__wrap input::before {
  left: -10px;
}

.case.detail .inputCheckbox__wrap label {
  padding: 0 0 0 10px;
}

.case.detail .inputRadio__wrap label {
  position: relative;
  padding: 0 0 0 10px;
}


/*-------------------------
RESPONSIVE
-------------------------*/

@media (max-width: 1279px) {
  .container {
    min-width: auto;
    min-height: auto;
  }

  .container__main {
    padding: 100px 15px 0;
    min-height: auto;
  }

  .container__main-for-medication-concomitant-notes {
    padding: 10px 60px 0;
    min-height: calc(100vh - 110px);
  }

  .container__main.header-fix {
    position: static;
  }

  .container__main.content-main {
    padding: 0px 15px 0;
  }

  .container__column {
    flex-wrap: wrap;
  }

  .column__main {
    width: 100%;
    margin: 0 0 0 0;
  }

  .container__mainTitle {
    margin: 0 0 40px;
  }

  header h1 {
    padding: 20px 0 20px 15px;
  }

  header.header__nav {
    background: #efefef;
  }

  header .header__left nav {
    display: none;
  }

  header .header__right {
    display: none;
  }

  footer {
    text-align: center;
    padding: 30px 0px;
    margin-top: 50px;
    background: #E2F2FF;
  }

  footer a {
    display: block;
    border-right: 0;
    font-size: 1rem;
    margin-bottom: 1.3rem;
  }

  footer .copyright {
    padding: 1rem 0 0 0;
  }

  .openbtn {
    display: block;
  }

  .container__centerBox {
    min-width: 0;
    width: 100%;
    margin: 0 15px;
  }

  .container__centerPos {
    height: 100%;
    align-items: unset;
    padding-top: 120px;
    height: auto;
  }

  .centerBox__contactTitle {
    width: 60%;
  }

  .centerBox__contactImage {
    width: 40%;
  }

  .content_caseFooter {
    text-align: center;
    background: #E2F2FF;
    padding: 10px 0 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .case footer {
    padding: 30px 0px 90px;
  }

  .main__tableList {
    margin: 0 0 20px;
    border-radius: 10px;
  }

  .main__tableList table tr:last-of-type td {
    border-bottom: 0;
  }

  .case .main__tableList table th {
    min-width: 200px;
  }

  .caseInputData__content,
  .content_caseInputData {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .caseInputData__contentBox {
    width: 100%;
    min-width: 0;
    margin: 0 0 10px;
  }

  .caseInputData__btn {
    display: none;
  }

  .caseDataList__title {
    flex-wrap: wrap;
  }

  .caseDataList__title p.error {
    margin: 10px 0 0 0;
  }

  .caseDataList__item table th {
    width: 100%;
  }

  .caseDataList__item table th {
    display: block;
    width: 100% !important;
  }

  .caseDataList__item table td {
    display: block;
    width: 100% !important;
  }

  .caseDataList__item {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .content_caseFooter {
    text-align: center
  }

  .column__contactSide,
  .column__contactMain {
    width: 100%;
    padding: 0;
  }

  .column__contactSide {
    margin-bottom: 30px;
  }

  .column__contactMain {
    border-left: 0;
    padding-top: 30px;
    border-top: solid #5190C2 1px;
  }

  .contactMain__btn {
    text-align: center;
  }

  .contact table th {
    display: block;
    width: 100% !important;
  }

  .contact table td {
    display: block;
    width: 100% !important;
  }

  .ui-widget.ui-widget-content {
    width: calc(100% - 30px) !important;
    left: 15px !important;
    min-width: 0 !important;
  }

  .main__tableList {
    max-height: calc(100vh - 126px);
    /* 修正_220307 */
  }
}
