@charset "UTF-8";
/*====================================
    共通
    ====================================*/
:root {
  /* 色の設定 */
  --pink: #f482a9;
  --light-pink: #ff9bbd;
  --bg-pink: #feeef6;
  --brown: #4c2f0f;
  --blue: #a1d0f2;
  --bg-blue: #eafbff;
  --bg-yellow: #fffeec;
}

.l-main {
  color: #333333;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
}

section {
  margin: 70px 0 !important;
}

section:first-of-type {
  margin-top: 0 !important;
}

p {
  font-size: 16px;
}

.bold {
  font-weight: 800;
}

.pink {
  color: var(--pink);
}

.tsukushi {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
}

.ttl-h1 {
  margin: 20px 0;
  text-align: left;
  font-size: 30px;
  color: var(--brown);
  line-height: 1.4;
}

.ttl-h2 {
  position: relative;
  margin: 20px 0;
  padding-bottom: 18px;
  text-align: center;
  font-size: 28px;
  color: var(--brown);
  line-height: 1.4;
}

.ttl-h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  display: inline-block;
  width: 100px;
  height: 3px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--pink);
  border-radius: 2px;
}

.ttl-h3 {
  margin-top: 26px;
  padding: 4px 20px;
  background-color: var(--light-pink);
  background: linear-gradient(to bottom, #f482a9 0%, #ff9bbd 100%);
  color: #fff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  border-radius: 4px;
}

.ttl-p {
  margin: 18px 0 14px;
  color: var(--pink);
  font-size: 20px;
  line-height: 1.4;
}

.txt-p {
  margin: 14px 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.internal-link {
  padding-bottom: 2px;
  border-bottom: 4px;
  color: var(--pink);
  border-bottom: 1px solid var(--pink);
}

.attention-container {
  margin: 18px 0;
}

.attention-item {
  letter-spacing: 0.06em;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
}

.shienkyufu-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.list-txt {
  margin: 18px 0;
}

.list-txt-item {
  letter-spacing: 0.06em;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 16px;
}

.highlight {
  background: #f9ffa0;
}

.br-sp {
  display: none;
}

.flex {
  display: flex;
  column-gap: 2%;
  align-items: center;
  margin: 20px 0;
}

.line-addition {
  text-align: center;
}
.btn-line2 {
  max-width: 408px;
  width: 100%;
  height: auto;
}

.list {
  margin: 20px 0 20px 10px;
}

.list .list-ttl-p {
  color: var(--pink);
  font-size: 20px;
}

.list .list-txt-p {
  margin: 2px 0 14px;
}

.femcheck-contact-btn img {
  max-width: 282px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  section {
    margin: 50px 0 !important;
  }

  .tsukushi {
    line-height: 1.6;
  }

  .ttl-h1 {
    margin: 18px 0;
    font-size: 24px;
    line-height: 1.2;
  }

  .ttl-h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .ttl-h2:before {
    bottom: 2px;
    width: 100px;
    height: 3px;
    border-radius: 2px;
  }

  .ttl-h3 {
    margin-top: 30px;
    padding: 6px 12px;
    font-size: 20px;
    line-height: 1.4;
  }

  .ttl-p {
    line-height: 1.3;
  }

  .flex {
    display: block;
    margin: 14px 0;
    text-align: center;
  }

  .flex .txt-p {
    text-align: left;
  }
}

/*====================================
    main
    ====================================*/
/* FV ***********************************/
.fv-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.fv-img.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .fv-img.pc {
    display: none;
  }
  .fv-img.sp {
    display: block;
  }
}

/* doctor ***********************************/
.doctor .doctor-pc {
  display: flex;
}

.doctor .doctor-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .doctor .doctor-pc {
    display: none;
  }

  .doctor .doctor-sp {
    display: block;
  }

  .doctor .doctor-sp .doctor-img {
    width: 120px;
    height: auto;
    float: left;
  }
}

/* video ***********************************/
.video {
  width: 100%;
  padding: 36px 0 56px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffe3f1 6%,
    #ffe3f1 94%,
    #ffffff 100%
  );
  text-align: center;
}

.video img {
  cursor: pointer;
  width: 86%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.video iframe {
  margin: 4px 0;
}

/* 料金デザイン01 ***********************************/
.price-container01 {
  margin: 28px 0 18px;
}

.price-container01 .price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 20px;
  font-size: 18px;
  letter-spacing: 0.06em;
  background-color: var(--bg-pink);
}

