@charset "UTF-8";
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}

/*-------------------------
テキスト
-------------------------*/
b {
  font-family: "Noto Sans JP", sans-serif;
}

.section_text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 1000px) {
  .section_text {
    font-size: 16px;
  }
}
.section_text_large {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  line-height: 1.8181818182;
}
@media screen and (max-width: 1000px) {
  .section_text_large {
    font-size: 18px;
  }
}

.section_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 14px;
  margin-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .section_title {
    font-size: 22px;
  }
}
.section_title:before {
  content: "";
  display: inline-block;
  background-color: #85d4e5;
  width: 4px;
  height: 24px;
  margin-right: 10px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.section_message {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .section_message {
    font-size: 22px;
  }
}

.text_center {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

/*-------------------------
リスト
-------------------------*/
.section_list {
  margin-left: 0.3em;
}
.section_list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6666666667;
  padding-left: 1em;
  text-indent: -0.66em;
}
@media screen and (max-width: 1000px) {
  .section_list li {
    font-size: 16px;
  }
}
.section_list li:before {
  content: "○";
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding-right: 0.3em;
}
@media screen and (max-width: 1000px) {
  .section_list li:before {
    font-size: 16px;
  }
}
.section_list li b {
  font-family: "Noto Sans JP", sans-serif;
}

/*-------------------------
ボタン
-------------------------*/
.button {
  width: 300px;
  height: 60px;
  border-radius: 30px;
  margin: 50px auto 0;
}
.button a {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
  z-index: 0;
  position: relative;
  overflow-x: hidden;
}
.button a:before {
  content: "";
  display: block;
  background: linear-gradient(90deg, #86d8ea, #d0d7c1, #86d8ea);
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
  animation: button-out 0.3s ease-in-out forwards;
}
@media screen and (min-width: 1001px) {
  .button a:hover:before {
    transform: translateX(50%);
    animation: button-hov 0.3s ease-in-out forwards;
  }
}
.button a:after {
  content: "";
  display: block;
  background: url(../../image/outpatient/arrow.svg) no-repeat center/contain;
  width: 5.66px;
  height: 10.66px;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 1001px) {
  .button a:hover:after {
    transform: translateX(5px);
  }
}

@keyframes button-hov {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes button-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------------
表
-------------------------*/
/*	
パターン1
-------------------------*/
.table_type01 {
  width: 100%;
  background: #85d4e5;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
  border-left: 5px solid #85d4e5;
  border-top: 5px solid #85d4e5;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .table_type01 {
    border-bottom: 5px solid #85d4e5;
  }
}
.table_type01:before {
  content: "";
  display: block;
  background-color: #ccc;
  width: 1px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.table_type01:after {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 35px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .table_type01:before, .table_type01:after {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .table_type01 tr {
    display: block;
    width: 100%;
  }
}
.table_type01 td,
.table_type01 th {
  text-align: center;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
}
.table_type01 th {
  background: #85d4e5;
  width: 50%;
  height: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .table_type01 th {
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }
}
.table_type01 td {
  background: #fff;
  width: 50%;
  height: 80px;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .table_type01 td {
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border-right: 5px solid #85d4e5;
    font-size: 20px;
  }
}
.table_type01 tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}
.table_type01 tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
}
.table_type01 tr > *:last-child {
  border-right: 5px solid #85d4e5;
}
.table_type01 tr:last-child > * {
  border-bottom: 5px solid #85d4e5;
}
@media screen and (max-width: 1000px) {
  .table_type01 tr:last-child > * {
    border-bottom: unset;
  }
}
.table_type01 .radius_top_left {
  border-top-left-radius: 10px;
}
.table_type01 .radius_top_right {
  border-top-right-radius: 10px;
}
.table_type01 .radius_bottom_left {
  border-bottom-left-radius: 10px;
}
.table_type01 .radius_bottom_right {
  border-bottom-right-radius: 10px;
}

/*	
パターン2
-------------------------*/
.table_wrap {
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.table_wrap::-webkit-scrollbar {
  display: none;
}

.table_type02 {
  width: 100%;
  background: #94d3b6;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  border-left: 5px solid #94d3b6;
  overflow-x: scroll;
}
@media screen and (max-width: 1000px) {
  .table_type02 {
    min-width: 800px;
  }
}
.table_type02 td,
.table_type02 th {
  width: 14.28%;
  height: 80px;
  text-align: center;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .table_type02 td,
  .table_type02 th {
    font-size: 18px;
  }
}
.table_type02 td span,
.table_type02 th span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .table_type02 td span,
  .table_type02 th span {
    font-size: 12px;
  }
}
.table_type02 td[data-content=blank] {
  font-family: "M PLUS Rounded 1c";
}
.table_type02 tr > * {
  border: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table_type02 tr:first-child > * {
  border-bottom: none;
  border-right-color: #fff;
}
.table_type02 tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}
.table_type02 tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
}
.table_type02 tr.rowspan_border > *:first-child {
  border-radius: 0 0 0 10px;
  border-bottom-width: 5px;
  border-bottom-color: #94d3b6;
}
.table_type02 tr:last-child > *:last-child {
  border-radius: 0 0 10px 0;
}
.table_type02 tr > *:last-child {
  border-right-width: 5px;
  border-right-color: #94d3b6;
}
.table_type02 tr:last-child > * {
  border-bottom-width: 5px;
  border-bottom-color: #94d3b6;
}
.table_type02 .radius_top_left {
  border-top-left-radius: 10px;
}
.table_type02 .radius_top_right {
  border-top-right-radius: 10px;
}
.table_type02 .radius_bottom_left {
  border-bottom-left-radius: 10px;
}
.table_type02 .radius_bottom_right {
  border-bottom-right-radius: 10px;
}
.table_type02 .cell_lightgreen {
  background: #d4ede2;
}
.table_type02 .cell_gray {
  background: #efefef;
}
.table_type02 .cell_white {
  background: #fff;
}
.table_type02 tr:first-child {
  background: #94d3b6;
}

/*	
パターン3
-------------------------*/
.phi_table table th.border_t {
  border-top-color: #fff;
}

/*-------------------------
余白
-------------------------*/
.mt25 {
  margin-top: 25px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt85 {
  margin-top: 85px;
}

.mb1em {
  margin-bottom: 1em;
}

.mb0 {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .sp-mt30 {
    margin-top: 30px !important;
  }
}
/*-------------------------
2026/08/22 追記
-------------------------*/
.specified_table th {
  font-weight: normal;
}

.specified_table td {
  padding-left: 2em;
}

/*# sourceMappingURL=specified_medical.css.map */
