.contact-title {
  position: relative;
  min-height: 35vh;
  /* padding-left: var(--v-padding-x-normal); */
  background: #eee;
  display: flex;
  align-items: center;

  box-sizing: border-box;
}

.contact-title.loaded {
  background: url("/src/default/ctu-banner01.png") center right / cover no-repeat;
}

.contact-title .description {
  position: absolute;
  font-size: var(--v-xlarge-font-size);
  font-weight: 700;
  color: #333;

  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.contact-title .description p {
  line-height: 1.2;
  max-width: var(--v-max-width-normal);
  margin: auto;
}

.contact-content {
  /* padding: 0.9em var(--v-padding-x-large); */
  padding: 0.9em 10px;
  /* width: 100%; */
  box-sizing: border-box;
  max-width: var(--v-max-width-normal);
  margin: auto;
}

.contact-content .content-description {
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
  font-size: 14px;
}

.contact-content .content-contact-information {
  display: flex;
  gap: 50px;
}

.contact-content .content-contact-information .content-tel {
  font-size: var(--v-large-font-size);
  font-weight: 700;
}

.contact-content .content-contact-information .content-map {
  width: 240px;
  border: solid 1px #333;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  font-size: var(--v-large-font-size);
}

.file-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #093388;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

#cMain .wrapTable table {
  /* background: #ccc; */
  inline-size: 99%;
  margin: 20px 0;
  font-size: var(--v-normal-font-size);
}

#cMain .wrapTable table th,
#cMain .wrapTable table td {
  background: #fff;
  padding: 5px;
  text-align: start;
  vertical-align: middle;
}

#cMain .wrapTable table th {
  inline-size: 20%;
}

#cMain .wrapTable table td textarea.sizeL {
  border-radius: 3px;
  resize: vertical;
  border: 1px solid #ccc;
  inline-size: 100%;
}

#cMain .wrapTable table td input {
  border-radius: 3px;
  border: 1px solid #ccc;
  inline-size: 100%;
  block-size: 35px;
}

#cMain .wrapTable table td.file input {
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: var(--v-normal-font-size);
}

.small {
  font-weight: normal;
}

.colorR {
  color: #f00;
  float: inline-end;
}

#cMain .wrapTable .privacypolicy {
  inline-size: 96%;
  block-size: 150px;
  overflow-y: scroll;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px;
}

#cMain .wrapTable .privacypolicy p {
  margin: 0;
}

#cMain .wrapTable .btnArea {
  inline-size: 250px;
  position: relative;
  margin: 20px auto;
}

#cMain .wrapTable .btnArea .btnText {
  inline-size: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  inset-block-start: 8px;
  inset-inline-end: -50%;
  inset-inline-start: -50%;
  margin: 0 auto;
  z-index: 1000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: var(--v-normal-font-size);
}

#cMain .wrapTable .btnArea .btn {
  border-radius: 3px;
  display: block;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

#cMain .wrapTable .btnArea .blue {
  inline-size: 250px;
  color: #fff;
  border: none;
  padding: 30px 10px 10px;
  background: #404040;
  font-size: var(--v-normal-font-size);
}

html[lang="jp"] .btnText,
html[lang="jp"] .btn,
html[lang="jp"] .blue {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

html[lang="cn"] .btnText,
html[lang="cn"] .btn,
html[lang="cn"] .blue {
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

#cMain .wrapTable .btnArea .btn.blue:hover {
  background: #a3a3a3;
  border: none;
  transition: background .3s;
}

#cMain .wrapTable .btnArea .small {
  inline-size: 200px !important;
  padding: 10px 15px !important;
  margin: 0 auto 20px;
}

#cMain .wrapTable .btnArea .white {
  margin: 0 auto 20px;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
}

.listDisc {
  padding: 0;
}

.listDisc li {
  text-indent: -1em;
  padding-inline-start: 1em;
  list-style: none;
  margin: 0;
}

.listDisc li::before {
  inline-size: 4px;
  block-size: 4px;
  content: "";
  background: #666;
  border-radius: 50%;
  display: inline-block;
  margin: 3px 5px;
}

.overlay {
  display: none;
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-block-start: 8px solid #ffffff;
  border-radius: 50%;
  inline-size: 50px;
  block-size: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  /* html {
    font-size: 15px;
  } */
}

@media (max-width: 992px) {
  /* html {
    font-size: 12px;
  } */

  #cMain .wrapTable table th,
  #cMain .wrapTable table td {
    inline-size: 100%;
    display: block;
    margin: 0;
    padding: 0 0 5px;
  }

  #cMain .wrapTable table th br {
    display: none;
  }
}

@media (max-width: 768px) {
  /* html {
    font-size: 9px;
  } */

  .contact-title {
    min-height: 25vh;
  }

  .contact-content {
    width: 100%;
    padding: 0 20px;
  }

  #cMain .wrapTable table th,
  #cMain .wrapTable table td {
    inline-size: 100%;
    display: block;
    margin: 0;
    padding: 0 0 5px;
  }

  #cMain .wrapTable table th br {
    display: none;
  }
}

@media (max-width: 576px) {
  /* html {
    font-size: 7px;
  } */

  #cMain .wrapTable table th,
  #cMain .wrapTable table td {
    inline-size: 100%;
    display: block;
    margin: 0;
    padding: 0 0 5px;
    /* font-size: 1.5rem; */
  }

  #cMain .wrapTable table th br {
    display: none;
  }

  /* #cMain .wrapTable table td input {
    font-size: 1.5rem;
  } */

  .small {
    /* font-size: 1.5rem; */
    font-weight: normal;
  }

  /* #cMain .wrapTable .privacypolicy {
    font-size: 1.2rem;
  } */
}