@media screen and (max-width: 767px) {
  .price-container01 {
    margin: 18px 0;
  }

  .price-container01 .price-item {
    margin-bottom: 10px;
    padding: 14px 10px;
    font-size: 16px;
  }
}

/* 料金デザイン02 ***********************************/
.price-container02 {
  margin: 28px 0;
  text-align: center;
}

.price-container02 .price-box {
  border: 1px solid var(--pink);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.price-container02 .price-header {
  background-color: var(--bg-pink);
  padding: 8px;
  font-size: 18px;
  font-weight: 500;
}

.price-container02 .price-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.price-container02 .price-content img {
  max-width: 82px;
  height: auto;
  margin-right: 16px;
}

.price-container02 .price {
  font-size: 24px;
  font-weight: 800;
}

.price-container02 .price span {
  font-size: 18px;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .price-container02 {
    margin: 18px 0;
  }

  .price-container02 .price-box {
    margin-bottom: 10px;
  }

  .price-container02 .price-header {
    padding: 8px;
    font-size: 16px;
  }

  .price-container02 .price-content {
    padding: 10px;
  }

  .price-container02 .price {
    font-size: 22px;
  }

  .price-container02 .price span {
    font-size: 16px;
  }
}

/* お支払い方法 ***********************************/
.payment-table {
  margin: 20px 0;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.payment-table th {
  width: 184px;
  padding: 34px 20px;
  font-size: 18px;
  background-color: var(--bg-pink);
  border-bottom: 2px solid #fff;
  vertical-align: middle;
}

.payment-table tbody tr:last-child th {
  border-bottom: 2px solid var(--bg-pink);
}

.payment-table td {
  border-bottom: 2px solid var(--bg-pink);
}

.payment-table td img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 900px) {
  .payment-table th {
    padding: 8px 10px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .payment-table th {
    width: 100px;
    font-size: 14px;
  }
}

/* ポイントボックス デザイン ***********************************/

.point_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: 20px;
  row-gap: 34px;
  margin: 26px 0 30px;
  box-sizing: border-box;
}

.point-box {
  position: relative;
  border: 2px solid var(--light-pink);
  border-radius: 8px;
  padding: 20px 16px 16px;
  background: #fff;
  box-sizing: border-box;
}

.point-box::before {
  content: attr(data-point);
  position: absolute;
  top: -16px;
  left: 16px;
  padding: 0px 10px;
  background: var(--light-pink);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 4px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}

.point-box .ttl-h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--brown);
  line-height: 1.4;
}

.point-box .box-p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.6;
}

/* テーブル01 デザイン ***********************************/
.table01 {
  width: 100%;
  margin: 20px 0;
  vertical-align: middle;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
}

.table01 th,
.table01 td {
  text-align: center;
  vertical-align: middle;
}

.table01 td {
  padding: 1em 0.4em;
  border-left: 1px solid var(--light-pink);
  border-right: 1px solid var(--light-pink);
  background-color: var(--bg-yellow);
  font-size: 16px;
}

.table01 thead th {
  padding: 1em 0.8em;
}
.table01 thead th .small {
  font-size: 18px;
}
.table01 thead th:not(:first-child) {
  padding: 0.5em;
  background: var(--bg-yellow);
  color: var(--brown);
  border-radius: 15px 15px 0 0;
  border: 1px solid var(--light-pink);
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 1;
}
.table01 thead th span {
  font-size: 0.8rem;
}
.table01 thead th:nth-child(3) {
  position: relative;
  background-color: var(--bg-yellow);
}
.table01 thead th {
  border-bottom: 1px solid var(--light-pink);
}

