@charset "UTF-8";
/* ===============================================
# コンテナ幅
=============================================== */
/* ===============================================
# header
=============================================== */
/* ===============================================
# フォント
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* ===============================================
# ブレイクポイント
=============================================== */
/* ===============================================
# 画像ファイルパス
=============================================== */
/* ===============================================
# 共通
=============================================== */
.color_primary {
  color: #6190EF;
}

.color_gray {
  color: #9B9B9B;
}

/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
/* ===============================================
# フォントをremに変換
=============================================== */
/* ===============================================
# remのclamp
=============================================== */
/* ===============================================
# 外部アイコン
=============================================== */
/* header fixed 余白
=========================================== */
main {
  margin-top: 125px;
}
@media (max-width: 767px) {
  main {
    margin-top: 65px;
  }
}

/* 下層セクション 余白
=========================================== */
.under_inner {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .under_inner {
    padding: 60px 0;
  }
}
.under_inner section {
  padding: 120px 0 120px;
}
@media (max-width: 767px) {
  .under_inner section {
    padding: 60px 0 60px;
  }
}
.under_inner section:first-of-type {
  padding-top: 0;
}
.under_inner section:last-of-type {
  padding-bottom: 0;
}
.under_inner section.pt0 {
  padding-top: 0;
}
.under_inner section.highlight {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .under_inner section.highlight {
    padding: 60px 0;
  }
}
.under_inner section.primary_bg {
  position: relative;
  z-index: 1;
}
.under_inner section.primary_bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 25%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: -1;
}
.under_inner .privacy_sec {
  padding: 20px 0;
}

/* under_h1_title
=========================================== */
#under_title {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: none;
  /* 見出し：白背景が左から“緩急をつけて”現れる */
  /* 緩急＋オーバーシュート＋微リバウンド */
  /* 動きを控えるユーザー設定に配慮 */
}
#under_title::before {
  content: "";
  position: absolute;
  aspect-ratio: 1920/825;
  width: 100%;
  background: url("/wp-content/uploads/uder_title_bg.jpg") no-repeat center center;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  #under_title::before {
    aspect-ratio: 842/656;
    height: 100%;
    background: url("/wp-content/uploads/uder_title_bg_sp.jpg") no-repeat center center;
  }
}
#under_title h1 {
  --reveal-dur: 1s;
  /* 時間はここで調整 */
  position: relative;
  isolation: isolate;
  display: inline-block;
  padding: 0 20px 4px;
  font-size: clamp(2.6rem, 3.8067349927vw, 4.8rem);
  color: #fff;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 767px) {
  #under_title h1 {
    padding: 0 12px 1px 10px;
  }
}
#under_title h1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #6190EF;
  /* すべて白 */
  transform-origin: left center;
  /* わずかに“めくれ感”を出すなら skew を足す（不要なら 0deg で） */
  transform: scaleX(0) skewX(-4deg);
  animation: h1BgRevealDynamic var(--reveal-dur) cubic-bezier(0.2, 0.85, 0.3, 1) forwards;
  z-index: -1;
  will-change: transform;
}
@keyframes h1BgRevealDynamic {
  0% {
    transform: scaleX(0) skewX(-2deg);
  }
  /* 少し“タメ” */
  100% {
    transform: scaleX(1) skewX(0deg);
  }
  /* ピタッと停止 */
}
@media (prefers-reduced-motion: reduce) {
  #under_title h1::before {
    animation: none;
    transform: none;
  }
  #under_title h1 {
    background: #fff;
  }
}
@media (max-width: 767px) {
  #under_title {
    padding: 60px 0;
  }
}

/* under_h2_title
=========================================== */
.c-sectionHeader__title {
  font-size: clamp(2.4rem, 2.635431918vw, 3.6rem);
  line-height: 1.6;
}

.c-sectionHeader__dots {
  margin: 30px 0 70px;
}
@media (max-width: 767px) {
  .c-sectionHeader__dots {
    margin: 10px 0 40px;
  }
}

