@charset "UTF-8";
/* コンテンツ端から画面端までの距離（.tv_inner: max-width 1280px - padding 40px×2 = 1200px） */
/* --------------------------------
	共通レイアウト
-------------------------------- */
#wrapper {
  position: relative;
  overflow: hidden;
}

.tv_section {
  padding: 100px 0;
}
@media screen and (max-width: 800px) {
  .tv_section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .tv_section {
    padding: 56px 0;
  }
}

.tv_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .tv_inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .tv_beige .tv_inner {
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .tv_docs .tv_inner {
    padding: 0 24px;
  }
}

/* ベージュ背景パネル（対応ワクチン・料金〜副反応・注意事項） */
.tv_beige {
  background-color: #f6f1e8;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .tv_beige {
    border-radius: 20px;
  }
}
.tv_beige > .tv_section {
  padding-top: 0;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .tv_beige > .tv_section {
    padding-bottom: 64px;
  }
}
.tv_beige > .tv_section:first-child {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .tv_beige > .tv_section:first-child {
    padding-top: 96px;
  }
}
.tv_beige > .tv_section:last-child {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .tv_beige > .tv_section:last-child {
    padding-bottom: 96px;
  }
}

.tv_ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tv_ttl {
    margin-bottom: 28px;
  }
}

/* セクション見出し（mod-section_ttl）: 本ページは JP 40px / EN 16px */
.tv_ttl .ttl {
  font-size: 40px;
  letter-spacing: 3.2px;
}
.tv_ttl .ttl .en {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tv_ttl .ttl {
    font-size: 32px;
    letter-spacing: 2.56px;
  }
  .tv_ttl .ttl .en {
    font-size: 14px;
  }
}
.tv_ttl .ttl::before {
  background-image: url(/img/common/ttl_obj_left_tv.png);
}
@media screen and (max-width: 767px) {
  .tv_ttl .ttl::before {
    background-image: url(/img/common/ttl_obj_left_tv_sp.png);
  }
}
.tv_ttl .ttl::after {
  background-image: url(/img/common/ttl_obj_right_tv.png);
}
@media screen and (max-width: 767px) {
  .tv_ttl .ttl::after {
    background-image: url(/img/common/ttl_obj_right_tv_sp.png);
  }
}

.tv_lead {
  margin-bottom: 40px;
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1.28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tv_lead {
    margin-bottom: 28px;
    font-size: 14px;
    text-align: left;
  }
  .tv_lead br {
    display: none;
  }
}

.tv_txt {
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 767px) {
  .tv_txt {
    font-size: 14px;
  }
}

.tv_note {
  color: #8b8a8a;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  .tv_note {
    font-size: 13px;
  }
}

/* サブ見出し（青下線） */
.tv_subTtl {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tv_subTtl {
    margin-bottom: 24px;
  }
}
.tv_subTtl h2, .tv_subTtl h3 {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid #56ace1;
  color: #56ace1;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2.56px;
}
@media screen and (max-width: 767px) {
  .tv_subTtl h2, .tv_subTtl h3 {
    padding-bottom: 6px;
    border-bottom-width: 2px;
    font-size: 22px;
    letter-spacing: 1.5px;
  }
}