.table01 thead .th-item {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.table01 tbody {
  border: 1px solid var(--light-pink);
  border-left: none;
}
.table01 tbody tr {
  border-top: 1px solid var(--light-pink);
}
.table01 tbody tr:nth-child(odd) {
  background-color: #fff;
}

.table01 tbody th,
.table01 tbody td {
  border-bottom: 1px solid var(--light-pink);
}

.table01 tbody th {
  width: 140px;
  padding: 0.6em 0.4em;
  font-size: 20px;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.2;
  text-align: center;
}

.circle {
  color: var(--pink);
  font-size: 30px;
}

.triangle {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .table01 thead th:not(:first-child) {
    padding: 0.4em 0.2em;
    font-size: 14px;
    line-height: 1.2;
  }
  .table01 thead th .small {
    font-size: 14px;
  }

  .table01 tbody th {
    width: 78px;
    padding: 0.2em;
    font-size: 13px;
    line-height: 1.2;
  }

  .table01 thead .th-item {
    font-size: 14px;
    line-height: 1.2;
  }

  .table01 td {
    padding: 0.6em 0.4em;
    font-size: 12px;
  }

  .table01 .size12 {
    font-size: 12px;
  }

  .circle,
  .triangle {
    font-size: 24px;
  }
}

/* タブ切り替え ***********************************/
/* タブ切り替えコンテナの基本スタイル */
.tab-switching-container {
  margin: 2rem auto;
  width: 100%;
}
.tab-switching-container .youtube {
  margin-bottom: 24px;
  text-align: center;
}

input[type="radio"] {
  display: none;
}

/* タブラベルの共通スタイル */
label.tab {
  width: calc(100% / 2 - 2%);
  height: 47px;
  line-height: 47px;
  font-size: 26px;
  text-align: center;
  color: #4c2f0f;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 10px 10px 0 0;
  margin: 5px 0.5% 0 0;
}

label[for="radio1"] {
  background: #feedf5;
}
label[for="radio2"] {
  background: #eafbff;
}

/* タブコンテンツ（中身）のスタイル */
.tab_con {
  display: none;
  padding: 18px 34px 58px;
  clear: both;
  overflow: hidden;
  background: #f3f3f3;
  opacity: 0;
  transition: opacity 0.4s, background-color 0.4s;
}

#tb2 {
  padding: 38px 34px 58px;
}

#radio1:checked ~ #tb1 {
  display: block;
  opacity: 1;
  background-color: #feedf5;
}
#radio2:checked ~ #tb2 {
  display: block;
  opacity: 1;
  background-color: #eafbff;
}

input[type="radio"]:not(:checked) + label.tab {
  background-color: #bbbbbb;
}

input[type="radio"]:not(:checked) + label.tab:hover {
  background-color: #aaaaaa;
}

#radio1:checked + label[for="radio1"] {
  background-color: #feedf5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: none;
}
#radio1:checked + label[for="radio1"]:hover {
  background-color: #feedf5;
}

#radio2:checked + label[for="radio2"] {
  background-color: #eafbff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: none;
}
#radio2:checked + label[for="radio2"]:hover {
  background-color: #eafbff;
}

@media (max-width: 767px) {
  label.tab {
    font-size: 20px;
  }
  .tab_con {
    padding: 4px 8px 26px;
  }
  #tb2 {
    padding: 38px 8px 26px;
  }
}

/* flow ***********************************/
/* 共通 */
.flow1,
.flow2 {
  padding: 58px 34px;
}

.flow-container {
  width: 100%;
  background-color: #fff;
  padding: 42px;
  border-radius: 8px;
}

.step-ttl {
  color: var(--brown);
  font-size: 26px;
  line-height: 1.3;
}

.step-ttl span {
  font-size: 20px;
}

.img-step-credit-card {
  width: 100%;
  height: auto;
}

/* ── アイコン共通スタイル ── */
[class^="step"]::before {
  position: absolute;
  left: -28px;
  width: 57px;
  height: 57px;
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .flow1,
  .flow2 {
    padding: 26px 8px;
  }

  .flow-container {
    width: 98%;
    margin: 0 auto;
    padding: 30px 12px 16px 35px;
  }

  .step-ttl {
    font-size: 22px;
    line-height: 1.3;
  }

  .step-ttl span {
    font-size: 16px;
  }

  .flow-container .txt-p {
    font-size: 14px;
  }
}

/* flou1 */
.flow1 {
  background-color: var(--bg-pink);
}

.step1 {
  position: relative;
  padding-bottom: 30px;
  padding-left: 48px;
  border-left: 1px solid var(--light-pink);
}

.contact {
  padding: 16px;
  background-color: #fffcc7;
  border-radius: 8px;
  text-align: center;
}

.contact-tti {
  color: var(--brown);
  font-size: 24px;
  line-height: 1.3;
}

