@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
    text-decoration: none; /* 下線を非表示にする */
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Android Chrome対策 */
  text-size-adjust: 100%;
}

body {
  font-family: 
    "Noto Sans JP",
    -apple-system, BlinkMacSystemFont, /* iOS/Mac */
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", /* Mac日本語 */
    "Yu Gothic", "YuGothic", /* Windows日本語 */
    "Segoe UI", /* Windows */
    sans-serif; /* フォールバック */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  color: #494949;
  background: #f5f5f5;
}


/* SP専用表示 */
.sp-only {
  display: block;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}


/* PC対応: コンテンツを中央寄せ */
.wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
}


/* ヘッダー */
.header {
  background: white;
  padding: 0 0 0 1.0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 41px;
}


.header-logo {
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo img {
  width: 110px;
  height: auto;
}

.menu-btn {
    background: #034095;
    color: white;
    border: none;
    padding: 0.65rem 0.42rem;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  display: block;
  width: 1.6rem;
  height: 0.125rem;
  background: white;
  transition: all 0.3s ease;
}

.menu-btn.active {
    position: fixed;
    right: 0rem;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 999999;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

/* メニューオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 25rem;
  height: 100vh;
  background: linear-gradient(180deg, #034095 0%, #1e4a7a 100%);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding-bottom: 3.75rem;
  /* opacity: 0.93; */
}

.side-menu.active {
  right: 0;
}

.menu-header {
  padding: 1.5rem 1.5rem 0;
  text-align: right;
  display: block;
}

.menu-close {
  background: transparent;
  border: none;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  transition: transform 0.3s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
}

/* 参考サイトの実装方式: ::beforeと::afterで×マークを作成 */
.menu-close-line {
  display: block;
  position: relative;
  width: 28px;
  height: 2px;
  background-color: transparent; /* メニューが開いている時は真ん中の線を透明に */
}

.menu-close-line::before,
.menu-close-line::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}

.menu-close-line::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-close-line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* アクセシビリティ用の非表示クラス */
.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-items {
  padding:0 1.25rem 1.3rem;
  margin-top: 1.5rem;
}

.menu-item {
  border-bottom: 0.0625rem dotted rgba(255, 255, 255, 0.3);
  padding: 1.25rem 0;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-link {
  color: white;
  text-decoration: none;
  font-size: 1.0rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0.9;
}

.menu-arrow {
  background: #ff9933;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0; /* Hide text */
  flex-shrink: 0;
  margin-left: 0.9375rem;
}

.menu-arrow::after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin-left: -0.1rem;
}

.menu-cta-section {
  padding: 1.875rem 1.25rem;
  margin-top: 1.875rem;
}

.menu-cta-bubble {
  background: linear-gradient(135deg, #ffb366 0%, #ff9933 100%);
  color: white;
  padding: 0.9375rem 1.875rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 1.25rem 1.25rem 0 0;
  margin: 0 auto;
  position: relative;
}

.menu-cta-bubble::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 0.625rem solid #ff9933;
}

.menu-cta-button {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  padding: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  display: block;
  border-radius: 0 0 0.75rem 0.75rem;
  margin-top: 0.625rem;
}

.menu-banner {
  padding: 0.2rem 1.25rem 4.5rem;
}

.menu-banner img {
  width: 100%;
  height: auto;
}

/* メインビジュアル */
.hero {
  background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
  padding: 1.5rem 1.42rem 0.0rem;
  text-align: center;
}

.hero-badge {
  /* background: #034095; */
  color: #333333;
  display: inline-block;
  padding: 0.3rem 0rem;
  border-radius: 1.25rem;
  font-size: 1.0rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  letter-spacing: 1.2px;
  width: 100%;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #034095;
  line-height: 1.4;
  margin-bottom: 1.5625rem;
  width: 100%;
  margin: 0 auto;
}

.hero-title img {
    max-width: 104%;
    height: auto;
    margin: 0 -1rem auto;
}

.hero-title .large {
  font-size: 2.25rem;
}