h2.custom_ttl_02 {
  font-size: clamp(2rem, 2.196193265vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

/* under_h3_title
=========================================== */
h3 {
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  h3 {
    margin-bottom: 30px;
  }
}
h3::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  background: #6190EF;
  bottom: -12px;
  left: 0;
  z-index: 1;
}

/* 共通パーツ
=========================================== */
.flex_under.column_3 {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 767px) {
  .flex_under.column_3 {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.flex_under.column_3.symptoms {
  margin-top: 30px;
  justify-content: center;
  gap: 80px;
  row-gap: 20px;
}
.flex_under.column_3.symptoms .item {
  width: 33.3333333333%;
  flex: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .flex_under.column_3.symptoms .item {
    width: 100%;
  }
}
.flex_under.column_3.symptoms .item p {
  font-weight: 600;
}
@media (max-width: 767px) {
  .flex_under.column_3.symptoms .item img {
    max-width: 200px;
  }
}

.flex_under {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .flex_under {
    flex-direction: column;
    gap: 20px;
  }
}
.flex_under div {
  flex: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.flex_under div figure {
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  .flex_under div figure img {
    max-width: 360px;
    margin: 0 auto;
  }
}

.flex_under.rev {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .flex_under.rev {
    flex-direction: column;
  }
}

.btn_center {
  text-align: center;
}
.btn_center .btn {
  display: inline-block;
  text-align: center;
  margin-top: 14px;
  font-size: 1.6rem;
  background: #6190EF;
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  max-width: 264px;
  width: 100%;
  border-radius: 9999px;
  border: 2px solid #6190EF;
  transition: all 0.3s ease-in-out;
}
.btn_center .btn:hover {
  color: #6190EF;
  background: #fff;
}

.point_list {
  padding: 20px;
  background: #fff1de;
}
.point_list span {
  background: #ec931d;
  color: #fff;
  font-weight: 600;
  padding: 0 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.point_list ul {
  display: flex;
  column-gap: 16px;
  row-gap: 3px;
  flex-wrap: wrap;
}
.point_list ul li {
  font-weight: 500;
}

.slider--multi,
.slider--single {
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 56px;
}
.slider--multi .slide,
.slider--single .slide {
  padding: 0 4px;
}
.slider--multi .slide img,
.slider--single .slide img {
  display: block;
  width: 100%;
  height: auto;
}
.slider--multi .slick-list,
.slider--single .slick-list {
  flex: auto !important;
}
.slider--multi .slick-track,
.slider--single .slick-track {
  display: flex;
  align-items: stretch;
}
.slider--multi .slick-slide,
.slider--single .slick-slide {
  height: auto;
  width: auto !important;
  position: relative;
}
.slider--multi .slick-arrow,
.slider--single .slick-arrow {
  position: absolute;
}
.slider--multi .slick-prev,
.slider--multi .slick-next,
.slider--single .slick-prev,
.slider--single .slick-next {
  position: absolute;
  bottom: 0;
  top: auto;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6190EF;
  border: none;
  cursor: pointer;
  font-size: 0;
}
.slider--multi .slick-prev:hover,
.slider--multi .slick-next:hover,
.slider--single .slick-prev:hover,
.slider--single .slick-next:hover {
  background: #2563eb;
}
.slider--multi .slick-prev::before,
.slider--multi .slick-next::before,
.slider--single .slick-prev::before,
.slider--single .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.slider--multi .slick-prev,
.slider--single .slick-prev {
  left: 50%;
  transform: translateX(-52px);
}
.slider--multi .slick-prev::before,
.slider--single .slick-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.slider--multi .slick-next,
.slider--single .slick-next {
  left: 50%;
  transform: translateX(12px);
}
.slider--multi .slick-next::before,
.slider--single .slick-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}
.slider--multi--single .slick-prev,
.slider--multi--single .slick-next,
.slider--single--single .slick-prev,
.slider--single--single .slick-next {
  width: 44px;
  height: 44px;
}
.slider--multi .slick-dots,
.slider--single .slick-dots {
  display: flex;
  gap: 10px;
  margin: 10px auto;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  justify-content: center;
}
.slider--multi .slick-dots button,
.slider--single .slick-dots button {
  background: #eef3ff;
  border: 2px solid #6190EF;
  padding: 4px;
  cursor: pointer;
  font-size: 0;
}
@media (max-width: 767px) {
  .slider--multi .slick-dots button,
  .slider--single .slick-dots button {
    gap: 10px;
  }
}
.slider--multi .slick-dots .slick-active button,
.slider--single .slick-dots .slick-active button {
  background: #6190EF;
}

.primary_box {
  padding: 6%;
  background: #eef3ff;
  border: 2px solid #6190EF;
  position: relative;
}
.primary_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 19px 19px 0 19px;
  border-color: #6190EF transparent transparent;
  translate: -50% 100%;
}
.primary_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 16.4px 16.6px 0 16.6px;
  border-color: #eef3ff transparent transparent;
  translate: -50% 100%;
}
.primary_box.arrow_none {
  position: static;
  padding: 3% 4%;
  border: 0;
}
.primary_box.element_none::before, .primary_box.element_none::after {
  content: none;
}

.img_bg {
  padding: 40px;
  background: #eef3ff;
}
@media (max-width: 767px) {
  .img_bg {
    padding: 20px;
  }
}
.img_bg img {
  width: 100%;
}

.flow_ttl {
  margin: 1.6em 0 0.6em;
  line-height: 1.6;
  font-weight: 600;
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  position: relative;
  padding: 0.28em 0 0.28em 1.2em;
  background: #eef3ff;
}
.flow_ttl::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background: linear-gradient(135deg, #3765c2 50%, #6190EF 50%);
}

.primary_box.flow {
  padding: 0;
  background: #fff;
}
.primary_box.flow .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: step;
}
.primary_box.flow .list .list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.primary_box.flow .list .step_item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  /* ← 行数増えても安定 */
  min-height: 45px;
  margin-bottom: 12px;
}
.primary_box.flow .list .step_circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* ← 文章が長くても潰れない */
}
.primary_box.flow .list .step_label {
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
}
.primary_box.flow .list .step_number {
  font-size: 16px;
  /* ← 数字だけ大きい */
  line-height: 1;
  font-weight: 700;
  margin-top: 2px;
}
.primary_box.flow .list .step_item p {
  margin: 0;
  font-size: 1.5rem;
}