/* テキストリンクボタン（グラデーション） */
.tv_btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 240px;
  padding: 12px 16px 12px 24px;
  border-radius: 6px;
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.28px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.no-touchevents .tv_btn a:hover, .touchevents .tv_btn a.js-hover {
  opacity: 0.85;
}
.tv_btn a:after {
  content: "";
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 17px;
  height: 31px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  background: url(/img/common/icon_window.svg) right center/17px 17px no-repeat;
}
@media screen and (max-width: 767px) {
  .tv_btn a {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tv_btn a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* --------------------------------
	MV
-------------------------------- */
.tv_mv {
  background-color: #fff;
  /* 装飾用背景。position:absolute が #wrapper 基準でページ全面を覆うため、タップ/スワイプを妨げないよう除外 */
}
.tv_mv::before {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .tv_mv::before {
    position: absolute;
    content: "";
    top: -30px;
    left: 50%;
    width: 1753px;
    height: 593px;
    z-index: 9;
    background-image: url(/img/travel-vaccine/mv_bg_lg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .tv_mv::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-image: url(/img/travel-vaccine/mv_bg_sm.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.tv_mv_inner {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 40px 64px;
}
@media screen and (min-width: 1280px) {
  .tv_mv_inner {
    padding-left: 96px;
    padding-right: 96px;
  }
}
@media screen and (max-width: 800px) {
  .tv_mv_inner {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .tv_mv_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    padding: 0 20px 24px;
  }
}

.tv_mv_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.tv_mv_en {
  margin-bottom: 8px;
  color: #56ace1;
  font-size: 20px;
  letter-spacing: 1.6px;
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .tv_mv_en {
    margin-bottom: 4px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.tv_mv_ttl {
  margin-bottom: 24px;
  color: #404040;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 3.84px;
}
@media screen and (max-width: 1024px) {
  .tv_mv_ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 800px) {
  .tv_mv_ttl {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .tv_mv_ttl {
    margin-bottom: 8px;
    font-size: 32px;
    letter-spacing: 2.56px;
  }
}

.tv_mv_lead {
  margin-bottom: 40px;
  color: #8b8a8a;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  .tv_mv_lead {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}

.tv_mv_photo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 660px;
  max-width: 50%;
  aspect-ratio: 660/440;
}
@media screen and (min-width: 1280px) {
  .tv_mv_photo {
    max-width: 53%;
  }
}
@media screen and (max-width: 767px) {
  .tv_mv_photo {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    max-width: none;
  }
}
.tv_mv_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .tv_mv_photo img {
    border-radius: 20px;
  }
}

/* MV のボタンは SP でも 240px 固定・左寄せ（デザイン準拠） */
@media screen and (max-width: 767px) {
  .tv_mv .tv_btn {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
  .tv_mv .tv_btn a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    min-width: 240px;
  }
}

/* --------------------------------
	当院の特徴
-------------------------------- */
@media screen and (max-width: 767px) {
  .tv_section.tv_features {
    padding: 96px 0;
  }
}

.tv_features_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 16px;
  padding-top: 24px;
}
@media screen and (max-width: 1024px) {
  .tv_features_list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (max-width: 800px) {
  .tv_features_list {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .tv_features_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-top: 24px;
  }
}

.tv_features_item {
  position: relative;
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: minmax(0, 1fr);
  padding: 40px;
  border: 8px solid #f6f1e8;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .tv_features_item {
    padding: 28px;
  }
}
@media screen and (max-width: 767px) {
  .tv_features_item {
    grid-row: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 32px 24px 24px;
    border-width: 6px;
  }
}

.tv_features_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .tv_features_body {
    gap: 8px;
  }
}

.tv_features_num {
  position: absolute;
  top: -36px;
  right: 24px;
  color: #56ace1;
  font-size: 40px;
  letter-spacing: 3.2px;
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .tv_features_num {
    top: -40px;
    right: 30px;
  }
}

.tv_features_ttl {
  color: #56ace1;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 800px) {
  .tv_features_ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tv_features_ttl {
    letter-spacing: 1.6px;
  }
}

.tv_features_txt {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 800px) {
  .tv_features_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tv_features_txt {
    font-size: 16px;
  }
}

.tv_features_photo {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
.tv_features_photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tv_features + .tv_inner {
  margin-top: 40px;
}

.tv_features .tv_lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tv_features .tv_lead {
    margin-bottom: 32px;
    font-size: 16px;
    text-align: center;
  }
  .tv_features .tv_lead br {
    display: inline;
  }
}

.tv_features .tv_note {
  margin-top: 40px;
  padding-left: 1.55em;
  font-weight: bold;
  line-height: 1.6;
  text-indent: -1.55em;
}
@media screen and (max-width: 767px) {
  .tv_features .tv_note {
    margin-top: 32px;
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}

@media screen and (max-width: 767px) {
  .tv_features .tv_ttl {
    margin-bottom: 32px;
  }
}

/* --------------------------------
	対応ワクチン・料金（タブ切替）
-------------------------------- */
/* タブ外枠 */
.tv_vaccineTabs {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tv_vaccineTabs {
    margin-top: 24px;
  }
}

.tv_vaccineTabs_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 24px 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tv_vaccineTabs_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 16px 0 20px;
    margin-bottom: 24px;
  }
}

.tv_vaccineTabs_label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 40px;
  border-right: 2px solid #ddd;
  color: #404040;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.6px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .tv_vaccineTabs_label {
    padding-right: 0;
    border-right: none;
    font-size: 18px;
    letter-spacing: 1.44px;
  }
}

.tv_vaccineTabs_buttons {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .tv_vaccineTabs_buttons {
    min-width: 100%;
    margin-right: 0px;
    width: calc(100% + 24px);
    padding-left: 24px;
    margin-left: -24px;
    margin-right: 0;
  }
  .tv_vaccineTabs_buttons.simplebar-initialized .simplebar-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 8px;
  }
  .tv_vaccineTabs_buttons.simplebar-scrollable-x .simplebar-content {
    padding-bottom: 6px !important;
  }
  .tv_vaccineTabs_buttons.simplebar-scrollable-x .simplebar-track.simplebar-horizontal {
    height: 6px;
    background-color: #ddd;
    border-radius: 4px;
  }
  .tv_vaccineTabs_buttons.simplebar-scrollable-x .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #56ace1;
    border-radius: 4px;
    opacity: 1;
  }
}

.tv_vaccineTabs_buttons_inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .tv_vaccineTabs_buttons_inner {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin-bottom: 10px;
  }
}