.contact .txt-p {
  margin: 4px 0 10px;
}

.contact-options {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.contact-options img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .step1 {
    padding-bottom: 16px;
    padding-left: 36px;
  }

  .contact-tti {
    font-size: 18px;
    line-height: 1.2;
  }

  .contact-options {
    display: block;
  }

  .contact-options img {
    max-width: 300px;
    margin-bottom: 10px;
  }

  .contact .txt-p {
    margin: 6px 0;
    font-size: 13px;
  }
}

/* flou2 */
.flow2 {
  background-color: var(--bg-blue);
}

.step2 {
  position: relative;
  padding-bottom: 30px;
  padding-left: 48px;
  border-left: 1px solid var(--blue);
}

@media screen and (max-width: 767px) {
  .step2 {
    padding-bottom: 16px;
    padding-left: 36px;
  }
}

/* チェックボックスデザイン ***********************************/
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin: 5px 24px 5px 0;
}

.checkbox-icon {
  width: 20px;
  height: 20px;
  border: 1.6px solid var(--pink);
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

/* ─── （✓マーク） ─── */
.checkbox-icon.checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid var(--pink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-group .label-text {
  margin-left: 6px;
  font-size: 16px;
  user-select: none;
}

/* qa ***********************************/
.accordion-01 {
  width: 100%;
  margin-bottom: 26px;
  padding: 0 2em;
  border: 1px solid var(--light-pink);
  background-color: var(--bg-yellow);
}

.banner img {
  margin: 14px auto 40px;
  width: 100%;
  height: auto;
}

.accordion-01 summary {
  display: flex;
  position: relative;
}

.accordion-01 .summary-p {
  padding: 0.6em 1em 0.6em 0;
  color: var(--brown);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1.6;
  vertical-align: middle;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.accordion-01 .summary-p span {
  color: var(--pink);
  margin-right: 6px;
}

.accordion-01 summary::-webkit-details-marker {
  display: none;
}

.accordion-01 summary::before,
.accordion-01 summary::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: var(--light-pink);
  content: "";
}

.accordion-01 summary::before {
  position: absolute;
  top: 40%;
  right: 0.6em;
  rotate: 90deg;
}

.accordion-01 summary::after {
  position: absolute;
  top: 40%;
  right: 0.6em;
  transition: rotate 0.3s;
}

.accordion-01[open] summary::after {
  rotate: 90deg;
}

.accordion-01 .txt-p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1.3em 0 2em 1.5em;
  transition: transform 0.5s, opacity 0.5s;
  border-top: 1px dashed var(--light-pink);
  text-indent: -1.5em;
}

.accordion-01 .txt-p span {
  margin-right: 4px;
  color: var(--pink);
  font-size: 22px;
}

.accordion-01[open] p {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .banner img {
    margin: 14px auto 24px;
  }

  .accordion-01 {
    margin-bottom: 18px;
    padding: 0 0.6em;
  }

  .accordion-01 .summary-p {
    padding: 0.8em 1.1em 0.8em 0;
    font-size: 18px;
    line-height: 1.2;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }

  .accordion-01 .txt-p {
    padding: 0.5em 0 1.4em 1.8em;
    font-size: 15px;
  }
}

/* 医師紹介 ***********************************/
.profile-card {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  background-color: #eaf5f6;
  padding: 20px 16px;
}

.profile-card img {
  width: 90px;
  height: 90px;
  margin-right: 12px;
}

.profile-text .name {
  font-size: 18px;
  margin-bottom: 4px;
}
.profile-text .career {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .profile-card {
    margin-bottom: 18px;
  }

  .profile-card img {
    width: 80px;
    height: 80px;
  }

  .profile-text .career {
    font-size: 13px;
  }
}

/* access ***********************************/
.accordion-02 {
  width: 100%;
  padding: 0 0.4em;
  border-top: 1px solid var(--brown);
}

.accordion-02:last-child {
  border-bottom: 1px solid var(--brown);
}

.accordion-02 .summary {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.8em 0.6em 0.8em 0;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1.4;
}

.accordion-02 iframe {
  margin-bottom: 40px;
}

.accordion-02 iframe[src^="https://www.google.com/maps/embed"]
{
  width: 100%;
}

.clinic_img {
  text-align: center;
}

.clinic_img img {
  width: 100%;
  max-width: 365px;
  height: auto;
}

.access .schedule-container {
  width: 100%;
  margin: 30px auto;
}

.access .schedule {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px dashed #707070;
  border-bottom: 1px dashed #707070;
}

.access .schedule th,
.access .schedule td {
  padding: 12px;
  text-align: center;
  font-size: 14px;
}

.access .schedule th {
  background-color: var(--bg-pink);
}

.access .time-slot.time {
  width: 190px;
  letter-spacing: 0.4em;
}

.access .border {
  border-top: 1px dashed #707070;
  border-bottom: 1px dashed #707070;
}

.clinic-info {
  width: 100%;
  font-size: 16px;
}

.clinic-table {
  width: 100%;
  border-collapse: collapse;
}

.clinic-table th,
.clinic-table td {
  padding: 5px;
  text-align: left;
}

.schedule td {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .accordion-02 summary {
    padding: 0.8em 0.6em 0.8em 0;
    font-size: 18px;
  }

  .access .time-slot.time {
    letter-spacing: 0em;
  }

  .clinic-table th {
    width: 76px;
  }
}

/*====================================
    中絶　abortion
====================================*/
@media screen and (max-width: 767px) {
  iframe[src^="https://www.youtube.com/embed/jzcbUukpyE4?si=pFNUN7SDfGV_YjrI"]
  {
    width: 100%;
    padding: 0 20px;
  }
}

/* ── 各ステップごとのアイコン指定 ──*/
.step1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.step1-2::before {
  background-image: url("../images/medical-care/icon1_reception.png");
}
.step1-3::before {
  background-image: url("../images/medical-care/icon1_medical_interviews.png");
}
.step1-4::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.step1-5::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}
.step1-6::before {
  background-image: url("../images/medical-care/icon1_reservation2.png");
}
.step1-7::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}