.secondary_box {
  padding: 6%;
  background: #FFE4DD;
  border: 2px solid #ec931d;
  position: relative;
}
.secondary_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 19px 19px 0 19px;
  border-color: #ec931d transparent transparent;
  translate: -50% 100%;
}
.secondary_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 16.4px 16.6px 0 16.6px;
  border-color: #FFE4DD transparent transparent;
  translate: -50% 100%;
}
.secondary_box .flex_under {
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .secondary_box .flex_under {
    flex-direction: column;
  }
}
.secondary_box .flex_under p {
  font-size: clamp(1.4rem, 1.756954612vw, 2.4rem);
}

.gray_box {
  background: #F8F5F5;
  padding: 3% 4%;
}

.list_01 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list_01 li {
  padding-left: 30px;
  position: relative;
  font-size: clamp(1.4rem, 1.756954612vw, 2.4rem);
  letter-spacing: 0.04em;
}
.list_01 li::before {
  position: absolute;
  content: "";
  top: 58%;
  left: 0;
  transform: translateY(-50%);
  background: url("/wp-content/uploads/check_icon.svg");
  width: 24px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .list_01 li::before {
    top: 18px;
  }
}
.list_01 li .primary_color {
  font-size: clamp(1.8rem, 2.3426061493vw, 3.2rem);
  font-weight: 700;
  color: #6190EF;
}

.list_02 {
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list_02 li {
  list-style: disc;
}
.list_02 li::marker {
  color: #6190EF;
}

.list_03 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list_03 li span {
  margin-right: 1em;
}

.primary_color {
  color: #6190EF;
  font-weight: 700;
}

.custom_ttl {
  font-size: clamp(1.8rem, 1.4641288433vw, 2rem);
  font-weight: 500;
  padding-left: 30px;
  padding-bottom: 6px;
  position: relative;
  margin: 0.375em 0 0.8em;
}
@media (max-width: 767px) {
  .custom_ttl {
    padding-left: 24px;
  }
}
.custom_ttl::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: -2px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  background: #6190EF;
}
.custom_ttl::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6190EF;
}
.custom_ttl.bold {
  font-weight: 700;
}
.custom_ttl_02 {
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  font-weight: 700;
  padding-left: 1.2em;
  position: relative;
  margin: 1.6em 0 0.6em;
}
@media (max-width: 767px) {
  .custom_ttl_02 {
    padding-left: 0.8em;
  }
}
.custom_ttl_02::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 100%;
  background: #6190EF;
}
@media (max-width: 767px) {
  .custom_ttl_02::before {
    width: 4px;
    height: 80%;
  }
}

