body {
  font-family: "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
}
a {
  color: #3b3b3b;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
button {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.duration_200 {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.duration_300 {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.center {
  text-align: center;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.block {
  display: block;
}
.inlne-block {
  display: inline-block;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.under-line {
  text-decoration: underline;
}
.under-line:hover {
  text-decoration: underline;
}
.min-w-20 {
  min-width: 20px;
}
.min-w-30 {
  min-width: 30px;
}
.min-w-40 {
  min-width: 40px;
}
.min-w-50 {
  min-width: 50px;
}
.min-w-60 {
  min-width: 60px;
}
.min-w-70 {
  min-width: 70px;
}
.min-w-80 {
  min-width: 80px;
}
.min-w-90 {
  min-width: 90px;
}
.min-w-100 {
  min-width: 100px;
}
.min-w-110 {
  min-width: 110px;
}
.min-w-120 {
  min-width: 120px;
}
.min-w-130 {
  min-width: 130px;
}
.min-w-140 {
  min-width: 140px;
}
.min-w-150 {
  min-width: 150px;
}
.min-w-160 {
  min-width: 160px;
}
.min-w-170 {
  min-width: 170px;
}
.min-w-180 {
  min-width: 180px;
}
.min-w-190 {
  min-width: 190px;
}
.min-w-200 {
  min-width: 200px;
}
.min-w-300 {
  min-width: 300px;
}
.min-w-400 {
  min-width: 400px;
}
.min-w-500 {
  min-width: 500px;
}
.min-w-600 {
  min-width: 600px;
}
.min-w-700 {
  min-width: 700px;
}
.text-green {
  color: #208d6b;
}
.text-orange {
  color: #ff6705;
}
.text-red {
  color: #ff4a4a;
}
.w-full {
  width: 100%;
}
.no-magin {
  margin: 0;
}
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.asterisk {
  font-size: 12px;
  font-weight: bold;
  color: #ff4a4a;
}

/* ----------------- */
/* Web画面側 共通パーツ */
/* ----------------- */

/* Web画面共通レイアウト */
.layout_container {
  max-width: 830px;
  margin: 30px auto;
  min-height: 100vh;
}

/* 汎用 見出しタイトル */
.common_heading_1 {
  display: flex;
  align-items: center;
  height: 63px;
  font-size: 24px;
  color: #208d6b;
  font-weight: bold;
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid #208d6b;
}
.common_heading_2 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  background-color: #208d6b;
  font-weight: bold;
  margin: 0;
  padding: 11px 17px;
}

/* 汎用 見出しタイトル 整列 */
.heading_title_wrapper {
}
.heading_title_wrapper p {
  margin: 0;
}
.heading_title_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading_title_info {
  display: flex;
  align-items: center;
}
.heading_target_cancer {
  background-color: #208d6b;
  color: #fff;
  padding: 3px 14px 1px;
  display: flex;
  align-items: center;
}
.heading_target_cancer p {
  font-size: 24px;
}

/* データリフレッシュボタン */
.green_line_bg_white_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 14px;
  background-color: #fff;
  color: #208d6b;
  border: 1px solid #208d6b;
  border-radius: 9999px;
  overflow: hidden;
}
.green_line_bg_white_button_icon {
  margin-right: 2px;
}
.green_line_bg_white_button:hover .green_line_bg_white_button_icon {
  transform: rotate(-180deg);
}

/* plusアイコン */
.plus_icon {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #208d6b;
  border-radius: 9999px;
}
.plus_icon:before,
.plus_icon:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-color: #fff;
}
.plus_icon:before {
  width: 2px;
  height: 10px;
  border-radius: 1px;
}
.plus_icon:after {
  width: 10px;
  height: 2px;
  border-radius: 1px;
}

/* 追加ボタン (管理者を追加 等) */
.add_button {
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  padding: 5px 7px;
  border-radius: 4px;
}
.add_button span {
  color: #208d6b;
}
.add_button:hover {
  background-color: rgb(243 244 246);
}
.add_button .plus_icon {
  margin-right: 5px;
}

/* 前に戻るボタン */
.history_back {
  display: inline-flex;
}
.history_back_title {
  font-size: 12px;
}
.history_back_link {
  position: relative;
  padding: 8px 10px 8px 25px;
  display: flex;
  align-items: center;
  margin-left: -6px;
  border-radius: 4px;
}
.history_back_link:hover {
  background-color: rgb(243 244 246);
}
.history_back_link::before {
  content: "";
  position: absolute;
  left: 9px;
  width: 14px;
  height: 14px;
  border-right: 3px solid #acacac;
  border-top: 3px solid #acacac;
  display: inline-block;
  transform: rotate(225deg);
  pointer-events: none;
}
.history_back_link p {
  margin: 0;
}

/* ボタンエリア (横並び) */
.button_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_area p {
  margin: 0;
}

/* ボタンエリア (縦並び) */
.button_area_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.button_area_col p {
  margin: 0;
}

/* ミニサイズボタン(透明) */
.mini_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  padding: 1px 3px;
  border-radius: 4px;
}
.mini_button:hover {
  background-color: rgb(243 244 246);
}

/* ミニサイズ角丸ボタン(緑) */
.green_button_mini {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 9px;
  border-radius: 9999px;
  color: #fff;
  background-color: #208d6b;
  border: none;
  min-width: 70px;
}
.green_button_mini:hover {
  opacity: 0.8;
}

/* ミニサイズ角ボタン(緑) */
.green_button_kaku_mini {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px 16px;
  border-radius: 4px;
  color: #fff;
  background-color: #208d6b;
  border: none;
  min-width: 90px;
}
.green_button_kaku_mini:hover {
  opacity: 0.8;
}

/* ノーマルサイズ角丸ボタン(緑) */
.green_button_normal {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  border-radius: 9999px;
  color: #fff;
  background-color: #208d6b;
  border: none;
  min-width: 155px;
}
.green_button_normal:hover {
  opacity: 0.8;
}

/* ラージサイズ角ボタン(オレンジ) */
.orange_button_large {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
  background-color: #ff6705;
  border: none;
  min-width: 300px;
}
.orange_button_large:hover {
  opacity: 0.8;
}

/* 幅100%ボタン(オレンジ) */
.orange_button_long {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 4px;
  color: #fff;
  background-color: #ff6705;
  border: none;
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
  margin: 20px 10px;
}
.orange_button_long:hover {
  opacity: 0.8;
}

/* 汎用テーブルスタイル (全体) */
.common_table_wrapper {
  /* overflow-x: auto; */
}
.common_table_wrapper table p {
  margin: 0;
}

.common_table_wrapper .mini_label {
  min-width: 35px;
  text-align: right;
}

/* 汎用テーブルスタイル_1 (一覧表向け) */
.common_table_1 {
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  font-size: 13px;
}
.common_table_1 thead th {
  background-color: #f9f9f8;
  font-weight: normal;
}
.common_table_1 thead th,
.common_table_1 tbody td {
  padding: 2px 8px;
  border: 1px solid #cecece;
  height: 32px;
}
.common_table_1 .table_sort {
  position: relative;
  cursor: pointer;
  background-clip: padding-box;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.common_table_1 .table_sort:hover {
  opacity: 0.7;
}
.common_table_1 .table_sort::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3.5px 0 3.5px;
  border-color: #9f9f9f transparent transparent transparent;
  margin: auto;
  right: 6px;
  top: 0;
  bottom: 0;
}
.common_table_1 .table_sort.desc::before {
  border-style: solid;
  border-width: 6px 3.5px 0 3.5px;
  border-color: #007bff transparent transparent transparent;
}
.common_table_1 .table_sort.asc::before {
  border-style: solid;
  border-width: 0 3.5px 6px 3.5px;
  border-color: transparent transparent #007bff transparent;
}
.common_table_1 input[type="text"],
.common_table_1 input[type="number"],
.common_table_1 input[type="password"],
.common_table_1 input[type="date"],
.common_table_1 input[type="datetime-local"],
.common_table_1 input[type="tel"],
.common_table_1 input[type="email"],
.common_table_1 textarea {
  background-color: #fdeded;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 2px 8px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16) inset;
}

/* 汎用テーブルスタイル_2 (Form向け) */
.common_table_2 {
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}
.common_table_2 tbody th {
  font-weight: normal;
  background-color: #f4f4f4;
}
.common_table_2 tbody th,
.common_table_2 tbody td {
  padding: 2px 12px;
  border: 1px solid #cecece;
  height: 40px;
}
.common_table_2 label {
  margin: 0;
}
.common_table_2 ::placeholder {
  opacity: 0.6;
}
.common_table_2 select {
  background-color: #f4f4f4;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 2px 8px;
}
.common_table_2 input[type="text"],
.common_table_2 input[type="number"],
.common_table_2 input[type="password"],
.common_table_2 input[type="date"],
.common_table_2 input[type="datetime-local"],
.common_table_2 input[type="tel"],
.common_table_2 input[type="email"],
.common_table_2 textarea {
  background-color: #fdeded;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 2px 8px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16) inset;
}

/* 汎用テーブルスタイル_3 (緑背景フォーム) */
.common_table_3 {
  font-size: 14px;
}
.common_table_3 tbody th {
}
.common_table_3 tbody th,
.common_table_3 tbody td {
  padding: 2px 14px;
  height: 64px;
  background-color: rgba(109, 176, 155, 0.2);
}
.common_table_3 tbody .table_border {
  border-bottom: 3px solid #fff;
}
.common_table_3 input[type="radio"] + label {
  margin: 0;
  padding-left: 30px;
  cursor: pointer;
  position: relative;
}
.common_table_3 input[type="radio"] + label::before,
.common_table_3 input[type="radio"] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.common_table_3 input[type="radio"] + label::before {
  width: 21px;
  height: 21px;
  left: 4px;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
}
.common_table_3 input[type="radio"] + label::after {
  width: 13px;
  height: 13px;
  left: 8px;
  border: 1px solid #707070;
  border-radius: 50%;
}
.common_table_3 input[type="radio"]:checked + label::after {
  background-color: #208d6b;
}
.common_table_3 input[type="radio"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.common_table_3 input[type="text"],
.common_table_3 input[type="number"],
.common_table_3 input[type="password"],
.common_table_3 input[type="date"],
.common_table_3 input[type="datetime-local"],
.common_table_3 input[type="tel"],
.common_table_3 input[type="email"],
.common_table_3 textarea {
  background-color: #fff;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 7px 10px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16) inset;
}
.common_table_3 .select_area select {
  height: 40px;
  padding: 2px 20px 2px 9px;
  border-top-left-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0px;
  border: 1px solid #cecece;
  letter-spacing: 0.4px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
}
.common_table_3 .select_area .select_tag_wrapper {
  display: inline-flex;
}
.common_table_3 .select_area .pulldown_icon {
  position: relative;
}
.common_table_3 .select_area .pulldown_icon::before {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  height: 6px;
  border-style: solid;
  border-width: 6px 4.5px 0 4.5px;
  border-radius: 4px;
  border-color: #777777 transparent transparent transparent;
  margin: auto;
  right: 5px;
  top: 0;
  bottom: 0;
}
.common_table_3 .select_area .select_tag_wrapper + .select_tag_wrapper {
  margin-left: 15px;
}
.common_table_3 .select_area span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #fff;
  background-color: #69877d;
}
.common_table_3 ::placeholder {
  opacity: 0.6;
}

/* modal用 */
.modal p {
  margin: 0;
}
.modal .title {
  font-size: 18px;
  font-weight: bold;
}
.modal .warning {
  color: rgb(245, 101, 101);
  font-size: 14px;
}

/* プログレスバー */
.progressbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  font-size: 16px;
  overflow: hidden;
}
.progressbar .progressbar_inner {
  padding: 0.63em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.progressbar_step1,
.progressbar_step2,
.progressbar_step3,
.progressbar_step4 {
  position: relative;
  color: #fff;
  margin-left: 2px;
}
.progressbar_step1::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 50%;
  width: calc(100% + 30px);
  top: 0;
  left: -30px;
  background: #98cbbb;
  transform: skew(40deg);
}
.progressbar_step2::before,
.progressbar_step3::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 50%;
  width: 100%;
  top: 0;
  left: 0;
  background: #98cbbb;
  transform: skew(40deg);
}
.progressbar_step4::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 50%;
  width: calc(100% - 12px);
  top: 0;
  left: 0;
  background: #98cbbb;
  transform: skew(40deg);
}
.progressbar_step1::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 50%;
  width: calc(100% + 30px);
  top: calc(50% - 1px);
  left: -30px;
  background: #98cbbb;
  transform: skew(-40deg);
}
.progressbar_step2::after,
.progressbar_step3::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 50%;
  width: 100%;
  top: calc(50% - 1px);
  left: 0;
  background: #98cbbb;
  transform: skew(-40deg);
}
.progressbar_step4::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 50%;
  width: calc(100% - 12px);
  top: calc(50% - 1px);
  left: 0;
  background: #98cbbb;
  transform: skew(-40deg);
}
.progressbar_step1_current::after,
.progressbar_step1_current::before,
.progressbar_step2_current::after,
.progressbar_step2_current::before,
.progressbar_step3_current::after,
.progressbar_step3_current::before,
.progressbar_step4_current::after,
.progressbar_step4_current::before {
  background-color: #208d6b;
}
.progressbar_step1_complete::after,
.progressbar_step1_complete::before,
.progressbar_step2_complete::after,
.progressbar_step2_complete::before,
.progressbar_step3_complete::after,
.progressbar_step3_complete::before,
.progressbar_step4_complete::after,
.progressbar_step4_complete::before {
  background-color: #a3a3a3;
}
.progressbar_step1_complete .progressbar_inner {
  background-image: url("../images/icon_check_green.svg");
  background-repeat: no-repeat;
  background-position: 7px 50%;
  color: #d2d2d2;
}
.progressbar_step2_complete .progressbar_inner,
.progressbar_step3_complete .progressbar_inner,
.progressbar_step4_complete .progressbar_inner {
  background-image: url("../images/icon_check_green.svg");
  background-repeat: no-repeat;
  background-position: 14px 50%;
  color: #d2d2d2;
}
.progressbar_step1 {
}
.progressbar_step1_current {
}
.progressbar_step1_complete {
}
.progressbar_step2 {
}
.progressbar_step2_current {
}
.progressbar_step2_complete {
}
.progressbar_step3 {
}
.progressbar_step3_current {
}
.progressbar_step3_complete {
}
.progressbar_step4 {
}
.progressbar_step4_current {
}
.progressbar_step4_complete {
}