.step2-1::before {
  background-image: url("../images/medical-care/icon2_reception.png");
}
.step2-2::before {
  background-image: url("../images/medical-care/icon2_accounting.png");
}
.step2-3::before {
  background-image: url("../images/medical-care/icon2_anesthesia.png");
}
.step2-4::before {
  background-image: url("../images/medical-care/icon2_surgery.png");
}
.step2-5::before {
  background-image: url("../images/medical-care/icon2_miss.png");
}
.step2-6::before {
  background-image: url("../images/medical-care/icon2_reservation2.png");
}

/*====================================
    アフターピル　after-pill_page
====================================*/
.img-online-medicalcare {
  max-width: 178px;
  height: auto;
}

.after-pill-tab-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.after-pill-tab-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_reception.png");
}
.after-pill-tab-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}
.after-pill-tab-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}
.after-pill-tab-flow-1-5::before {
  background-image: url("../images/medical-care/icon1_pill.png");
}
.after-pill-tab-flow-1-6::before {
  background-image: url("../images/medical-care/icon1_aftercare.png");
}

.after-pill-tab-flow-2-1::before {
  background-image: url("../images/medical-care/icon2_reservation.png");
}
.after-pill-tab-flow-2-2::before {
  background-image: url("../images/medical-care/icon2_reservation2.png");
}
.after-pill-tab-flow-2-3::before {
  background-image: url("../images/medical-care/icon2_online_medical_interviews.png");
}
.after-pill-tab-flow-2-4::before {
  background-image: url("../images/medical-care/icon2_chat.png");
}
.after-pill-tab-flow-2-5::before {
  background-image: url("../images/medical-care/icon2_online_medical_care.png");
}
.after-pill-tab-flow-2-6::before {
  background-image: url("../images/medical-care/icon2_accounting.png");
}
.after-pill-tab-flow-2-7::before {
  background-image: url("../images/medical-care/icon2_pill.png");
}
.after-pill-tab-flow-2-8::before {
  background-image: url("../images/medical-care/icon2_aftercare.png");
}

.img-pill-effect {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .table01.after-pill tbody th {
    width: 57px;
  }

  iframe[src^="https://www.youtube.com/embed/vujdrnpks7Q?si=v6xMXgDzJyCAzGTU"]
  {
    width: 100%;
    padding: 0 8px;
  }
}

/*====================================
    低容量ピル　low-dose-contraceptive
====================================*/
.price-container01.low-dose-contraceptive .price-item {
  align-items: center;
}