.tv_vaccineTab {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 8px 24px;
  border: 1px solid #ddd;
  border-radius: 40px;
  background-color: #fff;
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.28px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tv_vaccineTab.is-active {
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
  border-color: transparent;
  color: #fff;
}
.no-touchevents .tv_vaccineTab:not(.is-active):hover, .touchevents .tv_vaccineTab:not(.is-active).js-hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .tv_vaccineTab {
    padding: 8px 16px;
    font-size: 14px;
    letter-spacing: 1.12px;
  }
}

.tv_vaccineTableWrap {
  width: 100%;
}

/* テーブルタイトルのサブラベル（渡航先括弧部分） */
.tv_tableTtl_sub {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 767px) {
  .tv_tableTtl_sub {
    width: 100%;
    padding-left: 20px;
    font-size: 14px;
    letter-spacing: 1.12px;
  }
}

/* ワクチンごとの注記（テーブル直下） */
.tv_vaccineNotes {
  margin-top: 8px;
}

.tv_vaccineNote {
  color: #8b8a8a;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 1.04px;
  padding-left: 1.55em;
  text-indent: -1.55em;
}
.tv_vaccineNote:not(:last-child) {
  margin-bottom: 4px;
}

/* --------------------------------
	対応ワクチン・料金
-------------------------------- */
.tv_vaccine {
  overflow-x: clip;
}

.tv_targetCards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 16px;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .tv_targetCards {
    padding-top: 0;
    margin-bottom: 64px;
  }
}

.tv_targetCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  min-height: 150px;
  padding: 40px;
  border: 3px solid #56ace1;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  .tv_targetCard {
    gap: 24px;
    padding: 28px;
  }
}
@media screen and (max-width: 767px) {
  .tv_targetCard {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
    padding: 21px;
  }
}

.tv_targetCard_head {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 380px;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
  min-width: 0;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-right: 40px;
  border-right: 3px solid #56ace1;
}
@media screen and (max-width: 800px) {
  .tv_targetCard_head {
    -webkit-flex-basis: 280px;
        -ms-flex-preferred-size: 280px;
            flex-basis: 280px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .tv_targetCard_head {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding: 0 0 16px;
    border-right: none;
    border-bottom: 3px solid #56ace1;
  }
}

.tv_targetCard_icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48px;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: url(/img/travel-vaccine/icon_consult.svg) center/contain no-repeat;
}

.tv_targetCard_ttl {
  color: #56ace1;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 1.92px;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .tv_targetCard_ttl {
    font-size: 20px;
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .tv_targetCard_ttl {
    letter-spacing: 1.6px;
  }
}

.tv_targetCard_txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.28px;
}