/* エラー文 */
.error {
  background-color: rgba(255, 74, 74, 0.1);
  color: #ff4a4a;
  padding: 21px 14px 27px;
  display: none;
}
.error.active {
  display: block;
}
.error .error_text {
  font-size: 18px;
  font-weight: bold;
}
.error p {
  margin: 0;
}

/* 確認ブロック(赤背景/赤文字) */
.confirm_block {
  background-color: rgba(255, 74, 74, 0.1);
  padding: 19px 14px 37px;
}
.confirm_block_text {
  color: #ff4a4a;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* 確認ブロック2(赤背景/赤文字) */
.confirm_block_2 {
  background-color: rgba(255, 74, 74, 0.1);
  padding: 19px 16px 19px;
}

/* カレンダー */
.calendar_error {
  background-color: rgba(255, 74, 74, 0.1);
  color: #ff4a4a;
  padding: 18px 14px 16px;
  margin-bottom: 20px;
  display: none;
}
.calendar_error.active {
  display: block;
}
.calendar_error .calendar_error_text {
  font-size: 18px;
  margin: 0 0 4px;
  display: flex;
  align-items: flex-start;
}
.calendar_error .note {
  font-size: 14px;
  margin: 0;
  text-indent: 30px;
}
.calendar_block .calendar_block_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555555;
  margin-bottom: 7px;
}
.calendar_block .calendar_block_nav .calendar_prev a,
.calendar_block .calendar_block_nav .calendar_next a {
  display: block;
  width: 100%;
  height: 100%;
}
.calendar_block .calendar_block_nav .calendar_prev {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.calendar_block .calendar_block_nav .calendar_prev a {
  padding: 8px 10px 8px 25px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.calendar_block .calendar_block_nav .calendar_prev::before {
  content: "";
  position: absolute;
  left: 9px;
  width: 14px;
  height: 14px;
  border-right: 3px solid #acacac;
  border-top: 3px solid #acacac;
  display: inline-block;
  transform: rotate(225deg);
  pointer-events: none;
}
.calendar_block .calendar_block_nav .calendar_current {
  font-size: 20px;
  font-weight: bold;
}
.calendar_block .calendar_block_nav .calendar_next {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.calendar_block .calendar_block_nav .calendar_next::before {
  content: "";
  position: absolute;
  right: 9px;
  width: 14px;
  height: 14px;
  border-right: 3px solid #acacac;
  border-top: 3px solid #acacac;
  display: inline-block;
  transform: rotate(45deg);
  pointer-events: none;
}

/* 患者WEB　予約カレンダー翌月ボタン */

.calendar_block .calendar_block_nav .calendar_prev button,
.calendar_block .calendar_block_nav .calendar_next button {
  display: block;
  width: 100%;
  height: 100%;
}
/* .calendar_block .calendar_block_nav .calendar_prev {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
} */
.calendar_block .calendar_block_nav .calendar_prev button {
  padding: 8px 10px 8px 25px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}



.calendar_block .calendar_block_nav .calendar_next button {
  border: none;
  outline: none;
  background: transparent;
}
.calendar_block .calendar_block_nav .calendar_next button {
  padding: 8px 25px 8px 10px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.calendar_block .calendar_block_nav .calendar_next a {
  padding: 8px 25px 8px 10px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.calendar_block .calendar_block_nav .calendar_prev button:hover,
.calendar_block .calendar_block_nav .calendar_next button:hover {
  opacity: 0.7;
}
/* ここまで */

.calendar_block .calendar_block_nav .calendar_prev a:hover,
.calendar_block .calendar_block_nav .calendar_next a:hover {
  opacity: 0.7;
}
.calendar_block .calendar_block_day_of_week,
.calendar_block .calendar_block_date {
  display: grid;
  place-content: stretch;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 1px;
  row-gap: 1px;
}
.calendar_block .calendar_block_day_of_week {
  margin-bottom: 16px;
}
.calendar_block .calendar_block_date button {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  color: rgba(85, 85, 85, 0.5);
}
.calendar_block .calendar_block_date .day button {
  color: rgba(85, 85, 85, 1);
}
.calendar_block .calendar_block_date time {
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
}
.calendar_block .calendar_block_date .icon_circle,
.calendar_block .calendar_block_date .icon_triangle,
.calendar_block .calendar_block_date .icon_times {
  position: relative;
}
.calendar_block .calendar_block_date .icon_circle::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/icon_circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 32px;
}
.calendar_block .calendar_block_date .icon_triangle::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/icon_triangle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 21px;
  top: 32px;
}
.calendar_block .calendar_block_date .icon_times::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/icon_times.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 21px;
  top: 32px;
}
.calendar_block .calendar_block_date .reserve_left {
  font-size: 14px;
  font-weight: bold;
  color: #208d6b;
  margin: 0;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
}
.calendar_block .calendar_block_date .day:hover {
  opacity: 0.6;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.calendar_block .calendar_block_day_of_week > div,
.calendar_block .calendar_block_date .day {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar_block .calendar_block_date .day {
  height: 80px;
  background-color: rgba(244, 244, 244, 0.5);
}
.calendar_block .calendar_block_day_of_week > div {
  height: 33px;
  background-color: rgba(244, 244, 244, 1);
}
.calendar_block .calendar_block_day_of_week > div:first-child {
  background-color: rgba(253, 237, 237, 1);
}
.calendar_block .calendar_block_date .day:nth-child(7n + 1) {
  background-color: rgba(253, 237, 237, 0.5);
}
.calendar_block .calendar_block_date .day:nth-child(7n + 1) button {
  color: rgba(255, 74, 74, 0.5);
}
.calendar_block .calendar_block_day_of_week > div:last-child {
  background-color: rgba(234, 245, 255, 1);
}
.calendar_block .calendar_block_date .day:nth-child(7n + 7) {
  background-color: rgba(234, 245, 255, 0.5);
}
.calendar_block .calendar_block_date .day:nth-child(7n + 7) button {
  color: rgba(46, 79, 188, 0.5);
}
.calendar_block .calendar_block_date .day.active {
  background-color: rgba(244, 244, 244, 1);
}
.calendar_block .calendar_block_date .day.active:nth-child(7n + 1) {
  background-color: rgba(253, 237, 237, 1);
}
.calendar_block .calendar_block_date .day.active:nth-child(7n + 1) button {
  color: rgba(255, 74, 74, 1);
}
.calendar_block .calendar_block_date .day.active:nth-child(7n + 7) {
  background-color: rgba(234, 245, 255, 1);
}
.calendar_block .calendar_block_date .day.active:nth-child(7n + 7) button {
  color: rgba(46, 79, 188, 1);
}
.calendar_block .calendar_block_date .day.inactive {
  background-color: rgba(244, 244, 244, 0.5);
  pointer-events: none;
  background-image: none;
}
.calendar_block .calendar_block_date .day.inactive button {
  color: rgba(85, 85, 85, 0.5);
}
.calendar_block .calendar_block_date .day.inactive:nth-child(7n + 1) {
  background-color: rgba(253, 237, 237, 0.5);
  background-image: none;
}
.calendar_block .calendar_block_date .day.inactive:nth-child(7n + 1) button {
  color: rgba(255, 74, 74, 0.5);
}
.calendar_block .calendar_block_date .day.inactive:nth-child(7n + 7) {
  background-color: rgba(234, 245, 255, 0.5);
  background-image: none;
}
.calendar_block .calendar_block_date .day.inactive:nth-child(7n + 7) button {
  color: rgba(46, 79, 188, 0.5);
}
.calendar_block .calendar_block_date .day.inactive p,
.calendar_block .calendar_block_date .day.inactive:nth-child(7n + 1) p,
.calendar_block .calendar_block_date .day.inactive:nth-child(7n + 7) p {
  display: none;
}

/* カレンダー時間帯指定モーダル */
.calendar_modal .modal-dialog {
  max-width: 363px;
  border-radius: 20px;
}
.calendar_modal .modal-content {
  border-radius: 12px;
}
.calendar_modal .time_schedule_list {
  padding-left: 15px;
  padding-right: 15px;
}
.calendar_modal .time_schedule_list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 0;
  row-gap: 9px;
  column-gap: 9px;
}
.calendar_modal .time_schedule_list li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar_modal .time_schedule_list input[type="radio"] {
  display: none;
}
.calendar_modal .time_schedule_list input[type="radio"] + label {
  background-color: #cecece;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}
.calendar_modal .time_schedule_list_button label {
  margin: 0;
  display: block;
  pointer-events: none;
}
.calendar_modal .time_schedule_list_button.active input[type="radio"] + label {
  background-color: #78ab9b;
  color: rgba(255, 255, 255, 1);
  pointer-events: auto;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.calendar_modal .time_schedule_list_button.active input[type="radio"] + label:hover {
  background-color: #107d5b;
}
.calendar_modal .time_schedule_list_button.active input[type="radio"]:checked + label {
  background-color: #107d5b;
}

/* ----------------------- */
/*  P01:受診券情報照合画面css */
/*  .progress_1            */
/* ----------------------  */
.progress_1 .progress_1_table {
  margin-bottom: 41px;
  width: 100%;
}
.progress_1 .progress_1_table th {
  width: 172px;
}
.progress_1 .progress_1_table td {
  width: calc(100% - 172px);
}
.progress_1 .progress_1_table input[type="number"] {
  width: 240px;
}
.progress_1 .progress_1_table .progress_1 .button_area_col .text-orange {
  font-size: 18px;
}
.progress_1 .progress_1_table .birth_year {
  width: 150px;
}
.progress_1 .progress_1_table .birth_month,
.progress_1 .progress_1_table .birth_day {
  width: 50px;
}
.progress_1 .error {
  margin-bottom: 47px;
}
.progress_1 .table_note td {
  height: auto;
  padding-top: 0px;
  padding-bottom: 11px;
}
.progress_1 .common_table_3 label[for="male"] {
  margin-right: 40px;
}

/* --------------------- */
/*  P02:検診種別確認画面css */
/*  .progress_1_confirm  */
/* --------------------- */
.progress_1_confirm .confirm_block {
  margin-bottom: 65px;
}
.progress_1_confirm .confirm_block h2 {
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  margin: 0;
}
.progress_1_confirm .confirm_block_image {
  max-width: 430px;
  height: 193px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #208d6b;
  margin: 0 auto;
  padding: 15px;
  background-repeat: no-repeat;
}
.progress_1_confirm .stomach_image {
  background-image: url("../images/stomach_image.svg");
  background-position: center;
}
.progress_1_confirm .lung_image {
  background-image: url("../images/lung_image.svg");
  background-position: center;
}
.progress_1_confirm .patient_id_number {
  margin-bottom: 0;
  margin-top: 10px;
}
.progress_1_confirm .patient_id_number span {
  margin-left: 8px;
}

/* --------------------- */
/*  P03:予約日選択画面css  */
/*  .progress_2          */
/* --------------------- */
.progress_2 .patient_id_number {
  margin-right: 10px;
}

/* --------------------- */
/*  P05:患者情報入力画面css  */
/*  .progress_3          */
/* --------------------- */
.progress_3 .patient_id_number {
  margin-right: 10px;
}
.progress_3 .confirm_block_2 {
  margin-bottom: 30px;
}
.progress_3 .confirm_block_2 ._1 {
  margin-right: 30px;
}
.progress_3 .confirm_block_2 ._2 {
  margin-right: 30px;
}
.progress_3 .error {
  margin-bottom: 20px;
}
.progress_3 .text-red {
  font-size: 14px;
  font-weight: bold;
}
.progress_3 .common_table_2 {
  margin-bottom: 25px;
}
.progress_3 .common_table_2 tbody th {
  width: 37%;
}
.progress_3 .common_table_2 tbody td {
  width: 63%;
}
.progress_3 .common_table_2 ._1 {
}
.progress_3 .common_table_2 ._2 {
}
.progress_3 .common_table_2 ._3 {
}
.progress_3 .common_table_2 ._4 {
}
.progress_3 .common_table_2 ._5 td input {
  width: 80px;
}
.progress_3 .common_table_2 ._5 .green_button_kaku_mini {
  display: inline-flex;
  width: 140px;
  margin-left: 25px;
}
.progress_3 .common_table_2 ._6 td select {
  width: 70%;
}
.progress_3 .common_table_2 ._7 {
}
.progress_3 .common_table_2 ._8 {
}
.progress_3 .common_table_2 ._9 td input,
.progress_3 .common_table_2 ._10 td input {
  width: 70px;
}
.progress_3 .common_table_2 ._10 {
}
.progress_3 .common_table_2 ._11 {
}
.progress_3 .common_table_2 ._12 {
}
.progress_3 .agree {
  margin-bottom: 40px;
}
.progress_3 .agree input[type="checkbox"] {
  display: none;
}
.progress_3 .agree input[type="checkbox"] + label {
  position: relative;
  font-size: 14px;
  padding-left: 37px;
  cursor: pointer;
}
.progress_3 .agree input[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
}
.progress_3 .agree input[type="checkbox"]:checked + label:before {
  background-image: url("../images/icon_check_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

/* --------------------- */
/*  P06:予約確認画面css    */
/*  .progress_3_confirm  */
/* --------------------- */
.progress_3_confirm .patient_id_number {
  margin-right: 10px;
}
.progress_3_confirm .confirm_block_2 {
  margin-bottom: 25px;
}
.progress_3_confirm .progressbar {
  margin-bottom: 30px;
}
.progress_3_confirm .common_table_2 {
  margin-bottom: 30px;
}
.progress_3_confirm .common_table_2 tbody th {
  width: 290px;
}

/* --------------------- */
/*  P07:予約完了画面css    */
/*  .progress_4          */
/* --------------------- */
.progress_4 .patient_id_number {
  margin-right: 10px;
}
.progress_4 .confirm_block_2 {
  margin-bottom: 10px;
}
.progress_4 .confirm_block_2 ._1 {
  margin-right: 30px;
}
.progress_4 .confirm_block_2 ._2 {
  margin-right: 30px;
}
.progress_4 .text_1 {
  font-size: 18px;
}
.progress_4 .text_2 {
  font-size: 14px;
}
.progress_4 .link_banner_block {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 539px;
  max-width: 100%;
  height: 111px;
}
.progress_4 .link_banner_block a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.progress_4 .link_banner_block:last-of-type {
  margin-bottom: 50px;
}
.progress_4 .link_banner_block:hover {
  opacity: 0.6;
}
.progress_4 .link_stomach {
  background-image: url("../images/link_stomach.png");
}
.progress_4 .link_lung {
  background-image: url("../images/link_lung.png");
}
.progress_4 .section_1 {
  margin-bottom: 80px;
}
.progress_4 .section_1 .common_heading_2 {
  margin-bottom: 35px;
}
.progress_4 .section_1 .section_1_text {
  padding: 0 15px;
}
.progress_4 .section_1 .section_1_text a {
  color: #1273e5;
  margin-right: 5px;
}
.progress_4 .section_1 .section_1_text a:hover {
  text-decoration: underline;
}

/* ----------- */
/*  レスポンシブ  */
/* ----------- */

@media screen and (max-width: 991px) {
  .progressbar {
    font-size: 13px;
  }
  .progressbar_step1_complete .progressbar_inner,
  .progressbar_step2_complete .progressbar_inner,
  .progressbar_step3_complete .progressbar_inner,
  .progressbar_step4_complete .progressbar_inner {
    background-size: 23px;
  }
  .progress_3 .common_table_2 ._1 td input,
  .progress_3 .common_table_2 ._2 td input {
    width: 140px;
  }
}

@media screen and (max-width: 767px) {
  .error {
    padding: 16px 12px 16px;
  }
  .error .error_text {
    font-size: 14px;
  }
  .progress_1 .error {
    margin-bottom: 25px;
  }
  .common_heading_1 {
    font-size: 20px;
    height: 48px;
    margin-bottom: 2px;
  }
  .progressbar {
    font-size: 11px;
  }
  .progressbar .progressbar_step1 .progressbar_inner {
    padding-top: 0;
    padding-bottom: 0;
    height: 45px;
    background-position: 4px 50%;
  }
  .progressbar .progressbar_step2 .progressbar_inner {
    padding-top: 0;
    padding-bottom: 0;
    height: 45px;
    background-position: 11px 50%;
  }
  .progressbar .progressbar_step3 .progressbar_inner {
    padding-top: 0;
    padding-bottom: 0;
    height: 45px;
    background-position: 5px 50%;
  }
  .progressbar .progressbar_step4 .progressbar_inner {
    padding-top: 0;
    padding-bottom: 0;
    height: 45px;
    background-position: 5px 50%;
  }
  .progressbar_step1 .progressbar_inner {
    padding-left: 27px;
    padding-right: 13px;
  }
  .progressbar_step2 .progressbar_inner {
    padding-left: 22px;
    padding-right: 10px;
  }
  .progressbar_step3 .progressbar_inner {
    padding-left: 26px;
    padding-right: 10px;
  }
  .progressbar_step1::before {
    transform: skew(25deg);
  }
  .progressbar_step2::before,
  .progressbar_step3::before {
    transform: skew(25deg);
  }
  .progressbar_step4::before {
    transform: skew(25deg);
  }
  .progressbar_step1::after {
    transform: skew(-25deg);
  }
  .progressbar_step2::after,
  .progressbar_step3::after {
    transform: skew(-25deg);
  }
  .progressbar_step4::after {
    transform: skew(-25deg);
  }
  .common_table_3 {
  }
  .common_table_3 tbody tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .common_table_3 tbody tr th,
  .common_table_3 tbody tr td {
    display: flex;
    align-items: center;
    height: auto;
  }
  .common_table_3 tbody tr th {
    padding: 18px 14px 8px;
  }
  .common_table_3 tbody tr td {
    padding: 8px 14px 26px;
  }
  .common_table_wrapper .common_table_3 tbody tr th,
  .common_table_wrapper .common_table_3 tbody tr td {
    width: 100%;
  }
  .common_table_3 tbody .no th {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .common_table_3 tbody .no {
    border-bottom: 3px solid #fff;
  }
  .common_table_wrapper table p {
    font-size: 12px;
  }
  .common_table_3 tbody .table_border {
    border-bottom: 3px solid #fff;
  }
  .progress_1 .progress_1_table input[type="number"] {
    width: 100%;
  }

  .progress_1_confirm .stomach_image,
  .progress_1_confirm .lung_image {
    background-size: 160px;
  }
  .confirm_block_text {
    font-size: 16px;
  }
  .confirm_block {
    padding: 35px 14px 36px;
  }
  .progress_1_confirm .patient_id_number {
    margin-top: 13px;
  }
  .history_back:last-of-type {
    margin-top: 30px;
  }
  .heading_title_wrapper .heading_title_inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .progress_1 .patient_id_number,
  .progress_2 .patient_id_number,
  .progress_3 .patient_id_number,
  .progress_4 .patient_id_number {
    font-size: 14px;
    margin-right: 0;
  }
  .heading_title_info {
    width: 100%;
    justify-content: space-between;
  }
  .heading_target_cancer {
    padding: 9px 25px 8px;
  }
  .heading_target_cancer p {
    font-size: 17px;
  }
  .progressbar_step1_complete .progressbar_inner,
  .progressbar_step2_complete .progressbar_inner,
  .progressbar_step3_complete .progressbar_inner,
  .progressbar_step4_complete .progressbar_inner {
    background-size: 18px;
  }
  .calendar_error {
    padding: 18px 12px 16px;
  }
  .calendar_error .calendar_error_text {
    font-size: 14px;
  }
  .calendar_error .note {
    font-size: 12px;
    text-indent: 0;
  }
  .calendar_error .calendar_error_text img {
    width: 18px;
  }
  .calendar_block .calendar_block_date .reserve_left {
    font-size: 12px;
  }
  .calendar_block .calendar_block_date .icon_circle::before {
    width: 21px;
    height: 21px;
    top: 34px;
  }
  .calendar_block .calendar_block_date .icon_triangle::before {
    width: 21px;
    height: 19px;
    top: 34px;
  }
  .calendar_block .calendar_block_date .icon_times::before {
    width: 18px;
    height: 18px;
    top: 34px;
  }
  .calendar_block .calendar_block_date .reserve_left {
    bottom: 5px;
  }
  .calendar_block .calendar_block_nav .calendar_current {
    font-size: 16px;
  }
  .calendar_block .calendar_block_nav .calendar_prev,
  .calendar_block .calendar_block_nav .calendar_next {
    font-size: 14px;
  }
  .calendar_block .calendar_block_date time {
    top: 3px;
  }
  .calendar_block .calendar_block_day_of_week {
    margin-bottom: 2px;
  }
  .calendar_block .calendar_block_day_of_week > div {
    font-size: 14px;
  }

  .progress_3 .confirm_block_2 ._1,
  .progress_3_confirm .confirm_block_2 ._1,
  .progress_4 .confirm_block_2 ._1 {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
  .progress_3 .confirm_block_2 ._2,
  .progress_3_confirm .confirm_block_2 ._2,
  .progress_4 .confirm_block_2 ._2 {
    margin-right: 16px;
  }
  .progress_3 .common_table_2 tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .progress_3 .common_table_2 tbody th,
  .progress_3 .common_table_2 tbody td {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .progress_3 .common_table_2 tbody td {
    flex-wrap: wrap;
  }
  .common_table_2 tbody th {
    padding: 2px 8px;
  }
  .common_table_2 tbody td {
    padding: 12px 12px;
    height: auto;
  }
  .progress_3 .common_table_2 ._1 td input,
  .progress_3 .common_table_2 ._2 td input {
    width: calc(100% - 49px);
    flex-wrap: wrap;
  }
  .common_table_2 input[type="text"],
  .common_table_2 input[type="number"],
  .common_table_2 input[type="password"],
  .common_table_2 input[type="date"],
  .common_table_2 input[type="datetime-local"],
  .common_table_2 input[type="tel"],
  .common_table_2 input[type="email"],
  .common_table_2 textarea {
    padding: 5px 8px;
  }
  .progress_3 .common_table_2 tbody ._1 td,
  .progress_3 .common_table_2 tbody ._2 td {
    padding: 12px 12px 0;
  }
  .progress_3 .common_table_2 ._1 td input,
  .progress_3 .common_table_2 ._2 td input {
    margin-bottom: 14px;
  }
  .common_table_wrapper .mini_label {
    margin-right: 6px;
    margin-bottom: 14px;
  }
  .progress_3 .common_table_2 ._5 td span,
  .progress_3 .common_table_2 ._9 td span,
  .progress_3 .common_table_2 ._10 td span {
    margin-right: 5px;
    margin-left: 5px;
  }

  .progress_3_confirm .common_table_2 tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .progress_3_confirm .common_table_2 tbody th,
  .progress_3_confirm .common_table_2 tbody td {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .progress_3_confirm .common_table_2 tbody td {
    flex-wrap: wrap;
  }
  .progress_4 .text_1 {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .progress_1 .patient_id_number,
  .progress_2 .patient_id_number,
  .progress_3 .patient_id_number {
    font-size: 12px;
  }
  .heading_target_cancer {
    padding: 7px 14px 6px;
  }
  .modal-dialog {
    margin: 1.75rem auto;
  }
  .calendar_block .calendar_block_date .reserve_left {
    font-size: 10px;
  }
  .progress_3 .common_table_2 ._5 td input {
    width: 65px;
  }
  .progress_3 .common_table_2 ._5 .green_button_kaku_mini {
    width: 100px;
    margin-left: 10px;
  }
  .progress_4 .link_banner_block {
    width: 100%;
    height: auto;
    aspect-ratio: 539/111;
  }
}

@media screen and (max-width: 470px) {
  .progressbar .progressbar_step2 .progressbar_inner {
    padding-right: 0;
  }
  .progressbar_step1_complete .progressbar_inner,
  .progressbar_step2_complete .progressbar_inner,
  .progressbar_step3_complete .progressbar_inner,
  .progressbar_step4_complete .progressbar_inner {
    background-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .heading_target_cancer p {
    font-size: 15px;
  }
  .progressbar {
    font-size: 10px;
  }
  .progress_1 .progress_1_table .birth_year {
    width: 70px;
  }
  .progress_1 .progress_1_table .birth_month,
  .progress_1 .progress_1_table .birth_day {
    width: 46px;
  }
  .common_table_3 .select_area .select_tag_wrapper + .select_tag_wrapper {
    margin-left: 10px;
  }
  .common_table_3 .select_area span {
    font-size: 12px;
    padding: 0 8px;
  }
}

/* 旧Android機種一部 初代iPhoneSE等 */
@media screen and (max-width: 359px) {
  .progress_3 .common_table_2 ._5 .green_button_kaku_mini {
    margin-top: 12px;
  }
}

/* --------------------- */
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