.price-container01.low-dose-contraceptive .price-item .small {
  font-size: 16px;
}

.low-pill-tab-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.low-pill-tab-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.low-pill-tab-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}

.low-pill-tab-flow-2-1::before {
  background-image: url("../images/medical-care/icon2_reservation.png");
}
.low-pill-tab-flow-2-2::before {
  background-image: url("../images/medical-care/icon2_online_medical_interviews.png");
}
.low-pill-tab-flow-2-3::before {
  background-image: url("../images/medical-care/icon2_online_medical_care.png");
}
.low-pill-tab-flow-2-4::before {
  background-image: url("../images/medical-care/icon2_accounting.png");
}
.low-pill-tab-flow-2-5::before {
  background-image: url("../images/medical-care/icon2_aftercare.png");
}

@media screen and (max-width: 767px) {
  iframe[src^="https://www.youtube.com/embed/_wuWkUd7yjU?si=YRJ4W49EU2qnfYm-"]
  {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 601px) {
  .price-container01.low-dose-contraceptive .price-item {
    display: block;
  }

  .price-container01.low-dose-contraceptive .price-item .small {
    font-size: 14px;
  }
}

/*====================================
    ブライダルチェック　bridal-check
====================================*/
@media screen and (max-width: 767px) {
  iframe[src^="https://www.youtube.com/embed/BZ8Ep3JhIAU?si=X6LKnyszq4Dtk_hl"]
  {
    width: 100%;
    padding: 0 20px;
  }
}

.table01.bridal-check td {
  text-align: left;
}

.page-bridal-check-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.page-bridal-check-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_reception.png");
}
.page-bridal-check-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.page-bridal-check-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.page-bridal-check-flow-1-5::before {
  background-image: url("../images/medical-care/icon1_drawing blood.png");
}
.page-bridal-check-flow-1-6::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}

/*====================================
    性感染症　std　
====================================*/
.page-std-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.page-std-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.page-std-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.page-std-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_drawing blood.png");
}
.page-std-flow-1-5::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}

/*====================================
    ミレーナ　milena
====================================*/
.page-milena-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.page-milena-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.page-milena-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.page-milena-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}

/*====================================
    ピルの処方　pill-prescription
====================================*/
.pill-prescription-tab-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.pill-prescription-tab-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}
.pill-prescription-tab-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.pill-prescription-tab-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}

.pill-prescription-tab-flow-2-1::before {
  background-image: url("../images/medical-care/icon2_reservation.png");
}
.pill-prescription-tab-flow-2-2::before {
  background-image: url("../images/medical-care/icon2_online_medical_interviews.png");
}
.pill-prescription-tab-flow-2-3::before {
  background-image: url("../images/medical-care/icon2_online_medical_care.png");
}
.pill-prescription-tab-flow-2-4::before {
  background-image: url("../images/medical-care/icon2_accounting.png");
}
.pill-prescription-tab-flow-2-5::before {
  background-image: url("../images/medical-care/icon2_aftercare.png");
}

/*====================================
    月経移動　menstrual-manipulation
====================================*/
.menstrual-manipulation .contact-options {
  width: 70%;
  margin: 10px auto 0;
}

.menstrual-manipulation-tab-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.menstrual-manipulation-tab-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.menstrual-manipulation-tab-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}

.menstrual-manipulation-tab-flow-2-1::before {
  background-image: url("../images/medical-care/icon2_reservation.png");
}
.menstrual-manipulation-tab-flow-2-2::before {
  background-image: url("../images/medical-care/icon2_online_medical_interviews.png");
}
.menstrual-manipulation-tab-flow-2-3::before {
  background-image: url("../images/medical-care/icon2_online_medical_care.png");
}
.menstrual-manipulation-tab-flow-2-4::before {
  background-image: url("../images/medical-care/icon2_accounting.png");
}
.menstrual-manipulation-tab-flow-2-5::before {
  background-image: url("../images/medical-care/icon2_aftercare.png");
}

@media screen and (max-width: 767px) {
  .menstrual-manipulation .contact-options {
    width: 100%;
  }
}

/*====================================
    生理不順　menstrual-irregularity
====================================*/
.menstrual-irregularity-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.menstrual-irregularity-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.menstrual-irregularity-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.menstrual-irregularity-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}