.sub_ttl {
  text-align: center;
  font-size: clamp(1.8rem, 2.3426061493vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 50px !important;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .sub_ttl {
    margin-top: 30px !important;
    margin-bottom: 30px;
  }
}

.marker_yellow {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.txt_center {
  text-align: center;
  font-size: clamp(1.6rem, 1.4641288433vw, 2rem);
  font-weight: 500;
}
@media (max-width: 767px) {
  .txt_center {
    text-align: left;
  }
}
.txt_center.fs {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
}
.txt_center strong {
  color: #FE4C4C;
}

.img_center {
  display: block;
  margin: 0 auto;
}

.img_table,
.comparison_table {
  width: 100%;
}
.img_table thead tr th,
.img_table tbody tr td,
.comparison_table thead tr th,
.comparison_table tbody tr td {
  text-align: center !important;
  vertical-align: middle;
  color: #fff;
  border: 1px solid #fff;
}
.img_table tr,
.comparison_table tr {
  border: 0;
}
.img_table .primary_sub,
.comparison_table .primary_sub {
  background: #67B899;
}
.img_table .primary,
.comparison_table .primary {
  background: #6190EF;
}
.img_table .primary_highlight,
.comparison_table .primary_highlight {
  background: #eef3ff;
}
.img_table .gray,
.comparison_table .gray {
  background: #F8F5F5;
}

.comparison_table thead tr th {
  color: #fff;
  padding: 1.6em 1em !important;
  width: 33.3333333333%;
}
.comparison_table tbody tr td {
  text-align: left !important;
  color: #313131;
  padding: 1em 1.4em !important;
  width: 33.3333333333%;
}
.comparison_table .gray_bright {
  background: #E9E9E9;
}

.table_scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  /* SPでぬるっと */
}

.red_color {
  color: #FF5252;
}

.txt_right {
  text-align: right !important;
}

/* 胆石症とは
=========================================== */
.about_sec .hernia_graph {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .about_sec .hernia_graph {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .about_sec .flex_under {
    gap: 40px;
  }
}
.about_sec .flex .item img {
  margin-bottom: 20px;
}
.about_sec .flex .item p {
  margin: 0;
}

/* 手術について
=========================================== */
.surgery_sec table tr {
  border-bottom: 1px solid #BCBBBB;
}
.surgery_sec table tr th,
.surgery_sec table tr td {
  text-align: left;
  padding: 0.8em 0.4em;
}
.surgery_sec .pie_chart {
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 3em 3em 2.4em;
  align-items: center;
}
@media (max-width: 767px) {
  .surgery_sec .pie_chart {
    padding: 2em 1.4em;
    flex-direction: column;
  }
}
.surgery_sec .slider_box .frame .inner {
  max-width: 100%;
  width: 100%;
  padding: 60px 10%;
}
@media (max-width: 767px) {
  .surgery_sec .slider_box .frame .inner {
    padding: 20px;
  }
}
.surgery_sec .slider_box .frame .inner img {
  margin: 0 auto;
  max-width: 400px;
}
@media (max-width: 767px) {
  .surgery_sec .slider_box .frame .inner img {
    max-width: 200px;
  }
}
.surgery_sec .slick-slide.slick-active {
  opacity: 1 !important;
  transform: scale(1);
  position: relative;
  pointer-events: all !important;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
@media (max-width: 767px) {
  .surgery_sec .slick-slide.slick-active .arrow-prev,
  .surgery_sec .slick-slide.slick-active .arrow-next {
    top: 50%;
  }
}
.surgery_sec .slick-dots {
  display: flex;
  gap: 10px;
  margin: 10px auto;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  justify-content: center;
}
.surgery_sec .slick-dots button {
  background: #eef3ff;
  border: 2px solid #6190EF;
  padding: 4px;
  cursor: pointer;
  font-size: 0;
}
@media (max-width: 767px) {
  .surgery_sec .slick-dots button {
    gap: 10px;
  }
}
.surgery_sec .slick-dots .slick-active button {
  background: #6190EF;
}

/* 治療の流れ
=========================================== */
.flow_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.flow_list .flow_item {
  background: #fff;
  position: relative;
}
.flow_list .flow_item::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  z-index: 2;
}
.flow_list .flow_item::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #eef3ff;
  z-index: 1;
}
.flow_list .flow_item:last-child::before {
  display: none;
}
.flow_list .flow_item:last-child::after {
  display: none;
}
.flow_list .flow_item .flow_head {
  display: flex;
  align-items: center;
  background: #6190EF;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
}
.flow_list .flow_item .flow_head .flow_num {
  font-size: clamp(3rem, 2.635431918vw, 3.6rem);
  font-weight: 700;
  margin-right: 1.4em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: relative;
}
.flow_list .flow_item .flow_head .flow_num::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 125%;
  top: 50%;
  right: -0.6em;
  transform: translateY(-50%);
  background: #AADDCA;
}
.flow_list .flow_item .flow_head .flow_title {
  font-size: clamp(2rem, 1.9033674963vw, 2.6rem);
  margin: 0;
  position: static;
}
.flow_list .flow_item .flow_head .flow_title::before, .flow_list .flow_item .flow_head .flow_title::after {
  content: none;
}
.flow_list .flow_item .flow_body {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border: 6px solid #eef3ff;
  border-top: 0;
}
.flow_list .flow_item .flow_body .flow_img {
  flex: 0 0 40%;
  max-width: 250px;
}
.flow_list .flow_item .flow_body .flow_img img {
  width: 100%;
  height: auto;
}
.flow_list .flow_item .flow_body .flow_text {
  flex: 1;
}
.flow_list .flow_item .flow_body .flow_text .txt_custom {
  display: inline-block;
  font-weight: 600;
  position: relative;
  border: solid 2px #ec931d;
  line-height: 1.6;
  padding: 0.4em 0.5em;
  margin: 27px 0 0.8em;
}
.flow_list .flow_item .flow_body .flow_text .txt_custom::after {
  /*タブ*/
  position: absolute;
  font-weight: 700;
  content: "CHECK";
  background: #ec931d;
  color: #fff;
  left: -2px;
  bottom: 100%;
  border-radius: 3px 3px 0 0;
  padding: 8px 7px;
  font-size: 0.7em;
  line-height: 1;
  letter-spacing: 0.05em;
}
.flow_list .flow_item .flow_body .flow_text p {
  line-height: 1.8;
  font-size: 1.6rem;
}
.flow_list .flow_item .flow_body .flow_text .btn {
  display: inline-block;
  text-align: center;
  margin-top: 14px;
  font-size: 1.6rem;
  background: #6190EF;
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  max-width: 264px;
  width: 100%;
  border-radius: 9999px;
  border: 2px solid #6190EF;
  transition: all 0.3s ease-in-out;
}
.flow_list .flow_item .flow_body .flow_text .btn:hover {
  color: #6190EF;
  background: #fff;
}
@media (max-width: 768px) {
  .flow_list .flow_item .flow_head {
    padding: 6px 20px;
  }
  .flow_list .flow_item .flow_body {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .flow_list .flow_item .flow_body .flow_img {
    flex: none;
    max-width: 220px;
  }
  .flow_list .flow_item .flow_body .flow_text p {
    font-size: 1.5rem;
  }
  .flow_list .flow_item .flow_body .flow_text .btn {
    max-width: 200px;
    font-size: 1.5rem;
    padding: 8px 24px;
    margin-top: 4px;
  }
}

/* よくある質問
=========================================== */
.faq_block {
  margin-top: 32px;
  border-top: 1px solid #6190EF;
}
.faq_block .faq_item {
  border-bottom: 1px solid #6190EF;
  background: #fff;
  transition: background 0.2s ease;
  padding-inline: 0.5em;
}
.faq_block .faq_item.is_open .faq_head .faq_toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq_block .faq_head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
}
.faq_block .faq_head .faq_icon {
  flex: 0 0 auto;
  width: 22px;
}
.faq_block .faq_head .faq_icon img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.faq_block .faq_head .faq_question {
  flex: 1 1 auto;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #313131;
}
.faq_block .faq_head .faq_toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.faq_block .faq_head .faq_toggle::before, .faq_block .faq_head .faq_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #6190EF;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq_block .faq_head .faq_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_block .faq_item.is_open .faq_head .faq_toggle::after {
  opacity: 0;
}
.faq_block .faq_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 2em;
  padding-right: 4em;
}
.faq_block .faq_body .faq_body_inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 0 20px;
}
.faq_block .faq_body .faq_body_inner .faq_icon {
  flex: 0 0 22px;
  width: 22px;
}
.faq_block .faq_body .faq_body_inner .faq_icon img {
  width: 100%;
  height: auto;
}
.faq_block .faq_body .faq_body_inner p {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
}