.hero-image-area {
  position: relative;
  margin: 0 0rem 1.25rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.speech-bubble {
  position: absolute;
  background-image: url(../images/fukidashi.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.5rem 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #444;
  line-height: 1.35;
  width: 140px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.bubble-1 {
  top: -35%;
  left: -2%;
  font-size: 1.05rem;
}

.bubble-2 {
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
}

.bubble-3 {
  top: -35%;
  right: -2%;
}

.side-text {
  position: absolute;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
  text-align: left;
  z-index: 5;
}

.side-left {
  bottom: 55%;
  left: -1%;
  text-align: left;
}

.side-right {
  bottom: 55%;
  right: -1%;
  text-align: left;
}

#totop {
width: 40px;
height: 40px;
bottom: 125px;
right: 10px;
position: fixed;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
z-index: 999;
}

#totop.is-show {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 480px) {
  .hero-image-area {
    margin-top: 8.0rem;
  }

  .speech-bubble {
    padding: 1.1rem 0rem 1.3rem;
    font-size: 0.8rem;
    width: 105px;
    height: 85px;
    line-height: 1.3;
  }

  .bubble-1 {
    top: -63%;
    font-size: 1.0rem;
    padding: -2rem -1px 0 0;
    line-height: 1.45;
    left: -0.3rem;
    width: 32%;
    padding-bottom: 1.6rem;
  }

  .bubble-2 {
    top: -63%;
    width: 31%;
    padding-bottom: 2rem;
    letter-spacing: -0.05rem;
  }
}

.bubble-3 {
    top: -63%;
    width: 33.5%;
    padding-bottom: 1.7rem;
    line-height: 1.4;
    font-size: 0.75rem;
    letter-spacing: -0.3px;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.625rem;
}

/* 導入テキスト */
.intro-section {
  padding: 0.0rem 1.25rem;
  background: white;
  text-align: center;
}

.intro-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #034095;
  margin-bottom: 1.25rem;
  text-align: center;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.0rem;
}

.highlight-blue {
  color: #034095;
  font-weight: 700;
}

/* 導入02 */
.cta-section {
  padding: .75rem 1.25rem 1.5rem;
  background: white;
}

.cta-button {
    display: block;
    background: linear-gradient(135deg, #1e4a7a 0%, #034095 100%);
    color: white;
    padding: 1.25rem 0.5em;
    text-align: center;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.85;
}

.intro-text02 {
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: 0.7px;
}

/* 目次アコーディオンメニュー */
.accordion-section {
  padding: 0.8rem 1.25rem;
  background: #fff9f0;
}

.accordion-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #e07b39;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accordion-item {
  background: transparent;
  margin-bottom: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border-bottom: 0.0625rem dotted #e07b39;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
    padding: 0.9rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: #333;
}

.accordion-number {
  color: #e07b39;
  margin-right: 0.5rem;
}

.accordion-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #e07b39;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.accordion-arrow::after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(135deg);
  margin-top: -0.15rem;
}

/* 目次のコンテンツ部分（開閉する部分） */
    .accordion-content {
      max-height: 1000px;
      overflow: hidden;
      transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
      opacity: 1;
    }
    
    .accordion-content.closed {
      max-height: 0;
      opacity: 0;
      transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
    }

/* 治療内容セクション */
.treatment-section {
  padding: 2.5rem 1.25rem;
  background: #E6EFFF;
}


/* 治療効果セクション */
.effect-section {
  padding: 2.5rem 1.25rem;
  background: #F2F7FF;
}