/* テーブル */
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_lead {
    margin-bottom: 32px;
    font-size: 16px;
    text-align: center;
  }
  .tv_vaccine .tv_lead br {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .tv_vaccine .tv_ttl {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 767px) {
  .tv_vaccine .tv_subTtl {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .tv_vaccine .tv_subTtl h3 {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.tv_vaccine .tv_subTtl + .tv_note {
  margin-bottom: 40px;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_subTtl + .tv_note {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .tv_vaccine .tv_subTtl + .tv_note br {
    display: none;
  }
}

/* 書類発行・料金セクションの上下余白（Figma: PC 120px / SP 96px） */
.tv_section.tv_docs {
  padding: 120px 0;
}
@media screen and (max-width: 800px) {
  .tv_section.tv_docs {
    padding: 96px 0;
  }
}
@media screen and (max-width: 767px) {
  .tv_section.tv_docs {
    padding: 96px 0;
  }
}

/* 書類発行・料金は SP でも Figma 仕様（リード・本文 16px）を維持 */
@media screen and (max-width: 767px) {
  .tv_docs .tv_ttl {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .tv_docs .tv_lead {
    margin-bottom: 64px;
    font-size: 16px;
    text-align: center;
  }
  .tv_docs .tv_lead br {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .tv_docs .tv_subTtl h3 {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.tv_docs .tv_subTtl + .tv_txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tv_docs .tv_subTtl + .tv_txt {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

/* 書類発行の注釈は Figma 仕様で 14px（他セクションの注釈 12px とは異なる） */
@media screen and (max-width: 767px) {
  .tv_docs .tv_notes li {
    font-size: 14px;
    letter-spacing: 1.12px;
  }
}

.tv_tableBlock {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tv_tableBlock:has(+ .tv_notes) {
    margin-bottom: 0;
  }
}

.tv_tableTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #404040;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
  .tv_tableTtl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 18px;
    letter-spacing: 1.44px;
  }
}
.tv_tableTtl:before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
}

.tv_table {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tv_table table {
  width: 100%;
  min-width: 880px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 10px rgba(86, 172, 225, 0.15);
          box-shadow: 0 4px 10px rgba(86, 172, 225, 0.15);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1.28px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .tv_table table {
    font-size: 14px;
    letter-spacing: 0.8px;
  }
}
.tv_table th, .tv_table td {
  padding: 16px 24px;
  text-align: left;
  vertical-align: middle;
  border-right: 2px solid #ddeef9;
  border-bottom: 2px solid #ddeef9;
}
@media screen and (max-width: 767px) {
  .tv_table th, .tv_table td {
    padding: 4px 8px;
  }
}
.tv_table thead th {
  border-color: #71bae6;
  background-color: #56ace1;
  color: #fff;
  font-weight: bold;
}
.tv_table tbody th {
  border-color: #71bae6;
  background-color: #56ace1;
  color: #fff;
  font-weight: bold;
}
.tv_table tbody td {
  background-color: #fff;
  color: #404040;
  font-weight: bold;
}
.tv_table tr > *:last-child {
  border-right: none;
}
.tv_table tbody tr:last-child > * {
  border-bottom: none;
}
.tv_table thead tr th:first-child {
  border-top-left-radius: 6px;
}
.tv_table thead tr th:last-child {
  border-top-right-radius: 6px;
}
.tv_table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 6px;
}
.tv_table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}
.tv_table {
  /* SimpleBar 横スクロールバー（スクロール可能なときのみ表示） */
}
.tv_table.simplebar-scrollable-x {
  /* SimpleBar が content に inline で padding:0 を当てるため !important で上書き。
     バー高さ(6px)と同値にすることで、表とバーの隙間を 0 にする（Figma 準拠：バーは表直下に密着） */
}
.tv_table.simplebar-scrollable-x .simplebar-content {
  padding-bottom: 6px !important;
}
.tv_table.simplebar-scrollable-x .simplebar-track.simplebar-horizontal {
  height: 6px;
  background-color: #ddd;
  border-radius: 4px;
}
.tv_table.simplebar-scrollable-x .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #56ace1;
  border-radius: 4px;
  opacity: 1;
}

/* 書類発行テーブルの列幅（3列）: Figma 準拠（1列目=237px / 2列目=763px / 3列目=200px / 計1200px） */
.tv_table-docs {
  -webkit-filter: drop-shadow(0 4px 20px rgba(86, 172, 225, 0.15));
          filter: drop-shadow(0 4px 20px rgba(86, 172, 225, 0.15));
  /* 対応ワクチン一覧テーブルと同様、スクロール領域を左右とも画面端まで伸ばし、
     padding（SimpleBar が .simplebar-content へ移す）で開始位置・終端をコンテンツ幅に揃える */
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
  /* SP ではスクロール領域の右端を画面端まで伸ばす（左端はコンテンツに揃える） */
}
@media screen and (max-width: 767px) {
  .tv_table-docs {
    width: calc(100% + 48px);
    padding-left: 24px;
    padding-right: 0;
    margin-left: -24px;
    margin-right: 0;
    overflow: clip;
  }
}
.tv_table-docs table {
  min-width: 1200px;
}
@media screen and (max-width: 767px) {
  .tv_table-docs table {
    width: auto;
    min-width: 700px;
    font-size: 12px;
    letter-spacing: 1.28px;
  }
}
@media screen and (max-width: 767px) {
  .tv_table-docs th, .tv_table-docs td {
    padding: 8px;
  }
}
.tv_table-docs tbody th {
  width: 237px;
}
@media screen and (max-width: 767px) {
  .tv_table-docs tbody th {
    width: 150px;
  }
}
.tv_table-docs thead th:nth-child(1) {
  width: 237px;
}
@media screen and (max-width: 767px) {
  .tv_table-docs thead th:nth-child(1) {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .tv_table-docs thead th:nth-child(2) {
    width: 300px;
  }
}
.tv_table-docs thead th:nth-child(3),
.tv_table-docs tbody td:last-child {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .tv_table-docs thead th:nth-child(3),
  .tv_table-docs tbody td:last-child {
    width: 120px;
  }
}
.tv_table-docs {
  /* スクロール不要時はバー用の下余白（table padding-bottom）も消す */
}
.tv_table-docs:not(.simplebar-scrollable-x) table {
  padding-bottom: 0;
}
.tv_table-docs {
  /* スクロールバーはコンテンツ幅に揃える（対応ワクチン一覧テーブルと同様） */
}
.tv_table-docs.simplebar-scrollable-x .simplebar-track.simplebar-horizontal {
  left: max(40px, (100vw - 1200px) / 2);
  right: max(40px, (100vw - 1200px) / 2);
}
@media screen and (max-width: 767px) {
  .tv_table-docs.simplebar-scrollable-x .simplebar-track.simplebar-horizontal {
    left: 0;
    right: 0;
  }
}

/* 横スクロール促進ヒント（SP のみ・スクロール可能時に表示） */
.tv_tableHint {
  display: none;
}
@media screen and (max-width: 767px) {
  .tv_tableHint {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.tv_tableHint {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tv_tableHint.is-hidden {
  opacity: 0;
}
.tv_tableHint_icon {
  width: 40px;
  height: 40px;
  background: url(/img/travel-vaccine/icon_swipe.svg) center/contain no-repeat;
}

/* テーブルセル内の箇条書き（接種スケジュール列など） */
.tv_cellList li {
  position: relative;
  padding-left: 20px;
}
.tv_cellList li:not(:last-child) {
  margin-bottom: 8px;
}
.tv_cellList li:before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
}

/* 対応ワクチン一覧テーブルの列幅（8 列）: Figma 準拠（1〜6列=233.33px / 7〜8列=600px / 計2600px） */
.tv_vaccine .tv_table {
  /* スクロール領域を左右とも画面端まで伸ばし、スクロール中の見切れは画面端で発生させる。
     padding は SimpleBar が .simplebar-content へ移すため、
     スクロールの開始位置・終端はコンテンツ幅（.tv_inner）に揃う */
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
}
@media screen and (max-width: 800px) {
  .tv_vaccine .tv_table {
    width: calc(100% + 48px);
    padding-left: 24px;
    padding-right: 0;
    margin-left: -24px;
    margin-right: 0;
    overflow: clip;
  }
}
.tv_vaccine .tv_table table {
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table table {
    min-width: 100%;
    font-size: 12px;
    letter-spacing: 1.28px;
  }
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table th, .tv_vaccine .tv_table td {
    padding: 8px;
  }
}
.tv_vaccine .tv_table thead th:nth-child(1),
.tv_vaccine .tv_table thead th:nth-child(2),
.tv_vaccine .tv_table thead th:nth-child(3),
.tv_vaccine .tv_table thead th:nth-child(4),
.tv_vaccine .tv_table thead th:nth-child(5),
.tv_vaccine .tv_table thead th:nth-child(6) {
  width: 188px;
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table thead th:nth-child(1),
  .tv_vaccine .tv_table thead th:nth-child(2),
  .tv_vaccine .tv_table thead th:nth-child(3),
  .tv_vaccine .tv_table thead th:nth-child(4),
  .tv_vaccine .tv_table thead th:nth-child(5),
  .tv_vaccine .tv_table thead th:nth-child(6) {
    width: 120px;
  }
}
.tv_vaccine .tv_table thead th:nth-child(7) {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table thead th:nth-child(7) {
    width: 250px;
  }
}
.tv_vaccine .tv_table thead th:nth-child(8) {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table thead th:nth-child(8) {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table thead th:nth-child(1) {
    width: 120px;
  }
  .tv_vaccine .tv_table thead th:nth-child(3) {
    width: 100px;
  }
  .tv_vaccine .tv_table thead th:nth-child(4) {
    width: 100px;
  }
  .tv_vaccine .tv_table thead th:nth-child(5) {
    width: 100px;
  }
  .tv_vaccine .tv_table thead th:nth-child(6) {
    width: 100px;
  }
}
.tv_vaccine .tv_table {
  /* 右端フェードアウト（横スクロール可能であることを示す。ベージュ背景へ溶けて消える） */
}
.tv_vaccine .tv_table::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#f6f1e8));
  background: linear-gradient(to right, transparent, #f6f1e8);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (max-width: 767px) {
  .tv_vaccine .tv_table::after {
    width: 60px;
  }
}
.tv_vaccine .tv_table.is-end::after {
  opacity: 0;
}
.tv_vaccine .tv_table {
  /* スクロールバーはコンテンツ幅に揃える（トラックの包含ブロックは両端まで広がった .tv_table = 100vw） */
}
.tv_vaccine .tv_table.simplebar-scrollable-x .simplebar-track.simplebar-horizontal {
  left: max(40px, (100vw - 1200px) / 2);
  right: max(40px, (100vw - 1200px) / 2);
}
@media screen and (max-width: 800px) {
  .tv_vaccine .tv_table.simplebar-scrollable-x .simplebar-track.simplebar-horizontal {
    left: 0;
    right: calc(100vw - 100%);
  }
}

.tv_notes {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tv_notes {
    margin-top: 32px;
  }
}
.tv_notes li {
  position: relative;
  padding-left: 1.5em;
  color: #8b8a8a;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.12px;
}
.tv_notes li:not(:last-child) {
  margin-bottom: 8px;
}
.tv_notes li:before {
  content: "※";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  .tv_notes li {
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}
.tv_notes {
  /* ※ なしの続き行（前の項目の本文位置に揃え、間隔を詰める） */
}
.tv_notes li:has(+ .tv_notes_plain) {
  margin-bottom: 0;
}
.tv_notes li.tv_notes_plain:before {
  content: none;
}

.tv_vaccine .tv_btn,
.tv_docs .tv_btn {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .tv_vaccine .tv_btn {
    margin-top: 24px;
  }
}

/* --------------------------------
	接種スケジュール
-------------------------------- */
@media screen and (max-width: 767px) {
  .tv_schedule .tv_subTtl h2 {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

/* リード文・注記は SP でも Figma 仕様（リード16px / 注記12px）を維持 */
@media screen and (max-width: 767px) {
  .tv_schedule .tv_txt {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .tv_schedule .tv_note {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.96px;
  }
}

.tv_schedule_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0 24px;
}
@media screen and (max-width: 1024px) {
  .tv_schedule_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .tv_schedule_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .tv_schedule_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin: 32px 0 24px;
  }
}

.tv_schedule_item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .tv_schedule_item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    width: 24px;
    height: 8px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #fff;
    pointer-events: none;
  }
}
@media screen and (max-width: 800px) {
  .tv_schedule_item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 45%;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
    padding: 28px;
  }
}
@media screen and (max-width: 767px) {
  .tv_schedule_item {
    padding: 32px 24px;
  }
}
.tv_schedule_item {
  /* カード間の縦線コネクタ（SP のみ） */
}
@media screen and (max-width: 767px) {
  .tv_schedule_item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 8px;
    height: 24px;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.tv_schedule_icon {
  position: absolute;
  top: -12px;
  right: -11px;
  width: 42px;
  height: 42px;
  background: center/contain no-repeat;
}
.tv_schedule_icon-check {
  background-image: url(/img/travel-vaccine/icon_check.svg);
}
.tv_schedule_icon-alert {
  background-image: url(/img/travel-vaccine/icon_alert.svg);
}
@media screen and (max-width: 767px) {
  .tv_schedule_icon {
    top: -12px;
    right: -12px;
    width: 42px;
    height: 42px;
  }
}

.tv_schedule_ttl {
  margin-bottom: 8px;
  color: #56ace1;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.92px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tv_schedule_ttl {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.tv_schedule_item-warn .tv_schedule_ttl {
  color: #e15f56;
}

.tv_schedule_txt {
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.28px;
}

/* --------------------------------
	副反応・注意事項 / 共通リスト
-------------------------------- */
.tv_bullets {
  margin-top: 16px;
}
.tv_bullets li {
  position: relative;
  padding-left: 28px;
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.28px;
}
.tv_bullets li:not(:last-child) {
  margin-bottom: 8px;
}
.tv_bullets li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
}
@media screen and (max-width: 767px) {
  .tv_bullets li {
    font-size: 14px;
  }
}

.tv_caution .tv_txt {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .tv_caution .tv_txt {
    font-size: 16px;
  }
}

/* 副反応・注意事項は SP でも Figma 仕様（本文・箇条書き 16px）を維持 */
@media screen and (max-width: 767px) {
  .tv_caution .tv_subTtl h2 {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.tv_caution .tv_bullets {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .tv_caution .tv_bullets li {
    font-size: 16px;
  }
}

/* --------------------------------
	ご予約の流れ
-------------------------------- */
.tv_section.tv_flow {
  padding: 0;
}

.tv_flow_box {
  margin: 0;
  padding: 120px max(40px, (100% - 1200px) / 2);
  border-radius: 40px;
  background-color: #f6f1e8;
}
@media screen and (max-width: 767px) {
  .tv_flow_box {
    padding: 96px 24px;
    border-radius: 20px;
  }
}

/* ご予約の流れは SP でも Figma 仕様（リード・本文・見出し）を維持 */
@media screen and (max-width: 767px) {
  .tv_flow .tv_ttl {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .tv_flow .tv_lead {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
  }
  .tv_flow .tv_lead br {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .tv_flow_col .tv_subTtl h3 {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

@media screen and (max-width: 767px) {
  .tv_flow_col .tv_bullets li {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .tv_flow_col .tv_txt {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .tv_flow_col .tv_note {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}

/* 4列(≥1280px) → 2×2(768〜1279px) → 1列(≤767px) */
.tv_flow_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 56px 24px;
  margin: 64px 0 96px;
}
@media screen and (min-width: 1280px) {
  .tv_flow_list {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .tv_flow_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin: 24px 0 64px;
  }
}

.tv_flow_item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 calc(50% - 16px);
      -ms-flex: 1 1 calc(50% - 16px);
          flex: 1 1 calc(50% - 16px);
  min-width: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 32px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (min-width: 1280px) {
  .tv_flow_item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    /* カード間の横線コネクタ（PC 4列） */
  }
  .tv_flow_item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    width: 24px;
    height: 8px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #fff;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .tv_flow_item {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding: 32px 24px;
    /* カード間の縦線コネクタ（SP のみ） */
  }
  .tv_flow_item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 8px;
    height: 24px;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.tv_flow_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 100%;
}

.tv_flow_num {
  position: absolute;
  top: -22px;
  right: -21.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 30px;
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
  color: #fff;
  font-size: 28px;
  letter-spacing: 2.24px;
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
}

.tv_flow_ttl {
  color: #56ace1;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.92px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tv_flow_ttl {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.tv_flow_txt {
  width: 100%;
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1.28px;
}

.tv_flow_note {
  width: 100%;
  color: #8b8a8a;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  .tv_flow_note {
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}

.tv_flow_cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .tv_flow_cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
    margin-bottom: 24px;
  }
}

.tv_flow_col {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}

.tv_flow_box .tv_btn {
  text-align: center;
}

/* --------------------------------
	よくあるご質問
-------------------------------- */
.tv_section.tv_faq {
  padding: 120px 0 20px;
}
@media screen and (max-width: 800px) {
  .tv_section.tv_faq {
    padding: 96px 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .tv_section.tv_faq {
    padding: 96px 0 24px;
  }
}

.tv_faq_list {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 24px;
}

.tv_faq_item {
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #f2f2f2;
  cursor: pointer;
  -webkit-transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tv_faq_item:hover {
  background-color: #e8e8e8;
}
.tv_faq_item:not(:last-child) {
  margin-bottom: 16px;
}

.tv_faq_q {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 24px 40px;
}
@media screen and (max-width: 767px) {
  .tv_faq_q {
    padding: 24px 24px 24px 24px;
  }
}

.tv_faq_q_txt {
  color: #56ace1;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 800px) {
  .tv_faq_q_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tv_faq_q_txt {
    font-size: 18px;
    letter-spacing: 1.4px;
  }
}

.tv_faq_toggle {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(225deg, #56ace1 31%, #3597d4 69%);
}
.tv_faq_toggle:before, .tv_faq_toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
}
.tv_faq_toggle:before {
  width: 14px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tv_faq_toggle:after {
  width: 2px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (max-width: 767px) {
  .tv_faq_toggle {
    width: 40px;
    height: 40px;
  }
}

.tv_faq_item.is-open .tv_faq_toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.tv_faq_a {
  display: none;
  position: relative;
  top: -8px;
  padding: 0 24px 24px 40px;
  cursor: default;
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 767px) {
  .tv_faq_a {
    padding: 0 24px 24px 24px;
  }
}

/* --------------------------------
	CTA
-------------------------------- */
.tv_section.tv_cta {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .tv_section.tv_cta {
    padding-top: 72px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}

.tv_cta_box {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 40px;
  border-radius: 40px;
  background-image: url(/img/travel-vaccine/bg_cta_lg.png);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .tv_cta_box {
    padding: 64px 24px;
    border-radius: 0;
    background-image: url(/img/travel-vaccine/bg_cta_sm.png);
  }
}

.tv_cta_card {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(86, 172, 225, 0.15);
          box-shadow: 0 4px 10px rgba(86, 172, 225, 0.15);
}
@media screen and (max-width: 767px) {
  .tv_cta_card {
    gap: 24px;
    padding: 32px 20px;
  }
}

.tv_cta_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.tv_cta_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .tv_cta_ttl {
    gap: 0;
  }
}
.tv_cta_ttl span {
  padding-bottom: 8px;
  border-bottom: 3px solid #56ace1;
  color: #56ace1;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2.56px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tv_cta_ttl span {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 1.92px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .tv_cta_ttl.tv_cta_ttl-pc {
    display: none;
  }
}
.tv_cta_ttl.tv_cta_ttl-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .tv_cta_ttl.tv_cta_ttl-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.tv_cta_lead {
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 1.28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tv_cta_lead br {
    display: none;
  }
}

/* ウミガメ＋泡の装飾（カード右端に重なる） */
.tv_cta_obj {
  position: absolute;
  top: calc(50% + 21px);
  right: -27px;
  z-index: 3;
  width: 152px;
  height: 159px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.tv_cta_obj img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .tv_cta_obj {
    right: -28px;
    width: 124px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .tv_cta_obj {
    display: none;
  }
}