.mt_large {
  margin-top: 64px;
}

@media (max-width: 768px) {
  .faq_block {
    margin-top: 20px;
  }
  .faq_block .faq_head {
    gap: 16px;
    padding: 16px 0;
  }
  .faq_block .faq_head .faq_question {
    font-size: 1.5rem;
  }
  .faq_block .faq_head .faq_icon {
    width: 16px;
  }
  .faq_block .faq_body {
    padding-left: 0;
    padding-right: 1em;
  }
  .faq_block .faq_body .faq_body_inner {
    gap: 16px;
  }
  .faq_block .faq_body .faq_body_inner .faq_icon {
    flex: 0 0 auto;
    width: 16px;
  }
  .faq_block .faq_body .faq_body_inner p {
    font-size: 1.4rem;
  }
}
/* ドクター紹介
=========================================== */
.doctor_sec .doctor_flex {
  align-items: stretch;
}
@media (max-width: 767px) {
  .doctor_sec .doctor_flex {
    flex-direction: column;
  }
}
.doctor_sec .doctor_flex .img_area {
  padding: 14px;
  border: 6px solid #eef3ff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.doctor_sec .doctor_flex .img_area::before {
  position: absolute;
  content: "";
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background: #6190EF;
  border: 2px solid #6190EF;
  transition: all 0.3s ease-in-out;
}
.doctor_sec .doctor_flex .img_area::after {
  content: "";
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.doctor_sec .doctor_flex .img_area:hover {
  opacity: 1;
  border: 6px solid #6190EF;
}
.doctor_sec .doctor_flex .img_area:hover::before {
  background: #fff;
}
.doctor_sec .doctor_flex .img_area:hover::after {
  border-top: 2px solid #6190EF;
  border-right: 2px solid #6190EF;
}
.doctor_sec .doctor_flex .img_area:hover img {
  transform: scale(1.02);
}
.doctor_sec .doctor_flex .img_area figure {
  overflow: hidden;
  height: 100%;
}
.doctor_sec .doctor_flex .img_area figure img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  height: 100%;
  object-fit: cover;
  max-width: 380px;
}
@media (max-width: 767px) {
  .doctor_sec .doctor_flex .img_area figure img {
    max-width: 100%;
  }
}
.doctor_sec .doctor_flex .img_area p {
  font-size: clamp(1.4rem, 1.317715959vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
}
.doctor_sec .doctor_flex .img_area p .name {
  font-size: clamp(1.8rem, 1.756954612vw, 2.4rem);
  padding-right: 0.3em;
}
.doctor_sec .doctor_flex .award_box .ttl {
  margin: 1.6em 0 0.6em;
  line-height: 1.6;
  font-weight: 600;
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  position: relative;
  padding: 0.28em 0 0.28em 1.2em;
  background: #eef3ff;
}
.doctor_sec .doctor_flex .award_box .ttl::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background: linear-gradient(135deg, #3765c2 50%, #6190EF 50%);
}
.doctor_sec .doctor_flex .slider--multi {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .doctor_sec .doctor_flex .slider--multi {
    padding-bottom: 56px;
  }
}
.doctor_sec .doctor_info {
  padding: 20px;
}
.doctor_sec .doctor_info .flex_under {
  gap: 18px;
}
@media (max-width: 767px) {
  .doctor_sec .doctor_info .flex_under {
    flex-direction: row;
    gap: 12px;
  }
}
.doctor_sec .doctor_info .flex_under .tab {
  color: #fff;
  background: #6190EF;
  padding: 0 10px 1px;
  height: max-content;
}
.doctor_sec .doctor_info .txt {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .doctor_sec .flex_under.gap40 {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .doctor_sec .flex_under {
    flex-direction: column;
    gap: 40px;
  }
}
.doctor_sec .flex_under .scroll_table {
  overflow-y: scroll;
  max-height: 400px;
  border: 1px solid #d7d6d6;
  position: relative;
}
.doctor_sec .flex_under .scroll_table::before {
  content: "下にスクロールできます";
  position: sticky;
  padding-top: 4px;
  bottom: 8px;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #313131;
  padding-bottom: 8px;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}
.doctor_sec .flex_under .scroll_table tr {
  border-top: 1px solid #6190EF;
}
.doctor_sec .flex_under .scroll_table tr th {
  width: 70px;
  line-height: 1.4;
  padding: 14px 14px 14px 14px;
  color: #6190EF;
  text-align: left;
  font-weight: 700;
  background-color: #f7f8fa;
}
@media (max-width: 767px) {
  .doctor_sec .flex_under .scroll_table tr th {
    display: block;
    width: 100%;
  }
}
.doctor_sec .flex_under .scroll_table tr td {
  padding: 14px 14px 14px 26px;
  font-size: 1.4rem;
  overflow-y: scroll;
  display: block;
}
@media (max-width: 767px) {
  .doctor_sec .flex_under .scroll_table tr td {
    border-top: 1px solid #6190EF;
    display: block;
    width: 100%;
    padding: 14px 14px 14px 14px;
  }
}
.doctor_sec .flex_under .scroll_table tr td span {
  font-weight: 600;
}
.doctor_sec .other_doctor {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  row-gap: 40px;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .doctor_sec .other_doctor {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.doctor_sec .other_doctor .other_doctor-box {
  overflow: hidden;
}
.doctor_sec .other_doctor .link {
  display: block;
  padding: 10px;
  border: 6px solid #eef3ff;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.doctor_sec .other_doctor .link::before {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #6190EF;
  border: 2px solid #6190EF;
  transition: all 0.3s ease-in-out;
}
.doctor_sec .other_doctor .link::after {
  content: "";
  position: absolute;
  bottom: 19px;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.doctor_sec .other_doctor .link:hover {
  opacity: 1;
  border: 6px solid #6190EF;
}
.doctor_sec .other_doctor .link:hover::before {
  background: #fff;
}
.doctor_sec .other_doctor .link:hover::after {
  border-top: 2px solid #6190EF;
  border-right: 2px solid #6190EF;
}
.doctor_sec .other_doctor .link:hover img {
  transform: scale(1.02);
}
.doctor_sec .other_doctor .link .post {
  display: flex;
  gap: 1.4em;
}
.doctor_sec .other_doctor .link .post figure {
  overflow: hidden;
}
.doctor_sec .other_doctor .link .post figure img {
  display: block;
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
  aspect-ratio: 200/290;
  transition: transform 0.4s ease-out;
  will-change: transform;
  backface-visibility: hidden;
}
.doctor_sec .other_doctor .link .post .post_txt .tab {
  font-size: 1.3rem;
  color: #fff;
  background: #6190EF;
  padding: 0 10px 1px;
  height: max-content;
}
.doctor_sec .other_doctor .link .post .post_txt .name {
  font-size: clamp(1.8rem, 1.4641288433vw, 2rem);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 0 0 6px;
}
.doctor_sec .other_doctor .link .post .post_txt .specialty {
  font-size: clamp(1.3rem, 1.0248901903vw, 1.4rem);
  line-height: 1.5;
  font-weight: 400;
  margin: 3px 0 0;
}
.doctor_sec .other_doctor .disc {
  margin-top: 10px;
  height: 100%;
}
.doctor_sec .other_doctor .disc .disc_ttl {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  width: 100%;
  padding: 4px 18px;
  background: #6190EF;
  color: #fff;
  position: relative;
}
.doctor_sec .other_doctor .disc .disc_ttl::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 1px;
  background: #fff;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.doctor_sec .other_doctor .disc ul {
  padding: 18px 20px;
  background: #eef3ff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.doctor_sec .other_doctor .disc ul li {
  font-size: 1.4rem;
}

/* お問い合わせ
=========================================== */
.contact_sec {
  /* XOカレンダー */
}
.contact_sec .calendar_pc {
  display: block;
}
.contact_sec .calendar_sp {
  display: none;
}
@media (max-width: 768px) {
  .contact_sec .calendar_pc {
    display: none;
  }
  .contact_sec .calendar_sp {
    display: block;
  }
}
.contact_sec .xo-event-calendar {
  font-family: "Noto Sans JP" !important;
  padding: 0 3em;
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .contact_sec .xo-event-calendar {
    padding: 0;
  }
}
.contact_sec .xo-event-calendar .xo-months {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact_sec .xo-event-calendar .xo-months .xo-month-wrap {
  width: 100%;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .contact_sec .xo-event-calendar .xo-months .xo-month-wrap {
    width: 100%;
    margin: 0;
  }
}
.contact_sec .xo-event-calendar .month-header {
  padding-block: 10px;
  padding-inline: 1em;
  margin: 0 !important;
}
.contact_sec .xo-event-calendar .month-header .calendar-caption {
  text-align: left !important;
  font-weight: 700;
  font-size: 1.8rem;
  order: 1;
}
.contact_sec .xo-event-calendar .month-header .month-prev {
  order: 2;
}
.contact_sec .xo-event-calendar .month-header .month-next {
  order: 3;
}
.contact_sec .xo-event-calendar table.xo-month button span.nav-prev,
.contact_sec .xo-event-calendar table.xo-month button span.nav-next {
  width: 10px !important;
  height: 10px !important;
}
.contact_sec .xo-event-calendar .holiday-little {
  position: relative;
}
.contact_sec .xo-event-calendar .holiday-little::after {
  position: absolute;
  content: "▲";
  top: 2%;
  left: 48%;
  transform: translate(-50%);
  color: #ec931d;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP" !important;
}
@media (max-width: 768px) {
  .contact_sec .xo-event-calendar .holiday-little::after {
    font-size: 1.6rem;
  }
}
.contact_sec .xo-event-calendar .holiday-open {
  position: relative;
}
.contact_sec .xo-event-calendar .holiday-open::after {
  position: absolute;
  content: "●";
  top: 2%;
  left: 48%;
  transform: translate(-50%);
  color: #6190EF;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP" !important;
}
@media (max-width: 768px) {
  .contact_sec .xo-event-calendar .holiday-open::after {
    font-size: 1.6rem;
  }
}
.contact_sec .xo-event-calendar .holiday-close {
  position: relative;
}
.contact_sec .xo-event-calendar .holiday-close::after {
  position: absolute;
  content: "×";
  top: 2%;
  left: 48%;
  transform: translate(-50%);
  color: red;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP" !important;
}
@media (max-width: 768px) {
  .contact_sec .xo-event-calendar .holiday-close::after {
    font-size: 1.6rem;
  }
}
.contact_sec .xo-event-calendar table.xo-month .month-dayname-space {
  height: 1.8em;
}
.contact_sec .xo-event-calendar table.xo-month > thead th {
  padding: 8px 0 !important;
}
.contact_sec .xo-event-calendar .holiday-titles {
  display: none;
  justify-content: center;
  gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 20px;
}
.contact_sec .cta_box {
  padding: 3em 2em;
  background: #eef3ff;
  text-align: center;
}
@media (max-width: 767px) {
  .contact_sec .cta_box {
    padding: 2em 1.4em;
  }
}
.contact_sec .cta_box a {
  margin: 0 auto 20px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 2.9282576867vw, 4rem);
  line-height: 1;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease-in-out;
}
.contact_sec .cta_box a:hover {
  color: #6190EF;
  opacity: 1;
}
.contact_sec .cta_box a img {
  max-width: 28px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact_sec .cta_box a img {
    max-width: 22px;
  }
}
@media (max-width: 767px) {
  .contact_sec .cta_box p {
    text-align: left;
  }
}
.contact_sec .form_area {
  margin-top: 40px;
}
.contact_sec .form_area .row dl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.contact_sec .form_area .row dl .bg_gray {
  background: #F6F6F6;
}
@media (max-width: 767px) {
  .contact_sec .form_area .row dl .bg_gray {
    background: transparent;
  }
}
.contact_sec .form_area .row dl > div {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact_sec .form_area .row dl > div {
    flex-direction: column;
    border: none;
  }
}
.contact_sec .form_area .row dl > div dt,
.contact_sec .form_area .row dl > div dd {
  padding: 20px;
  font-size: 1.6rem;
}
.contact_sec .form_area .row dl > div dt {
  width: 30%;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact_sec .form_area .row dl > div dt {
    width: 100%;
    background: transparent;
    padding: 16px;
    background: #F6F6F6;
  }
}
.contact_sec .form_area .row dl > div dt p {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.contact_sec .form_area .row dl > div dt .required {
  display: inline-block;
  background: #6190EF;
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 8px 2px;
  font-weight: 600;
}
.contact_sec .form_area .row dl > div dt .any {
  display: inline-block;
  background: #ec931d;
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 8px 2px;
  font-weight: 600;
}
.contact_sec .form_area .row dl > div dd {
  width: 70%;
}
@media (max-width: 767px) {
  .contact_sec .form_area .row dl > div dd {
    width: 100%;
    padding: 8px 0 26px;
  }
}
.contact_sec .form_area .row dl > div dd p {
  margin: 0;
}
.contact_sec .form_area .row dl > div dd input[type=text],
.contact_sec .form_area .row dl > div dd input[type=email],
.contact_sec .form_area .row dl > div dd input[type=tel],
.contact_sec .form_area .row dl > div dd input[type=number],
.contact_sec .form_area .row dl > div dd select,
.contact_sec .form_area .row dl > div dd textarea {
  width: 100%;
  border: 1px solid #ccd4d9;
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  font-size: 1.6rem;
  padding: 12px;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out;
}
.contact_sec .form_area .row dl > div dd input[type=text]:focus,
.contact_sec .form_area .row dl > div dd input[type=email]:focus,
.contact_sec .form_area .row dl > div dd input[type=tel]:focus,
.contact_sec .form_area .row dl > div dd input[type=number]:focus,
.contact_sec .form_area .row dl > div dd select:focus,
.contact_sec .form_area .row dl > div dd textarea:focus {
  outline: none;
  border-color: #6190EF;
}
.contact_sec .form_area .row dl > div dd input[type=text]::placeholder,
.contact_sec .form_area .row dl > div dd input[type=email]::placeholder,
.contact_sec .form_area .row dl > div dd input[type=tel]::placeholder,
.contact_sec .form_area .row dl > div dd input[type=number]::placeholder,
.contact_sec .form_area .row dl > div dd select::placeholder,
.contact_sec .form_area .row dl > div dd textarea::placeholder {
  color: #aaa;
}
.contact_sec .form_area .row dl > div dd textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}
.contact_sec .form_area .row dl > div dd .note {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .contact_sec .form_area .row dl > div dd .note {
    font-size: 1.4rem;
  }
}
.contact_sec .form_area .age_wrap p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_sec .form_area .age_wrap p span {
  width: 100%;
}
.contact_sec .form_area .age_wrap input {
  width: 200px;
}
.contact_sec .form_area .age_wrap .age_suffix {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .contact_sec .form_area .age_wrap input {
    width: 100%;
  }
}
.contact_sec .form_area .date_flex {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .contact_sec .form_area .date_flex {
    flex-direction: column;
    gap: 8px;
  }
}
.contact_sec .form_area .date_flex p {
  display: flex;
  gap: 10px;
}
.contact_sec .form_area select.custom-select-box {
  appearance: none;
  background: url("/wp-content/uploads/icon_select_arrow.svg") no-repeat right 12px center/12px auto, #fff;
  cursor: pointer;
}
.contact_sec .form_area .privacy_row {
  text-align: left;
  justify-content: center !important;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact_sec .form_area .privacy_row {
    margin-top: 0;
  }
}
.contact_sec .form_area .privacy_row .wpcf7-list-item {
  margin: 0;
}
.contact_sec .form_area .privacy_row dt {
  display: none;
}
.contact_sec .form_area .privacy_row dd {
  padding: 20px;
  background: #fff;
}
.contact_sec .form_area .privacy_row dd label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #313131;
  cursor: pointer;
  justify-content: center;
}
.contact_sec .form_area .privacy_row dd label input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  position: relative;
}
.contact_sec .form_area .privacy_row dd label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #6190EF;
  border-bottom: 2px solid #6190EF;
  transform: rotate(45deg);
}
.contact_sec .form_area .btn_wrapper {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .contact_sec .form_area .btn_wrapper {
    margin-top: 0;
  }
}
.contact_sec .form_area .btn_wrapper .primary-btn input[type=submit] {
  display: inline-block;
  padding: 16px 80px;
  background: #6190EF;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact_sec .form_area .btn_wrapper .primary-btn input[type=submit]:hover {
  opacity: 0.85;
}
.contact_sec .form_area .btn_wrapper .primary-btn input[type=submit]:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.contact_sec .wpcf7-spinner {
  display: block;
}

/* sitemap
=========================================== */
.sitemap-block .sitemap-pages li {
  padding: 20px 0;
  border-bottom: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .sitemap-block .sitemap-pages li {
    padding: 12px 0;
  }
}
.sitemap-block .sitemap-pages li a {
  padding-left: 2.4em;
  position: relative;
  font-size: clamp(1.6rem, 1.4641288433vw, 2rem);
}
.sitemap-block .sitemap-pages li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #6190EF;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.sitemap-block .sitemap-pages li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: left 0.3s ease, transform 0.3s ease;
}

/* プライバシーポリシー
=========================================== */
.privacy_sec .pribacy_ttl {
  font-size: 1.8rem;
  font-weight: 500;
}
.privacy_sec .normal_list li {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .privacy_sec .normal_list li {
    font-size: 1.5rem;
  }
}
.privacy_sec ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
.privacy_sec ul li span {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .privacy_sec ul li span {
    font-size: 1.5rem;
  }
}

/* gallstones age chart
==================================== */
#gallstonesAgeChart {
  display: block;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  height: 600px;
  /* タブレット */
  /* SP（375px想定） */
}
@media (max-width: 768px) {
  #gallstonesAgeChart {
    height: 420px;
  }
}
@media (max-width: 400px) {
  #gallstonesAgeChart {
    height: 260px;
  }
}

.symptoms_sec h3 {
  text-align: center;
}
.symptoms_sec h3::after {
  left: 50%;
  transform: translateX(-50%);
}

#info {
  padding: 60px 0 100px;
  background: #eef3ff;
}/*# sourceMappingURL=under.css.map */