.section-title {
    font-size: 3.56rem;
    font-weight: 700;
    color: #034095;
    text-align: center;
    margin-bottom: 2.1875rem;
    position: relative;
    line-height: 1.2;
    background-image: url(../images/bg_question.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 5rem auto;
    padding:2.5rem 0 1.9rem 0;
}

.section-title br {
    display: none;
}

.section-title-sub {
    font-size: 2.0rem;
    font-weight: 700;
    color: #034095;
    text-align: center;
    position: relative;
    display: block;
    margin-top: 0.3rem;
}

.section-subtitle {
  display: none;
}

h2.section-title02{
    font-size: 2.0rem;
    font-weight: 700;
    color: #034095;
    text-align: center;
    margin-bottom: 2.1875rem;
    position: relative;
    line-height: 1.28;
    background-image: url(../images/bg_question.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 5rem auto;
    padding:2.5rem 0 1.9rem 0;
}

h2.section-title02 br{
  display: block;
}

h2.section-title03{
    font-size: 2.9rem;
    font-weight: 700;
    color: #034095;
    text-align: center;
    margin-bottom: 2.1875rem;
    position: relative;
    line-height: 1.2;
    background-image: url(../images/bg_question.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 5rem auto;
    padding:2.5rem 0 1.9rem 0;
}

/* 安心サポートセクション */
.support-section{
  padding: 2.5rem 1.25rem;
  background: #FFFFFF;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
}

.support-section .content-image{
  width: 100%;
}

.reliable-list{
  background:#FFF3EA;
  width: 100%;
  max-width: 660px;
  margin: 0 auto 2.5rem;
  padding: 0.9rem 0.85rem 1.5rem;
  border: 0.4rem double #F19A4B;
  text-align: left;
}

.reliable-desc{
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6rem;
  margin-left: 0.9rem;
  margin-top: 0.3rem;
}

.reliable-list .list-item{
  margin-bottom: 1.25rem;
  color: #494949;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6rem;
}

.reliable-list .list-item:last-child{
  margin-bottom: 0;
}

.reliable-list .list-item .list-icon{
  width: 2.5rem;
}

.reliable-title{
  font-size: 1.3rem;
  font-weight: 700;
}

.reliable-title::before{
  content: "";
  display: inline-block;
  background-image: url(../images/reliable.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.7rem;
  height: 3.7rem;
  vertical-align: middle;
}


/* Q&Aブロック */
.qa-block {
  background: white;
  width: 100%;
  max-width: 660px;
  margin: 0 auto 2.5rem;
  padding: 2.0rem 1.25rem 1.0rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.qa-block.accordion {
  padding: 0;
  border: 2.5px solid #034095;
  box-shadow: 0 7px 0 #BBCAE1;
}

.qa-header {
  padding:1.25rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
}

.qa-content {
  display: none;
  padding: 0 1.25rem 2.0rem 1.25rem;
}

.qa-block.active .qa-content {
  display: block;
}

.qa-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  flex-shrink: 0;
}

.qa-toggle-icon::before,
.qa-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #034095;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.qa-toggle-icon::before {
  width: 100%;
  height: 3px;
}

.qa-toggle-icon::after {
  width: 3px;
  height: 100%;
}

.qa-block.active .qa-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.question {
  background: transparent;
  color: #034095;
  padding: 0;
  border-radius: 0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0; /* Remove bottom margin for header layout */
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  line-height: 1.3;
}


.question::before {
    content: "Q";
    background: #034095;
    color: white;
    width: 3.0rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.67rem;
    flex-shrink: 0;
    padding-bottom: 0.33rem;
    padding-top: 0.25rem;
}

.answer-text {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5625rem;
    margin-top: 1.2rem;
}

.answer-text02 {
    margin-bottom: 1.5rem;
    /* margin-top: 0.6rem; */
}

.answer-text03 {
    margin-top: 2rem;
}

/* アイコングリッド */
.icon-grid {
  display: flex;
  gap: 0.9375rem;
  margin-bottom: 0;
}

.icon-item {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.icon-item img {
  width: 100%;
  height: auto;
}

.icon-circle {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #ffb366 0%, #ff9933 100%);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.625rem;
  line-height: 1.3;
}

.icon-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #333;
}

/* 図解ボックス */
.diagram-box {
  /* background: #f5f5f5; */
  padding: 1.0rem;
  margin-bottom: 1.5625rem;
  text-align: center;
}

div.movie {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

.video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.movie img.play-btn {
    display: block;
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.diagram-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.9375rem;
}

p.shourei_ttl {
    font-size: 1.6rem;
    letter-spacing: 1.2px;
}

.diagram-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #034095;
  margin-bottom: 0.9375rem;
  text-align: center;
}

.diagram-placeholder {
  width: 100%;
  height: 11.25rem;
  background-color: #dbe9f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
  border-radius: 0.5rem;
}

/* Case Study Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    margin: 1.5rem 0;
    /* overflow: hidden; Removed to allow buttons outside */
    padding-bottom: 1.5rem; /* Space for pagination */
}

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #034095;
    margin-top: 0.5rem;
    font-weight: 500;
}

.slide-comment {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1.0rem;
    text-align: left;
}

.comment-title {
    font-weight: 700;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #034095;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.slider-prev {
    left: -1rem;
    background: #168CDB;
}

.slider-next {
    right: -1rem;
}

.slider-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.slider-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: #034095;
}

/* 画像付きコンテンツ */
.content-with-image {
  /* margin-bottom: 1.5625rem; */
}

.content-image {
  width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
}

/* 3アイコングリッド（ダウンタイム用） */
.downtime-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5625rem;
}

.downtime-icon {
  flex: 1;
  text-align: center;
}

.downtime-circle {
  width: 4.375rem;
  height: 4.375rem;
  background: linear-gradient(135deg, #ffd699 0%, #ffc266 100%);
  border-radius: 50%;
  margin: 0 auto 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #333;
  padding: 0.5rem;
  line-height: 1.2;
}

.downtime-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
}

/* フッターCTAボタン */
.footer-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  /* box-shadow: 0 -0.1875rem 0.9375rem rgba(0, 0, 0, 0.15); */
}

@media (min-width: 768px) {
  .footer-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 660px;
  }
}

.cta-bubble {
  background: linear-gradient(135deg, #ffb366 0%, #ff9933 100%);
  color: white;
  padding: 0.75rem 1.875rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}

.cta-bubble::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 0.625rem solid #ff9933;
}

.cta-main-button {
  background: transparent;
  color: white;
  padding: 0;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 900;
  text-decoration: none;
  display: block;
  border: none;
  cursor: pointer;
}