/*====================================
    生理痛　menstrual-pain
====================================*/
.menstrual-pain .contact-options {
  width: 70%;
  margin: 10px auto 0;
}

.menstrual-pain-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.menstrual-pain-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.menstrual-pain-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.menstrual-pain-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}

@media screen and (max-width: 767px) {
  .menstrual-pain .contact-options {
    width: 100%;
  }
}

/*====================================
    不正出血　irregular-genital-bleeding
====================================*/
.irregular-genital-bleeding .contact-options {
  width: 70%;
  margin: 10px auto 0;
}

.irregular-genital-bleeding-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.irregular-genital-bleeding-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.irregular-genital-bleeding-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.irregular-genital-bleeding-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}

@media screen and (max-width: 767px) {
  .irregular-genital-bleeding .contact-options {
    width: 100%;
  }
}

/*====================================
    妊娠検査　pregnancy-test
====================================*/
.pregnancy-test .contact-options {
  width: 70%;
  margin: 10px auto 0;
}

.pregnancy-test-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.pregnancy-test-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_reception.png");
}
.pregnancy-test-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.pregnancy-test-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}
.pregnancy-test-flow-1-5::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}

@media screen and (max-width: 767px) {
  .pregnancy-test .contact-options {
    width: 100%;
  }
}

/*====================================
    女性の健診・検査　medical-checkup
====================================*/
.medical-checkup-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.medical-checkup-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_examination2.png");
}
.medical-checkup-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_examination.png");
}

@media screen and (max-width: 767px) {
  iframe[src^="https://www.youtube.com/embed/SDtbGoNBNJQ?si=hGd5lcKDr8q18BOm"]
  {
    width: 100%;
    padding: 0 20px;
  }

  iframe[src^="https://www.youtube.com/embed/OoBc2pJXNP8?si=j5Cbu8-ywhcaBQIH"]
  {
    width: 100%;
    padding: 0 20px;
  }
}

/*====================================
    おりもの検査　abnormal-vaginal-discharge
====================================*/

.abnormal-vaginal-discharge .table01 .table01-ttl-small {
  font-size: 20px;
}

.abnormal-vaginal-discharge-tab-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.abnormal-vaginal-discharge-tab-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.abnormal-vaginal-discharge-tab-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_reservation2.png");
}
.abnormal-vaginal-discharge-tab-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}

.abnormal-vaginal-discharge-tab-flow-2-1::before {
  background-image: url("../images/medical-care/icon2_reservation.png");
}
.abnormal-vaginal-discharge-tab-flow-2-2::before {
  background-image: url("../images/medical-care/icon2_doctor.png");
}
.abnormal-vaginal-discharge-tab-flow-2-3::before {
  background-image: url("../images/medical-care/icon2_examination2.png");
}
.abnormal-vaginal-discharge-tab-flow-2-4::before {
  background-image: url("../images/medical-care/icon2_examination.png");
}

@media screen and (max-width: 767px) {
  .abnormal-vaginal-discharge label.tab {
    font-size: 18px;
  }

  .abnormal-vaginal-discharge .table01 .table01-ttl-small {
    font-size: 13px;
  }

  .abnormal-vaginal-discharge .table01 tbody th {
    width: 50px;
  }
}

/*====================================
    HPVワクチン　hpv-vaccine
====================================*/
.hpv-vaccine-flow-1-1::before {
  background-image: url("../images/medical-care/icon1_reservation.png");
}
.hpv-vaccine-flow-1-2::before {
  background-image: url("../images/medical-care/icon1_doctor.png");
}
.hpv-vaccine-flow-1-3::before {
  background-image: url("../images/medical-care/icon1_drawing blood.png");
}
.hpv-vaccine-flow-1-4::before {
  background-image: url("../images/medical-care/icon1_accounting.png");
}

.hpv-vaccine .contact-options {
  width: 70%;
  margin: 10px auto 0;
}

.hpv-vaccine .price-container01 p {
  margin-bottom: 4px;
  color: var(--pink);
  font-weight: 500;
}

.hpv-vaccine .price-item {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .hpv-vaccine .contact-options {
    width: 100%;
  }
}

.clinic-button .c-button {
  display: block;
  text-align: center;
  max-width: 250px;
  padding: 16px;
  margin: 1em 0;
  border: 1px solid var(--brown);
  border-radius: 50px;
}