.cta-main-button02 {
  background: ;
  color: white;
  padding: 0;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 900;
  text-decoration: none;
  display: block;
  border: none;
  cursor: pointer;
}

.cta-main-button img {
  width: 100%;
  height: auto;
  display: block;
  position: fixed;
  bottom: -1px;
}

/* コピーライト */
.copyright {
  background: #034095;
    color: #FFFFFF;
    text-align: center;
    padding: 1.2rem 0 5.0rem;
    font-size: 0.8rem;
    margin-bottom: 2.05rem;
    font-weight: 500;
}


/* 文字詰め調整 */
.tight-kerning {
    margin-right: -0.4em;
}

.tight-kerning02 {
    margin-left: -0.4em;
}


@media (min-width: 768px) {
  .wrapper {
    max-width: 660px;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  }

  .hero {
  background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
  padding: 1.875rem 1.65rem 0.0rem;
  text-align: center;
}

.hero-badge {
  /* background: #034095; */
  color: #333333;
  display: inline-block;
  padding: 0;
  border-radius: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1.2px;
  width: 72%;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #034095;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  width: 100%;
  margin: 0 auto 2.5rem;
}

.hero-title img {
  max-width: 90%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-title .large {
  font-size: 2.25rem;
}

.hero-image-area {
  position: relative;
  margin:  0rem 1.25rem;
  margin-top: 7rem;
}

.hero-image {
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.side-text {
  position: absolute;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
  text-align: left;
  z-index: 5;
}

.side-left {
  bottom: 55%;
  left: -1%;
  text-align: left;
}

.side-right {
  bottom: 55%;
  right: -1%;
  text-align: left;
}

}

/* 費用セクションの価格表示 */
.pricing-info {
    margin: 1.5rem 0;
    text-align: center;
    border: 1px solid #d4e9ff;
    border-radius: 0.5rem;
    overflow: hidden;
}

.pricing-header {
    background: #e6efff;
    padding: 1rem;
    font-weight: 700;
    color: #444;
    line-height: 1.5;
    font-size: 1.1rem;
}

.pricing-body {
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
    line-height: 1.5;
}

.pricing-cost {
    font-weight: 700;
    color: #cc0000;
    font-size: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-val {
    font-size: 2.0rem;
    line-height: 1;
    font-family: inherit;
}

@media (min-width: 768px) {
    .pricing-body {
        flex-direction: row;
        gap: 1.5rem;
    }
    .pricing-label {
        text-align: left;
    }
}

/* 支払い方法セクション */
.payment-methods {
    background: #fff;
    margin-top: 1.5rem;
}

.payment-header {
    background: #034095;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-options {
    padding: 1.5rem 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    
}

.payment-options img {
    width: 100%;
}

.payment-box {
    background: #f5f5f5;
    border-radius: 0.5rem;
    width: 48%;
    padding: 1.5rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-icon {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.payment-name {
    font-weight: 700;
    color: #444;
    font-size: 1rem;
}

.payment-name .note {
    font-size: 0.8rem;
    vertical-align: super;
}

.credit-section {
    text-align: center;
    padding: 1rem;
}

.credit-title {
    font-weight: 700;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.credit-logos {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.payment-notes {
    padding: 0 1rem 1.5rem;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    text-align: left;
}

/* Customer Voice Section */
.voice-section {
    margin-top: 2rem;
}

.voice-nav-images {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.voice-nav-images img {
    width: 30%;
    max-width: 100px;
    height: auto;
    transition: opacity 0.3s;
}

.voice-nav-images img.active {
    opacity: 1 !important;
}

.voice-card {
    background: #fff9f0; /* Beige background */
    border-radius: 1rem;
    padding: 2rem 0.8rem 1.5rem;
    text-align: center;
    position: relative;
    border: 1px solid #ffeebb;
    margin: 0.5rem 0 0 0; /* Space for shadow/border */
}

.voice-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #034095;
    color: white;
    padding: 0.5rem 1.0rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.voice-title {
    font-size: 1.25rem;
    color: #034095;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.voice-img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 1rem;
}

.voice-content {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: left;
    margin-bottom: 1rem;
    position: relative; /* For speech bubble arrow */
    margin-top: 1.5rem; /* Space for the arrow */
}

.voice-content::before {
    content: "";
    position: absolute;
    top: -10px; /* Adjust according to arrow size */
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent white transparent;
}

.voice-meta {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.voice-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.voice-footer {
    color: #e07b39; /* Orange */
    font-weight: 700;
    font-size: 1rem;
}

.superscript {
  font-size: 0.5rem; /* 文字サイズを小さく */
}


.pc-br {
  display: none;
}

/* PC対応  */
@media (min-width: 768px) {
  /* ヘッダー */
  .header {
    padding: 0 0 0 1.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
  }

  .header-logo {
    width: 100px;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
  }

.header-logo img {
    width: 110px;
    height: auto;
}

 /* FV吹き出し */
.speech-bubble {
  position: absolute;
  background-image: url(../images/fukidashi.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.5rem 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #444;
  line-height: 1.35;
  width: 140px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  margin-top: -2rem;
}

.bubble-1 {
  top: -35%;
  left: 5%;
  font-size: 1.25rem;
  line-height: 1.4;
}

.bubble-2 {
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0 1.38rem;
  font-size: 1.1rem;
}

.bubble-3 {
  top: -35%;
  right: 5%;
  padding: 0 0 1rem 0;
  line-height: 1.5;
  font-size: 0.98rem;
}


  /* メニュー */
  .menu-btn {
    display: none;
  }
  
  .intro-text{
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
    margin-top: 1.5rem; /* Space for the arrow */
  }

  .content-image {
  width: 85%;
  height: auto;
  /* border-radius: 0.5rem; */
  margin-bottom: 1.25rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.support-section .content-image{
  width: 85%;
}

.cta-section {
    padding: .75rem 1.25rem 1.5rem;
    background: white;
    width: 90%;
    margin:0 auto;
}

.cta-button {
    display: block;
    background: linear-gradient(135deg, #1e4a7a 0%, #034095 100%);
    color: white;
    padding: 1.25rem 0.5em;
    text-align: center;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5;
    box-shadow: 0 0.25rem 0.75rem rgba(44, 95, 158, 0.3);
}

.intro-text02 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.accordion-header {
    padding: 0.9rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

.accordion-section {
    padding: 1.2rem 2.0rem;
    background: #fff9f0;
    margin-top: 2rem;

}

.section-title {
    font-size: 4.56rem;
    font-weight: 700;
    color: #034095;
    text-align: center;
    margin-bottom: 2.1875rem;
    position: relative;
    line-height: 1.2;
    background-image: url(../images/bg_question.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 5rem auto;
    padding: 2.5rem 0 1.9rem 0;
}


h2.section-title02 {
   font-size: 3.1rem;
   font-weight: 700;
   color: #034095;
   text-align: center;
   margin-bottom: 2.1875rem;
   position: relative;
   line-height: 1.2;
   background-image: url(../images/bg_question.webp);
   background-repeat: no-repeat;
   background-position: center center;
   background-size: 5rem auto;
   padding: 2.5rem 0 1.9rem 0
}


.diagram-subtitle {
    font-size: 2.0rem;
    font-weight: 700;
    color: #034095;
    text-align: center;
    margin: 1.5rem 0;
}

p.shourei_ttl {
    font-size: 2.0rem;
}

.answer-text {
    font-size: 1.35rem;
    line-height: 1.85;
    margin-bottom: 1.5625rem;
    margin-top: 1.2rem;
}

.icon-grid {
  display: flex;
  gap: 0.9375rem;
  margin-bottom: 0;
}

.icon-item {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.icon-item img {
  width: 80%;
  height: auto;
}

/* Q&Aブロック */
.qa-block {
  background: white;
  width: 95%;
  max-width: 660px;
  margin: 0 auto 2.5rem;
  padding: 3.0rem 2.2rem 3.8rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.qa-block.accordion {
  padding: 0;
  border: 2.5px solid #034095;
  box-shadow: 0 7px 0 #BBCAE1;
}

.qa-header {
  padding:1.25rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
}

.qa-content {
  display: none;
  padding: 0 1.25rem 2.0rem 1.25rem;
}

.qa-block.active .qa-content {
  display: block;
}

.qa-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  flex-shrink: 0;
}

.qa-toggle-icon::before,
.qa-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #034095;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.qa-toggle-icon::before {
  width: 100%;
  height: 3px;
}

.qa-toggle-icon::after {
  width: 3px;
  height: 100%;
}

.qa-block.active .qa-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.question {
background: transparent;
color: #034095;
padding: 0;
border-radius: 0;
font-size: 2.1rem;
font-weight: 800;
display: flex;
align-items: center;
gap: 0.9375rem;
line-height: 1.3;
}


.question::before {
    content: "Q";
    background: #034095;
    color: white;
    width: 3.0rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.67rem;
    flex-shrink: 0;
    padding-bottom: 0.33rem;
    padding-top: 0.25rem;
}

.answer-text {
    font-size: 1.35rem;
    line-height: 1.85;
    margin-bottom: 3rem;
    margin-top: 2.2rem;
}

.answer-text02 {
  font-size: 1.55rem;
  line-height: 1.85;
  margin-bottom: 3rem;
  margin-top: 2.2rem;
  text-align: center;
}

.cta-main-button img {
    width: 100%;
    /* height: auto; */
    display: block;
    margin: 0 auto;
}

.reliable-list {
    background: #FFF3EA;
    width: 95%;
    max-width: 660px;
    margin: 0 auto 2.5rem;
    padding: 1.9rem 2.2rem;
    border: 0.4rem double #F19A4B;
    text-align: left;
}

.reliable-title::before {
    content: "";
    display: inline-block;
    background-image: url(../images/reliable.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 4.5rem;
    height: 4.5rem;
    vertical-align: middle;
    margin-right: 1.0rem;
}

.reliable-desc {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2.4rem;
}

.reliable-title {
    font-size: 2.0rem;
    font-weight: 700;
}

.reliable-item{
  margin-bottom: 1.0rem;

}

.pricing-header {
    font-size: 1.5rem;
}

.pricing-label {
    font-size: 1.2rem;
}

.price-val {
    font-size: 2.2rem;
}

.voice-nav-images img {
    width: 30%;
    max-width: 122px;
    height: auto;
    transition: opacity 0.3s;
}

.voice-nav-images {
    display: flex;
    justify-content: center;
    gap: 2.0rem;
    margin-bottom: 3.3rem;
    margin-top: 5.2rem;
}

.voice-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #034095;
    color: white;
    padding: 0.5rem 1.0rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.voice-title {
    font-size: 2.1rem;
    color: #034095;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.voice-meta {
    font-size: 1.0rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.voice-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.superscript {
    font-size: 0.75em;
}

/* フッター */
.copyright {
    background: #034095;
    color: #FFFFFF;
    text-align: center;
    padding: 1.2rem 0 7rem;
    font-size: 1.2rem;
    margin-bottom: 7.2rem;
    font-weight: 500;
}

/* Totop Button */
#totop {
    position: fixed;
    bottom: 40px;
    right: 130px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    width: 60px;
    height: 60px;
}

#totop.is-show {
    opacity: 1;
    visibility: visible;
}

 }

/* Auto-Slider (Marquee) */
.marquee-slider {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 0 0 3.0rem 0;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    min-width: 100%;
    flex-shrink: 0;
}

.marquee-content img {
    height: 180px;
    width: auto;
    margin: 0 10px;
    object-fit: cover;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .marquee-content img {
        height: 120px;
        margin: 0 6px;
    }
}


/* ---------------------------------------------
 クリニック一覧
--------------------------------------------- */


.clinic {
    background: #fff;
    font-family: 
    "Noto Sans JP",
    -apple-system, BlinkMacSystemFont, /* iOS/Mac */
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", /* Mac日本語 */
    "Yu Gothic", "YuGothic", /* Windows日本語 */
    "Segoe UI", /* Windows */
    "Noto Sans JP", /* Android/Web日本語 */
    sans-serif; /* フォールバック */
  line-height: 1.7;
  color: #494949;
  /* background: #f5f5f5; */
}


.clinic_box {
  width: 90%;
	margin: 0 auto;
	padding-bottom: 80px;
}

.clinic h2{
    color:#034095;
    text-align: center;
    font-size: 2.0rem;
    padding: 1.0rem 0 0 0;
}

.clinic_box h3 {
    font-size: 26px;
    color: #fff;
    /* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
    margin: 15px 50px 15px 0;
    background-image: url(../../asset/images/clinic/ibiki_icon.webp);
    background-repeat: no-repeat;
    /*border-bottom: solid 1px #ccc;*/
	background-position: 20px 0;
	padding: 0 0 0 65px;
}

.clinic_box h4 {
    font-size: 22px;
    color: #499cc3;
    /* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
    margin: 20px 50px 10px 0;
    padding: 0 0 10px 0;
    /*border-bottom: solid 1px #ccc;*/
}

.clinic_box table {
    border-collapse: collapse;
    width: 90%;
	font-size: 16px;
	margin: 0 auto;
	margin-top: 20px;
}

.clinic_box tr {
    border-bottom: 1px solid #ccc;
}

.clinic_box tr:last-child {
    border-bottom: 1px solid #fff;
}

.clinic_box th {
    padding: 15px;
}

.clinic_box td {
    padding: 15px;
}

@media (min-width:751px){
.clinic_box img {
    text-align: center;
    margin: 0 auto;
	width: 100%;
}
}

.clinic_box img {
    text-align: center;
    margin: 0 auto;
}

.sma {
    display: none;
}

.clinic .accordion {
    max-width: 700px;
   /* margin-bottom: 7px;*/
    border-bottom: 1px solid #ccc;
}

.clinic .accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /*padding: 1em 2em;*/
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
	background: #034095;
    margin: 20px 0 0 0;
}

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

.clinic .accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
	margin: 0 15px 0 0;
}

.clinic .accordion[open] summary::after {
    transform: rotate(225deg);
}

.clinic .accordion div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0 auto;
   /* padding: .3em 1em 1.5em;*/
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.clinic .accordion[open] div {
    transform: none;
    opacity: 1;
}

.clinic .accordion a {
    text-decoration: none;
}

.mapbtn {
    margin: 8px 0px 0px 0px;
}

.mapbtn-box {
    font-size: 11px;
    line-height: 4rem;
    line-height: 2rem;
	background: #499cc3; 
    padding: 0 1rem;
    text-align: center;
    margin: 5px 0px 0px 0px;
    width: 80px;
	padding: 0.5em 1em;
	color: #fff; 
}

.mapbtn-box a:link{
    color: #fff; 
}
	
.mapbtn-box a:visited{
    color: #fff; 
}

.clinic_onlyPH{
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {

    .clinic_all {
        width: 90%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .clinic_box {
        width: 90%;
		/* padding-bottom: 40px; */
    }

.clinic_box h3 {
    font-size: 20px;
	padding: 2px 0 2px 50px;
	background-position: 12px 1px;
}

.clinic_box h4 {
    font-size: 20px;
}
	
    .clinic_box table {
        width: 100%;
		font-size: 14px;
    }

    .clinic_box th {
        width: 27%;
        padding: 0;
    }

    .sma {
        display: block;
    }
	
.clinic .accordion {
    max-width: 500px;
   /* margin-bottom: 7px;*/
    border-bottom: 1px solid #ccc;
}

.clinic .accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /*padding: 1em 2em;*/
    color: #333333;
    font-weight: 600;
    cursor: pointer;
	background: #034095;
    margin: 10px 0 0 0;
}

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

.clinic .accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
	margin: 0 15px 0 0;
}

.clinic .accordion[open] summary::after {
    transform: rotate(225deg);
}

.clinic .accordion div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0 auto;
    /*padding: .3em 1em 1.5em;*/
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.clinic .accordion[open] div {
    transform: none;
    opacity: 1;
}
	
.clinic .accordion a {
    text-decoration: none;
}

.mapbtn {
    margin: 8px 0px 0px 0px;
}
	
	
.mapbtn-box {
    font-size: 11px;
    line-height: 4rem;
    line-height: 2rem;
	background: #499cc3; 
    padding: 0 1rem;
    text-align: center;
    margin: 5px 0px 0px 0px;
    width: 80px;
	padding: 0.5em 1em;
	color: #fff; 
}

.mapbtn-box a{
	text-decoration: none;
}
	
.mapbtn-box a:link{
    color: #fff; 
	text-decoration: none;
}
	
.mapbtn-box a:visited{
    color: #fff; 
}
	
}



/* カード（親）ははみ出し可／ボタンを重ねられるように */
.clinic-card {
  position: relative;
  overflow: visible;
}

/* スライドはクリップ（2枚目は見せない） */
.clinic-swiper::part(container) {
  overflow: hidden;
}

.clinic-swiper img {
  display: block;
  width: 100%;
  height: auto;
}

/* 外部ナビ（必ず表示されるよう基本を強制） */
.clinic-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  z-index: 20;
  /* 前面に */
  display: inline-block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  border: none;
  border-radius: 50%;
  background: #1f3a93;
  /* まず色で見える状態に */
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

/* 右／左の位置（外側に出すなら負の値） */
.clinic-nav.next {
  right: -12px;
}

.clinic-nav.prev {
  left: -12px;
}

/* アイコン（CSS三角形）— 画像アイコンならこの塗りを削除して background-image に */
.clinic-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  /* ▶︎ */
}

.clinic-nav.prev::before {
  transform: scaleX(-1);
}



@media (min-width:768px) {

  .clinic-nav {
  width: 50px;
  height: 50px;
}

}

@media screen and (max-width: 375px) {

    .clinic-nav {
  width: 35px;
  height: 35px;
}

}


/* ---------------------------------------------
クリニック一覧　お知らせ
--------------------------------------------- */

.transfer-box {
  background-color: #F8F8F8;
  border-radius: 4px;
  padding: 24px;
  margin: 16px 0px 16px 0px;
  width: 75%;
}

.transfer-box h4 {
  background-color: #DE6E6E;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-weight: bold;
  margin: -24px -24px 16px;
}

.transfer-box h4 img{
  max-width: fit-content;
  position: relative;
  top: -5px;

}
.transfer-box h4 span {
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.transfer-box p {
  font-size: 14px;
  padding-bottom: 10px;
  line-height: 1.3em;
  margin: 0 auto;
}

.transfer-box p strong {
  color: #DE6E6E;
  font-weight: bold;
  text-align: center;
  display: block;
}

.transfer-add {
  display: flex;
  border-top: 1px solid #E8E8E8;
  padding: 16px 0px 0 0px;
  /*gap: 40px;*/
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 14px;
}

.transfer-add p strong {
  color: #333;
  text-align: left;
  margin-bottom: 4px;
}


@media screen and (max-width: 768px) {
  .transfer-add p strong {
    text-align: left;
    margin-bottom: 4px;
  }
  .transfer-box {
    padding: 16px;
    width: auto;

  }
.transfer-add {
  padding: 16px 0px 0 0px; 
}
  .transfer-box h4 {
    margin: -16px -16px 16px;
  }
}




/* ---------------------------------------------
 FAQ
--------------------------------------------- */

.lp-inner .faq{
	background-color: #fff;
	padding-bottom: 15%;
}

.lp-inner .faq-box {
	width: 89.3%;
	margin: 0 auto 3%;
}

.lp-inner .faq-box dt{
	position: relative;
	width: 100%;
	cursor: pointer;
}

.lp-inner .faq-box dt::before{
	content: '';
	position: absolute;
	top: 52%;
	right: 3.5%;
	width: min(calc(21/750*100vw), 21px);
	height: 2px;
	transition: rotate(0deg);
	background: #ffffff;
	z-index: 2;
}

.lp-inner .faq-box:nth-of-type(5) dt::before{
	top:42%;
}

.lp-inner .faq-box dt::after{
	content: '';
	position: absolute;
	top: 52%;
	right: 3.5%;
	width: min(calc(21/750*100vw), 21px);
	height: 2px;
	transform: rotate(90deg);
	background: #ffffff;
	transition: transform 0.4s ease-in-out;
	z-index: 2;
}
.lp-inner .faq-box:nth-of-type(5) dt::after{
	top:42%;
}

.lp-inner .faq-box:nth-of-type(4) dt::before{
	top:42%;
}

.lp-inner .faq-box:nth-of-type(4) dt::after{
	top:42%;
}

.lp-inner .faq-box dt.clicked::after{
	transform: rotate(0deg);
}

.lp-inner .faq-box dd {
	width: 100%;
	line-height: 0;
    height:0;
    overflow: hidden;
    opacity: 0;
		transition:all ease 0.4s;

}

.lp-inner .faq-box dd.is-open {
    height: auto;
    opacity: 1;

}

.lp-inner .p-box{
	position: relative;
}

.lp-inner .map-wrap {
	position: absolute;
	width:min(calc(210/750*100vw),410px);
	padding-top: min(calc(330/750*100vw),330px);
	top:13%;
	left: 50%;
	transform: translateX(-50%);
}

.lp-inner .p-box.js-targetFloatEnd .map-wrap{
	padding-top: min(calc(410/750*100vw),410px);
}

.lp-inner .map-wrap iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
}

.lp-inner .map-wrap2 iframe{
	width: 100%;
	margin-bottom: 16px;

}

.lp-inner .bottom{
	background-color: #dcf2ff;
	padding-bottom: 5%;
}

/* スペース */
.mB10 {
  margin-bottom: 1.0rem;
}

.mB15 {
  margin-bottom: 1.5rem;
}

.mB20 {
  margin-bottom: 2.0rem;
}

.mB30 {
    margin-bottom: 3rem;
}

.mB40 {
    margin-bottom: 4rem;
}

 .mT20{
  margin-top: 2.0rem;
 }
/* Mobile Menu CTA Button 02 */
.menu-cta-section02 {
    margin: 20px;
    display: none; /* Hide by default, show on mobile */
}

.cta-main-button02 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F19A4B;
    border-radius: 10px;
    box-shadow: 0px 5px 0px 0px rgba(0,0,0,0.20); /* Slightly reduced shadow for mobile feel, preserving design intent */
    text-decoration: none;
    padding: 1rem 0.5rem; /* Adjust padding to fit contents */
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.1s, box-shadow 0.1s;
}

.cta-main-button02:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.20);
}

.cta-text {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem; /* Adjusted for mobile readability */
    font-weight: 700;
    text-shadow: 0px 3px 2px #CC7A2F;
    margin-right: 10px;
}

.cta-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* Ensure it shows up in the side menu */
.side-menu .menu-cta-section02 {
    display: block;
    margin-top: auto; /* Push to bottom if needed, or keeping standard flow */
    margin-bottom: 20px;
}

/* Specific adjustments for mobile if not already covered by side-menu being mobile only */
@media screen and (max-width: 768px) {
    .menu-cta-section02 {
        display: block;
    }
}

/* #totop a {
    display: block;
    width: 100%;
    height: 100%;
} */

/* #totop img {
    width: 100%;
    height: 100%;
    display: block;
} */


.clinic_chiba {
  width: 100%;
  margin: 0 auto;
}
