@charset "UTF-8";
/* =============================================================
   Variables
============================================================= */
/* Mixins */
/* =============================================================
   Base / Reset
============================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
	overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  color: #102327;
  background: #fff;
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  line-height: 1.35;
}

h2 {
	font-size: 25.6px;
}

p {
  margin: 0.6em 0;
	font-size: 16px;
	letter-spacing: 0;
}

ul {
  margin: 0.6em 0;
  padding-left: 1.2em;
	 list-style: disc;
	
}

li {
	list-style: disc;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 24px;
  padding: 0px 80px;
}

.section {
  padding: 80px 0;
}

.font-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  .container {
    padding: 0 24px;
  }
	
	h2 {
		font-size: 16px;
	}
	
  p {
    font-size: 12.8px;
  }
  .section {
    padding: 40px 0;
  }
	
}

/* Common components */
.btn {
  display: block;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(225deg, #407494 0%, #67BFA8);
  border-radius: 0;
  color: #fff;
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.08);
  font-weight: normal;
	width: 40%;
}


.btn--primary::after {
	    content: '';
    position: absolute;
    /* right: 20px; */
    margin-left: 10px;
    width: 16px;
    height: 4px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: skew(45deg);
    top: 50%;
}
}

@media (max-width: 768px) {
	.btn--primary  {
		
		width: 80%;
	}
	
}

.btn--ghost {
  border: 1px solid transparent;
  -o-border-image: linear-gradient(45deg, #407494, #67BFA8) 1;
     border-image: linear-gradient(45deg, #407494, #67BFA8) 1;
  text-align: right;
  background: linear-gradient(45deg, #407494, #67BFA8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px 45px 8px 16px;
    text-align: center;
    align-items: center;
    display: flex;
	    height: auto;
    width: auto;
}

.btn--ghost::after {
	    content: '';
    position: absolute;
    /* right: 20px; */
    margin-left: 10px;
    width: 16px;
    height: 4px;
    border-bottom: 1px solid #67BFA8;
    border-right: 1px solid #67BFA8;
    transform: translate(0%, -50%) skew(45deg);
    top: 50%;
}

@media (max-width: 768px) {
	
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.card {
  background: #fff;
  border: 1px solid #e6eef0;
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.08);
}

.bullet-panel {
  background: #f7fbfb;
  border: 1px solid #e6eef0;
  display: flex;
  gap: 16px;
}
.bullet-panel__title {
  margin: 0 0 0;
  font-weight: 700;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(to bottom, #407494, #67BFA8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 0.3em;
}
.bullet-panel__list {
  font-size: 14px;
  margin: 0;
  padding: 16px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.bullet-panel__list li {
  position: relative;
}
.bullet-panel__list li::marker {
  color: #407394;
  /* ← 一応書けるけど、li の文字色と同じ扱いになりがち */
}

.c-sectionTitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18.3px;
  color: #000000;
}
.c-sectionTitle::before, .c-sectionTitle::after {
  content: "";
  flex: 1;
  height: 1px;
}
.c-sectionTitle::before {
  margin-right: 40px;
  background: linear-gradient(to right, #407494, #cfcfcf);
}
.c-sectionTitle::after {
  margin-left: 40px;
  background: linear-gradient(to right, #cfcfcf, #67bfa8);
}

@media (max-width: 768px) {
  .c-sectionTitle::before, .c-sectionTitle::after {
    content: "";
    flex: 1;
    height: 0;
  }
  .c-sectionTitle::before {
    margin-right: 0px;
    background: linear-gradient(to right, #407494, #cfcfcf);
  }
  .c-sectionTitle::after {
    margin-left: 0px;
    background: linear-gradient(to right, #cfcfcf, #67bfa8);
  }
}
/* =============================================================
   Header
============================================================= */
.top-block {
  background: url(../img/header_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 24px 80px;
	margin: 30px auto 0;
}
.top-block .header__note {
  color: #655A5A;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.top-block .header__note span {
  font-size: 30px;
  margin: 0px 8px;
}
.top-block .header__note span.header__old {
  font-size: 25.6px;
  margin: 0;
}

@media (max-width: 768px) {
  .top-block {
    background: url(../img/header_bg-sp.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 16px 24px;
	margin-top: 70px;
  }
  .top-block .header__note {
    font-size: 12.8px;
  }
  .top-block .header__note span {
    font-size: 22px;
    margin: 0;
  }
  .top-block .header__note span.header__old {
    font-size: 16px;
  }
}
/* =============================================================
   KV
============================================================= */
.kv {
  background: url(../img/mv_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
	height: 665px;
}
.kv__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 80px;
}
.kv__subtitle {
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  padding: 12px 0;
  text-align: center;
  background-color: rgba(50, 50, 50, 0.15);
}
.kv__title {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0;
	text-align:center;
}
.kv__lead {
  font-size: 22px;
  color: #fff;
}
.kv__lead span {
  font-size: 24px;
}
.kv__cta {
  position: relative;
  margin-top: 51px;
  display: flex;
  justify-content: center;
  /*

  @media (min-width: 480px) {
      &-label {
          font-size: 20px;
      }

      &-sub {
          font-size: 10px;
      }

      &-button {
          padding: 22px 72px 20px 32px;
      }

      &-tag {
          font-size: 12px;
      }
  }

  */
}
.kv__cta-button {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 18px 64px 16px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c58a2e 0%, #d77959 50%, #d35b59 100%);
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  min-width: 280px;
}
.kv__cta-button::after {
    content: '';
    position: absolute;
    right: 20px;
    margin-left: 10px;
    width: 16px;
    height: 4px;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: skew(45deg);
    top: 50%;
}
}
.kv__cta-button:hover, .kv__cta-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 48px rgba(7, 31, 34, 0.16), 0 4px 10px rgba(255, 255, 255, 0.06) inset;
}
.kv__cta-button:hover::after, .kv__cta-button:focus-visible::after {
  transform: translateX(2px) rotate(45deg);
}
.kv__cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}
.kv__cta-label {
  display: block;
  font-weight: 700;
  line-height: 1.3;
  font-size: 18px;
  text-align: center;
}
.kv__cta-sub {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.5;
  opacity: 0.9;
}
.kv__cta-tag {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #D29B2B;
  font-size: 12.8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(7, 31, 34, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.kv__points {
  position: absolute;
  right: 5%;
  top: 60%;
  z-index: 1;
  width: 430px;
}
.kv__badge {
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #e6eef0;
  text-align: center;
  font-weight: 700;
}
.kv__visual {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e6eef0;
  background: #cfe7e2;
  display: grid;
  place-items: center;
  color: #3e6b6c;
}

@media (max-width: 768px) {
  .kv {
    position: relative;
    width: 100%;
    height: 83vh;
    padding: 0;
  }
  .kv__media {
    position: absolute;
    inset: 0;
    /* top, right, bottom, left = 0 */
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    /* 余白なく比率維持で敷き詰め */
    z-index: 0;
    /* 背景として一番下に */
  }
  .kv__inner, .kv__copywrap, .kv__cta, .kv__points {
    position: relative;
    z-index: 1;
    /* 背景より前に */
  }
  .kv__copywrap {
    padding-top: 75%;
    margin-bottom: 24px;
  }
  .kv__subtitle {
    margin: 32px 24px 8px;
    font-size: 14.28px;
  }
  .kv__title {
    font-size: 56px;
    text-align: center;
  }
  .kv__lead {
    font-size: 16px;
    text-align: center;
    margin: 0;
  }
  .kv__lead span {
    font-size: 16px;
  }
  .kv__points {
    right: 0;
    top: 0%;
    padding: 0 24px;
  }
}
/* =============================================================
   Intro
============================================================= */
.intro {
  background: url(../img/intro_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}
.intro__text {
  color: #fff;
  flex: 0 0 40%;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 2.5;
  margin-top: 80px;
}
.intro__text-lead {
	font-size: 28px;
}
.intro__images {
  margin: 0 auto;
  padding: 0 0 32px 0;
}
.intro__img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: 45%;
}
.intro__img--1 {
  top: 0;
  left: 10%;
  width: 30%;
}
.intro__img--2 {
  top: 20%;
  left: 50%;
  width: 40%;
}
.intro__img--3 {
  top: 50%;
  left: 0;
  width: 35%;
}
.intro__img--4 {
  top: 60%;
  left: 40%;
  width: 30%;
}
.intro__img--5 {
  top: 10%;
  right: -5%;
  width: 45%;
  z-index: 2;
}

@media (max-width: 768px) {
  .intro {
    height: auto;
  }
  .intro__inner {
    flex-flow: column;
    align-items: start;
  }
  .intro__text {
    margin-top: 28rem;
  }
  .intro__images {
    margin: 0;
    width: 100%;
  }
  p.intro__text-lead {
    font-size: 18.29px;
  }
}
/* =============================================================
   TOC
============================================================= */
.toc {
  background: #fff;
}
.toc__grid {
}

.toc__col {
	width: 100%;
}

.toc__col-flex {
	display: flex;
	gap: 40px;
}

.toc__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #e6eef0;
  color: #34484c;
	width:50%;
	position: relative;
	overflow: visible;
	font-size: 15px;
}

  .toc__col-flex:last-child .toc__item:last-child {
    width: calc((100% - 40px) / 2);   /* gap:40px に合わせて “2列と同じ幅” */
    flex: 0 0 calc((100% - 40px) / 2);
    box-sizing: border-box;           /* padding込みでもオーバーしない */
    min-width: 0;
  }

.toc__arrow {
  display: inline-block;
  width: 1px;
  height: 16px;
  margin-right: 5px;
  border-radius: 9999px;
  background-color: #67BFA8;
  position: relative;
  top: -10px; /* ← 縦だけ動かす。横ズレしない */
  transform: none !important; /* 以前のパッチが残っていても無効化 */
  z-index: 1;
}

.toc__arrow::after{
  content: "";
  position: absolute;
  width: 24px;                 /* ◯の直径（お好みで変更OK） */
  height: 24px;
  border-radius: 50%;
  background: rgba(64,138,148,.25); /* ◯の色 */
  top: calc(50% - -10px); /* 親が上がる→円は同量だけ下へ */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.toc__arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 8px;
  border-radius: 9999px;
  background-color: #67BFA8;
  transform: rotate(45deg);
  transform-origin: 50% calc(100% - 0.5px);
}






@media (max-width: 768px) {

	.toc__col-flex {
		flex-flow: column;
		gap: 0;
	}
	
	.toc__item , .toc__col-flex:last-child .toc__item:last-child  {
		width: 100%;
	}
}

/* =============================================================
   About
============================================================= */
.about {
  background: url(../img/about_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.about__kicker {
  color: #000000;
  font-size: 26px;
  margin: 8px 0px;
  text-align: center;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  gap: 56px;
  padding: 64px 80px 64px 0;
}
.about__body {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.about__grid--reverse {
  padding: 64px 0px 64px 80px;
  grid-auto-flow: dense;
}
.about__grid--reverse > .about__body {
  order: 1;
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.about__grid--reverse > .about__media, .about__grid--reverse > .article-card__media, .about__grid--reverse > .doctor__media, .about__grid--reverse > .about__compare-media {
  order: 2;
}
.about__media, .article-card__media, .doctor__media, .about__compare-media {
  overflow: hidden;
  background: #eef6f6;
  display: grid;
  place-items: center;
  width: 100%;
}
.about__lead {
  color: #5a6b72;
}
.about__compare {
  margin-top: 56px;
  text-align: center;
  color: #5e7075;
  display: grid;
  gap: 18px;
	    padding: 0px 80px;
}

.about__compare-item {
	
	    width: calc(50% - 24px);
}

.about__compare-title {
  font-size: 18px;
  font-weight: normal;
  color: #000000;
}
.about__compare-grid {
  display: flex;
  justify-content: space-between;
}
.about__compare-media {
  min-height: 220px;
}
.about__compare-label {
  margin-top: 8px;
	font-size: 21.33px;
}

@media (max-width: 768px) {
  .about__grid {
    padding: 0 24px;
    gap: 16px;
  }
  .about__body {
    margin: 0 0 24px 0px;
    gap: 12px;
  }
  .about__body p {
    margin: 0 auto;
    font-size: 12.8px;
  }
  .about__title {
    margin-bottom: 0;
  }
	
	.about__compare-item {
	
	    width: 100%;
}
	
	.about__compare {
		
		padding: 0 24px;
	}
	
  .about__grid--reverse {
    margin: 24px 0px;
  }
  .about__grid--reverse > .about__body {
    order: 2;
  }
  .about__grid--reverse > .about__media, .about__grid--reverse > .article-card__media, .about__grid--reverse > .doctor__media, .about__grid--reverse > .about__compare-media {
    order: 1;
  }
  .about__compare-grid {
    flex-flow: column;
    gap: 24px;
  }
	
	.about__compare-label {
	font-size: 12px;
}
}
/* =============================================================
   Cause
============================================================= */
.cause {
  background: url(../img/case_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.cause__title {
  font-size: 26px;
  font-weight: normal;
  text-align: center;
}
.cause__item-title {
  font-weight: normal;
  margin-bottom: 16px;
  font-size: 32px;
}
.cause__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 40px 0px;
}
.cause__grid--reverse {
  grid-auto-flow: dense;
}
.cause__grid--reverse > .cause__body {
  order: 2;
}
.cause__grid--reverse > .cause__body p {
  margin-bottom: 16px;
}
.cause__grid--reverse > .cause__media {
  order: 1;
}
.cause__grid--reverse .bullet-panel {
  margin-top: 32px;
}

@media (max-width: 768px) {
	
	.cause__grid {
		        padding: 0px 0px 24px;
		  gap: 28px;
	}
	
	.cause__title {
		font-size: 16px;
		margin-bottom: 24px;
	}
	
  .cause__grid--reverse > .cause__body {
    order: 1;
  }
  .cause__grid--reverse > .cause__media {
    order: 2;
  }
	
	.cause__item-title {
		font-size: 22px;
	}
}
/* =============================================================
   alert
============================================================= */
.alert {
  background: url(../img/alert_bg.png) no-repeat center center;
  text-align: center;
}
.alert__cta-title {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 40px;
}
.alert__cta-contents {
  font-size: 18px;
  margin-bottom: 24px;
}
.alert__cta-text {
  font-size: 21px;
  font-weight: 600;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .alert__cta-title {
    font-size: 21.33px;
  }
  .alert__cta-contents {
    font-size: 12.8px;
  }
  .alert__cta-text {
    font-size: 16px;
  }
}
/* =============================================================
   Reason
============================================================= */
.reason {
  background: url(../img/reason_bg.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.reason__title {
  text-align: center;
  margin-bottom: 28px;
  color: #fff;
  font-weight: normal;
  font-size: 25.6px;
}
.reason__list {
  display: grid;
}
.reason__item {
  align-items: center;
  display: flex;
  gap: 56px;
  padding: 40px 0 40px 80px;
	justify-content: space-between;
}
.reason__item-title {
  color: #fff;
  font-size: 32px;
}
.reason__item-text {
  color: #fff;
}
.reason__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.reason__item img{
	width: 620px;
}

@media (max-width: 768px) {
	
	.reason__title { 
	
		font-size: 16px;
	}
	
	.reason__list {
		gap: 56px;
	}
	
	.reason__item-title {
		font-size: 18.29px;
	}
  .reason__item {
    flex-flow: column !important;
    padding: 0 24px;
	  gap: 24px;
  }
  .reason__item img {
    order: 1;
  }
  .reason__item-wrap {
    order: 2;
  }
}
/* =============================================================
   Timing / Concerns
============================================================= */
.timing {
  background: url(../img/timing_bg.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.timing__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.timing__title {
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}
.timing__text {
  color: #fff;
  margin-bottom: 24px;
  line-height: 2.2;
  font-size: 16px;
  text-align: center;
	letter-spacing: 0;
}
.timing__intro {
  background: #fff;
  border: 1px solid #e6eef0;
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.08);
  padding: 24px;
}
.timing__subtitle {
  margin: 0px 0 24px;
  font-weight: 700;
  color: #2c7d86;
}
.timing__list {
  font-size: 14.22px;
  list-style: disc;
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.timing__list li::marker {
  color: #407394;
  /* ← 一応書けるけど、li の文字色と同じ扱いになりがち */
}

@media (max-width: 768px) {
  .timing__subtitle {
    font-size: 14.22px;
  }
  .timing__intro {
    padding: 24px 16px;
  }
  .timing__subtitle {
    margin: 0 0 16px;
  }
  .timing__list {
    font-size: 12.8px;
    gap: 8px;
  }
}
.concerns {
  padding: 0;
  background: #3b3f42;
  color: #fff;
  margin-top: 0;
}
.concerns__titile-wrap {
  background: url(../img/concers_titile-bg.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 72px;
  /* align-items: start; */
  padding: 120px 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  flex-flow: column;
}
.concerns__title {
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  line-height: 2.5;
}

.concerns__title.title-lg {
	font-size: 49px;
}

.concerns__lead {
	
	font-size: 25.6px;
}

.concerns .concerns__list--01,
.concerns .concerns__list--02 {
  display: flex;
  align-items: stretch;
  background: #3F3F3F;
  color: #fff;
  min-height: 260px;
	position: relative;
}
.concerns .concerns__item {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
	position: absolute;
	z-index:1;
}

.concerns .concerns__list--01 .concerns__item {
	    top: 50%;
	left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.concerns .concerns__list--02 .concerns__item {
	    top: 50%;
	left: 60%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.concerns .concerns-hero__visual {
  position: relative;
  flex: 1 1 60%;
  overflow: hidden;
  display: flex;
}
.concerns .concerns-hero__visual img {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concerns .concerns__list--01 .concerns-hero__visual img {
  -o-object-position: 75% center;
     object-position: 75% center;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #fff 35%, #fff 100%);
  mask-image: linear-gradient(to left, transparent 0%, #fff 35%, #fff 100%);
}
.concerns .concerns__list--01 .concerns-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to left, rgba(63, 63, 63, 0) 55%, rgba(63, 63, 63, 0.85) 100%);
}
.concerns .concerns__list--02 .concerns-hero__visual img {
  -o-object-position: 25% center;
     object-position: 25% center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 35%, #fff 100%);
  mask-image: linear-gradient(to right, transparent 0%, #fff 35%, #fff 100%);
}
.concerns .concerns__list--02 .concerns-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(63, 63, 63, 0) 55%, rgba(63, 63, 63, 0.85) 100%);
}

/* ---------- SP：縦積み、上方向へ溶けるで統一 ---------- */
@media (max-width: 768px) {
  .concerns__list--01,
.concerns__list--02 {
    flex-direction: column;
	    position: static !important;   /* 既存: position:relative を無効化 */
    flex-direction: column;
  }
  .concerns .concerns__item,
  .concerns .concerns__list--01 .concerns__item,
  .concerns .concerns__list--02 .concerns__item {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    z-index: auto !important;
    display: block;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 40px 24px;            /* すでに書いてあるが念のため */
  }
	
	.concerns__list--02 .concerns__item {
		
		order: 1;
	}
	
	.concerns__list--02 .concerns-hero__visual {
		
		order: 2;
	}
	
	.concerns .concerns-hero__visual {
		display: block;
		height: 50px;
		flex: 0 0 auto;
	}
	
	.concerns__lead {
		
		font-size: 14px;
	}
	
	.concerns__list--01 .concerns__lead {
	
	text-align: right;
}
	
		.concerns__list--02 .concerns__lead {
	
	text-align: center;
}
	
  .concerns-hero__visual {
    width: 100%;
    min-height: 48vw;
  }
  .concerns-hero__visual::before {
    background: linear-gradient(to top, rgba(63, 63, 63, 0) 70%, rgb(63, 63, 63) 100%);
  }
  .concerns-hero__visual img {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, #fff 25%, #fff 100%);
    mask-image: linear-gradient(to top, transparent 0%, #fff 25%, #fff 100%);
    -o-object-position: 50% center;
       object-position: 50% center;
    /* SPは中央基準でOKなら */
  }
  .concerns__title {
    line-height: 1.6;
  }
}
/* =============================================================
   Procedure全体背景
============================================================= */
section.lg__section-bg {
  background: url(../img/how2_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
}

@media (max-width: 768px) {
  section.lg__section-bg {
    background: url(../img/how2_bg-sp.png) no-repeat center center;
    background-size: cover;
    width: 100%;
  }
}
/* =============================================================
   Procedure
============================================================= */
.procedure__title {
  text-align: center;
  margin-bottom: 24px;
}
.procedure__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0px 80px;
}
.procedure__item {
  background: #fff;
  display: flex;
  flex-flow: column;
  gap: 24px;
  padding-bottom: 24px;
}
.procedure__flex {
  display: flex;
  align-items: center;
  gap: 24px;
}
.procedure__num {
  color: #fff;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 44px;
}
.procedure .num_01 {
  background-color: #59A5A1;
}
.procedure .num_02 {
  background-color: #559B9D;
}
.procedure .num_03 {
  background-color: #4B8899;
}
.procedure .num_04 {
  background-color: #407394;
}
.procedure__item-title {
  margin: 0 0 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 21.3px;
}
.procedure__item-text {
  color: #5a6b72;
  padding: 0px 40px;
}
.procedure__item-img {
  margin: 0 auto;
	width: 166px;
}

@media (max-width: 768px) {
  .procedure__grid {
    padding: 0;
  }
}
/* =============================================================
   手術の具体的な流れ
============================================================= */
.c-surgery-flow {
  background: url(../img/surgery_bg.png) no-repeat center center;
  background-size: cover;
  color: #333;
  position: relative;
}
.c-surgery-flow__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.c-surgery-flow__title {
  text-align: center;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 25.6px;
}
.c-surgery-flow__subtitle {
  margin: 40px 0;
}

.c-step {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px clamp(16px, 4vw, 32px);
  align-items: start;
}
.c-step::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 0;
  bottom: -40px;
  width: 2px;
  background: #cfe3db;
}
.c-step:last-of-type::before {
  bottom: 0;
}
.c-step__rail {
  position: relative;
  height: 100%;
}
.c-step__index {
  position: relative;
  display: inline-block;
  margin-left: -32px;
  color: #000000;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
}
.c-step__dot {
  position: absolute;
  left: 32px;
  background: #fff;
  width: 64px;
  height: 64px;
}
.c-step__card {
  background: #fff;
  border: 1px solid #dfe7e3;
  overflow: hidden;
  margin-bottom: 64px;
  width: 891px;
}
.c-step__header {
  background: #eef7f3;
  padding: 18px clamp(16px, 3vw, 24px);
}
.c-step__heading {
  font-size: clamp(16px, 1.8vw, 18px);
  margin: 0;
  font-weight: 700;
  color: #2b5651;
  letter-spacing: 0.03em;
}
.c-step__body {
  padding: clamp(16px, 3vw, 24px);
  background: #eef7f3;
}
.c-step__flex {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
}
.c-step__desc {
  margin: 0;
}
.c-step__row {
  padding: 8px 0;
}
.c-step__row dt {
  color: #6b7b75;
  font-weight: 600;
  font-size: 13px;
}
.c-step__row dd {
  margin: 0;
  line-height: 1.9;
  font-size: 14px;
}
.c-step__section {
  margin-top: 16px;
  padding-bottom: 24px;
  padding-right: 24px;
  background: #fff;
  border-left: 4px solid #67BFA8;
}
.c-step__label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4B8899;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 16px 0 12px 16px;
}
.c-step__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.c-step__bullets {
  margin: 0;
  padding-left: 32px;
  display: grid;
  gap: 4px;
}
.c-step__bullets li {
  line-height: 1.9;
  font-size: 14px;
}
.c-step__bullets li::marker {
  color: #2e6f57;
}
.c-step__bullets--cols {
  padding-left: 1.1em;
}
.c-step__text {
  margin: 0;
  line-height: 1.9;
  font-size: 14px;
}
.c-step__note {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7b75;
  padding-left: 16px;
}
.c-step__media {
  align-self: stretch;
  width: 33%;
}

.c-step_last {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px clamp(16px, 4vw, 32px);
  align-items: start;
}

.c-media-ph {
  width: 100%;
  height: 180px;
  background: #ebf0ee;
  display: grid;
  place-items: center;
}
.c-media-ph__icon {
  width: 36px;
  height: 28px;
  position: relative;
  display: inline-block;
}
.c-media-ph__icon::before, .c-media-ph__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}
.c-media-ph__icon::before {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #c0ccc6;
}
.c-media-ph__icon::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #c0ccc6;
}

@media (max-width: 960px) {
  .c-step {
    grid-template-columns: 68px 1fr;
  }
  .c-step::before {
    left: 30px;
  }
  .c-step__dot {
    left: 22px;
    width: 40px;
    height: 40px;
  }
  .c-step__index {
    margin-left: 2px;
  }
  .c-step__body {
    grid-template-columns: 1fr;
  }
  .c-step__media {
    order: 2;
  }
  .c-step__grid {
    grid-template-columns: 1fr;
  }
  .c-step__bullets--cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {

  section.surgery-flow {
    background: #f7fbfa;
    padding: clamp(24px, 6vw, 72px) 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #222;
  }
  .surgery-flow__inner {
    width: 100%;
    max-width: 640px;
    /* SP想定でも広めに対応 */
    margin: 0 auto;
  }
  /* アクセシビリティ用隠しテキスト */
  .visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
  }
  /* ------------------------------
     Step block
  ------------------------------ */
  .flow-step {
    position: relative;
    /* 左の縦ライン分 */
    margin: 0 0 40px;
  }
  /* ヘッダー（番号＋タイトル） */
  .flow-step__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    justify-content: left;
  }
  .flow-step__num {
    font-size: 12.8px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    line-height: 1;
	          width: 40px;
  }
  .flow-step__title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    line-height: 1.5;
    font-weight: normal;
    color: #559B9D;
  }
  /* カード */
  .flow-step__card {
    position: relative;
    background: #F1F7F7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 24px 16px;
  }
  /* 画像ダミー */
  .flow-step__media {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f2f6f5;
    overflow: hidden;
    margin: 0 0 12px;
  }
  .flow-step__media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* テキスト */
  .flow-step__text {
    font-size: 14px;
    line-height: 1.8;
    color: #3a4a48;
  }
  .flow-step__note {
    margin: 0 0 12px;
  }
  /* 箇条書き（術後検診の回数など） */
  .flow-step__bullets {
    list-style: disc inside;
    display: grid;
    gap: 4px;
    margin: 0 0 12px;
    padding: 0;
  }
  /* 中の情報ボックス（持ち物・検査項目・注意点） */
  .flow-box {
    background: #ffffff;
    border-left: 4px solid #67BFA8;
    padding: 10px 12px;
  }
  .flow-box + .flow-box {
    margin-top: 10px;
  }
  .flow-box__title {
    position: relative;
    font-size: 14.22px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: normal;
    color: #67BFA8;
    margin: 0 0 8px;
  }
  .flow-box__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 12.8px;
    list-style: disc;
    padding-left: 24px;
  }
  .flow-box__list li::marker {
    color: #67BFA8;
  }
}
/* =============================================================
   Lens panels
============================================================= */
.lens {
  margin-top: 80px;
}
.lens__title {
  text-align: center;
  margin-bottom: 24px;
}
.lens__panel {
  background: #fff;
  border: 1px solid #e6eef0;
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.08);
  padding: 56px 40px 24px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.lens__panel + .lens__panel {
  margin-top: 24px;
}
.lens__panel--muted {
  padding-bottom: 56px;
}
.lens__panel-title {
  color: #2d8b92;
  margin-bottom: 16px;
	font-size:21.3px;
}
.lens__cta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
	
	.lens article.lens__panel {
		padding: 24px 16px;
	}
	
	.lens__panel-title {
		font-size:16px;
		text-align: center;
	}
	
	article.lens__panel .btn--primary {
		width: 100%;
	}
}

/* =============================================================
   Doctor
============================================================= */
.doctor {
  background: url(../img/doctor_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.doctor__title {
  text-align: center;
  margin-bottom: 16px;
}
.doctor__card {
  background: #fff;
  border: 1px solid #e6eef0;
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.08);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  padding: 18px;
}
.doctor__media {
  min-height: 160px;
}
.doctor__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.doctor__name {
  font-size: 22px;
}
.doctor__name-en {
  font-size: 14px;
  color: #2a8da0;
  margin-left: 10px;
  font-weight: 700;
}
.doctor__desc {
  color: #5a6b72;
}
.doctor__badge {
  display: inline-block;
  margin-top: 8px;
  background: #e3f2ef;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  color: #2b6e6e;
}
.doctor__more {
  display: flex;
  justify-content: flex-end;
	    margin-top: 16px;
}

/* =============================================================
   Articles (Related)
============================================================= */
.articles__title {
  text-align: center;
  margin-bottom: 18px;
}
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border: 1px solid #e6eef0;
  box-shadow: 0 14px 40px rgba(7, 31, 34, 0.08);
  border-radius: 0;
  display: grid;
  transition: transform 0.2s ease;
}
.article-card:hover {
  transform: translateY(-2px);
}
.article-card__media {
  min-height: 160px;
}
.article-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
}

/* =============================================================
   Price tables
============================================================= */
.price {
  background: url(../img/price_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.price__title {
  text-align: center;
}
.price__lead {
  text-align: center;
  color: #5a6b72;
  margin-bottom: 16px;
}
.price__block {
  margin-top: 24px;
}
.price__block-title {
  margin: 0 0 10px;
  font-weight: 700;
  color: #2c7d86;
  text-align: center;
}
.price__note {
  color: #5a6b72;
  font-size: 14px;
  margin-top: 8px;
}

.price-table {
  border: 1px solid #e6eef0;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
.price-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(45deg, #407494, #67BFA8);
  color: #fff;
  font-weight: 700;
}
.price-table__th {
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 16px;
}
.price-table__th:last-child {
  border-right: 0;
}
.price-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e6eef0;
}
.price-table__td {
  padding: 12px 24px;
  background-color: #fff;
	font-size: 16px;
}

/* =============================================================
   選定療養とは？
============================================================= */
.co-pay {
  padding: 80px 0;
  color: #2a2f33;
  background: url(../img/co-pay_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.co-pay__inner {
  display: grid;
  gap: 20px;
}
.co-pay__title {
  text-align: center;
}
.co-pay__lead {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.co-pay__note, .co-pay__desc {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: center;
	letter-spacing:0;
}
.co-pay__card {
  margin-top: 24px;
  padding: 48px;
  background: #F3F7F8;
  margin: 0;
}
.co-pay__graph {
  display: block;
  width: 100%;
  height: auto;
  max-width: 764px;
  margin: 0px auto;
}

/* =============================================================
   Lens List - strict matching to provided design
============================================================= */
/* =================== lenslist：JSなし・はみ出し安定版（フル置換コピペ） =================== */
/* 調整用変数（必要に応じて数値だけ変えてOK） */
:root { --site-fixed-header: 0px; } /* サイトに固定ヘッダーがあればその高さを入れる（例:64px） */

.lenslist {
  --rowhead-w: 220px;  /* 左の行見出し列の幅（PC） */
  --img-w: 172px;      /* 画像幅 */
  --img-h: 200px;      /* 画像高さ */
  --img-popout: 0;  /* 上にどれだけ突き出すか（0で突き出し無し） */
	--col-gap: 8px; /* 列と列の間のすき間 */
}

/* セクション土台＋背景 */
.lenslist {
  position: relative;
  padding: 72px 0 96px;
  overflow: visible;
}
.lenslist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, #407494 0%, #67BFA8 100%);
  z-index: 0;
}

/* タイトル（画像が上に来る分だけ自動で余白を足す） */
.lenslist__title {
  position: relative;
  z-index: 6;
  text-align: center;
  margin-bottom: calc(26px + var(--img-popout));
  color: #fff;
  line-height: 1.7;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
	margin-bottom:40px;
}

/* 横スクロールのラッパ */
.lenslist__wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
}

/* ===== ヘッダー帯（テーブルの上に重ね、ここに画像＋名称を載せる） ===== */
.lenslist__heads {
  position: sticky;
  top: var(--site-fixed-header);         /* 固定ヘッダーがあっても被らない */
  z-index: 5;                            /* thead(2) より前、タイトル(6) より後 */
  display: grid;
  grid-template-columns: var(--rowhead-w) repeat(4, minmax(0, 1fr));
  align-items: start;
  min-width: 100%;                      /* テーブルと幅を揃える */
  pointer-events: none;                  /* クリックを妨げない */
  overflow: visible;
}
.lenslist__heads .headcell { position: relative; height: 110px; }
.lenslist__heads .lenshead {
  position: relative;
  width: 100%;
  display: grid;
  place-items: start center;             /* 水平中央寄せ */
}
.lenslist__heads .lenshead__img {
  width: 100%;                              /* 枠幅いっぱい */
  max-width: calc(100% - 16px);             /* 両サイドに余白確保 */
  height: auto;                             /* アスペクト比維持 */
  max-height: 180px;                        /* 高さ制限（必要なら調整） */
  object-fit: contain;
  display: block;
  margin: 0 auto; 
  /* 画像自体は動かさない（親を上げる方式に統一） */
  transform: none !important;
	    height: 180px;
}
.lenslist__heads .lenshead__name {
  margin-top: 8px;
  font-size: 15px;
  color: #203233;
}

/* ===== テーブル本体（従来どおり） ===== */
.lenslist__table {
    width: 100%;
    min-width: 0;
  border-collapse: separate;          /* 列間にスキマを作れるように */
  border-spacing: 0;   /* 横方向にだけすき間 */
  table-layout: fixed;
  color: #203233;
  background: transparent;
	
}
.lenslist thead th:nth-child(n+3),
.lenslist__table tbody td:nth-child(n+3){
  border-left: 8px solid transparent; /* ← 隙間の幅（必要なら調整） */
  background-clip: padding-box;        /* 背景をボーダー下に描かない＝隙間に見える */
}

/* colgroupと幅同期（左の行見出し列） */
.lenslist__table col.col--rowhead { width: var(--rowhead-w); }

/* thead（sticky） */
.lenslist thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #ffffff;
  color: #1e2f2f;
/*  border-top: 1px solid #CFE2DD; */
}
.lenslist thead th:not(:first-child) { border-left: 8px solid transparent; }
/* 必要ならパネル表現：透明化指定はそのまま踏襲 */
.lenslist thead th.is-sticky {
  color: transparent;
  background: transparent;
  border-bottom: 0;
}

/* thead 内の画像/名称は使わない（重複防止） */
.lenslist thead .lenshead__img,
.lenslist thead .lenshead__name { display: none !important; }

/* セル共通 */
.lenslist__table th,
.lenslist__table td {
  border-bottom: 1px solid #CFE2DD;
  padding: 18px 16px;
  vertical-align: top;
}

/* レンズ列ヘッダの高さ（従来） */
.lenslist .th-lens { text-align: center; height: 120px; }

/* 左端の縦見出し（行ヘッダ） */
.lenslist tbody th.is-sticky {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
  border-right: 0;
  vertical-align: middle;
  font-size: 18.3px;
}

/* 行ごとの最小高（従来踏襲） */
.lenslist tbody tr.lenslist--01 th.is-sticky { min-height: 409px; border-top: 1px solid; }
.lenslist tbody tr.lenslist--02 th.is-sticky,
.lenslist tbody tr.lenslist--03 th.is-sticky { min-height: 120px; }
.lenslist tbody tr.lenslist--05 th.is-sticky,
.lenslist tbody tr.lenslist--06 th.is-sticky,
.lenslist tbody tr.lenslist--08 th.is-sticky { min-height: 65px; }
.lenslist tbody tr.lenslist--07 th.is-sticky { min-height: 90px; }

/* 本文セル */
.lenslist tbody td {
  background: #FFFFFF;
  border-left: 1px solid #CFE2DD;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
}
.lenslist tr.lenslist--02 td { vertical-align: middle; }

/* 1行目だけ左寄せ */
.lenslist tbody tr:nth-child(1) td {
  text-align: left;
  font-size: 14px;
  line-height: 2;
}

/* YES/NOマーク */
.lenslist .mark { height: 26px; position: relative; }
.lenslist .mark--yes::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #254f47;
}
.lenslist .mark--no::before,
.lenslist .mark--no::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 16px; height: 2px; background: #254f47;
}
.lenslist .mark--no::before { transform: rotate(45deg); }
.lenslist .mark--no::after  { transform: rotate(-45deg); }

/* 祖先のoverflowでクリップされないよう保険（横スクロールは維持） */
.section.lenslist > .container,
.lenslist,
.lenslist__wrap { overflow-y: visible; }

.lenslist__hint { display: none; }

/* スマホ（必要なら幅や画像サイズを縮小） */
@media (max-width: 768px) {
	
  .lenslist__hint{
    display: grid !important;
    grid-template-columns: 1fr auto 1fr; /* 左矢印 | 指 | 右矢印 */
    grid-template-rows: auto auto;       /* 1段目：矢印+指, 2段目：文字 */
    column-gap: 12px;
    row-gap: 6px;                         /* 文字との間隔 */
    justify-items: center;
    align-items: center;
    margin: 10px 0 12px;                 /* ← ここで上下位置を微調整 */
    opacity: 1 !important;               /* JSのフェード制御を無効化 */
    pointer-events: none;                /* 操作を邪魔しない */
	      position: relative !important;
    z-index: 6; /* タイトルが z=6 なので同等に */
  }
  /* JSが .is-hide / .is-visible を付けても常に見せる */
  .lenslist__hint.is-hide,
  .lenslist__hint.is-visible{ opacity:1 !important; }

  /* 見た目（指だけ画像を使い、矢印はCSSで描画） */
  .lenslist__hint-icon{
    width: 36px; height: 36px;           /* 画像サイズ（SVG/PNGどちらでも） */
    padding: 0;
    background: none;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.25));
  }
  .lenslist__hint-label{
    grid-column: 1 / -1;  /* 3カラム全部をまたぐ */
    grid-row: 2;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
    margin: 0;            /* 既存の余白があってもリセット */
  }
  .lenslist__hint-arrow{
    position: relative;
    width: 100%;
	height: 1px;
    background: #fff; opacity: .95;
  }
  .lenslist__hint-arrow::after{
    content:"";
    position: absolute; top: 50%;
    width: 8px; height: 8px;
    border-top: 1px solid #fff;
    border-right:1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .lenslist__hint-arrow--left::after{
    left: 0; transform: translateY(-50%) rotate(-135deg);
  }
  .lenslist__hint-arrow--right::after{
    right: 0; transform: translateY(-50%) rotate(45deg);
  }
	
  .lenslist {
    --rowhead-w: 148px;
    /* 画像サイズを小さくしたい場合だけ有効化
    --img-w: 120px;
    --img-h: 120px;
    --img-popout: 32px;
    */
  }
  .lenslist__table { min-width: 840px; }
  .lenslist__heads { min-width: 840px; }
  .lenslist tbody th.is-sticky { width: var(--rowhead-w); }
}



.lenslist tbody th.is-sticky {
	color: #ffffff;
	vertical-align: middle;
	text-align: center;
	font-size: 18.3px;
	
}

/* =============================================================
   FAQ
============================================================= */
.faq {
  background-color: #EBEBEB;
}
.faq__title {
  text-align: center;
  margin-bottom: 16px;
}
.faq__list {
  display: grid;
  gap: 10px;
}
.faq__item {
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  flex-flow: column;
  gap: 16px;
  background: none;
}
.faq__q {

  position: relative;
  cursor: pointer;
  padding: 16px 18px 16px 56px; /* ← 左を広げてラベル分のスペースを確保 */
  font-weight: 700;
  background: #fff;
  font-size: 16px;
  line-height: 1.6; /* 複数行でも読みやすく */
	list-style: none;
}

.faq__q span {
	    padding-right: 48px;
    display: flex
;
}

.faq__q::before {
  content: "Q．";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #67BFA8;
  font-weight: 700;
  font-size: 18px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.faq__a::after {
  content: "";
  position: absolute;
  top: -7px;            /* ノッチが上にはみ出す量（調整可） */
  left: 72px;           /* テキスト開始位置に合わせて調整。padding-left:56pxなら 56〜80pxあたりが目安 */
  width: 14px;
  height: 14px;
  background: #fff;     /* 中身の色：Aボックスの見た目に合わせて。背景画像でもOKならその画像指定でも可 */
  transform: rotate(45deg);
  border-top: 1px solid #e6eef0;   /* Aボックスの上枠と同じ色で枠線を再現 */
  border-left: 1px solid #e6eef0;
  box-sizing: border-box;
  z-index: 1;           /* 必要なら前面に */
}

.faq__a {
    position: relative;
  padding: 16px 18px 16px 56px; /* ← 左を広げる */
  background: url(../img/item_bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  border-top: 1px solid #e6eef0;
  color: #5a6b72;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.faq__a span {
	font-weight: 700;
	color: #333333;
	display: block;
}

.faq__a::before {
  content: "A．";
  position: absolute;
  left: 18px;
  top: 16px; /* ボックス内の上端基準でOK */
  color: #CA8F34;
  font-weight: 700;
  font-size: 18px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.faq__a::after {
  content: "";
  position: absolute;
  top: -12px;            /* ノッチが上にはみ出す量（調整可） */
  left: 72px;           /* テキスト開始位置に合わせて調整。padding-left:56pxなら 56〜80pxあたりが目安 */
  width: 24px;
  height: 24px;
  background: #F3F7F8;     /* 中身の色：Aボックスの見た目に合わせて。背景画像でもOKならその画像指定でも可 */
  transform: rotate(45deg);
  box-sizing: border-box;
  z-index: 1;           /* 必要なら前面に */
}

.faq__q .i_box {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: inline-block;            /* spanにサイズを持たせる */
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #407494, #67BFA8); /* ← ここは background */
  border-radius: 50%;
  box-sizing: border-box;
}

/* ＋の横棒・縦棒（白） */
.faq__q .i_box::before,
.faq__q .i_box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;                 /* ← ここも半角スペースで */
  transform: translate(-50%, -50%);
  transition: .3s;
}

/* 初期は＋（縦棒を回転で重ねる） */
.faq__q .i_box::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* open時は縦棒を消して「−」 */
.faq__item[open] .faq__q .i_box::after {
  width: 0;
  opacity: 0;
}

/* =============================================================
   病院概要
============================================================= */
.clinic {
  /* 左：情報 */
  /* 外枠は .hours、内側の線はセルだけに付ける */
  /* 中の罫線（縦） */
  /* 横線：ヘッダー下と各行の下に入れる（最終行は消す） */
  /* → 外枠とつながらない */
  /* 端のセルは左右の線を消す → 外枠とつながらない */
  /* 1列目（時間列）の体裁 */
  /* 備考 */
  /* ● ／ の表示 */
  /* CTA */
  /* レスポンシブ */
}
.clinic__map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}
.clinic__inner {
  display: flex;
  gap: 24px;
  padding: 56px 0;
}
.clinic__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}
.clinic__logo {
  height: auto;
	width: 70%;
}
.clinic__name-jp {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.08em;
  margin: 0;
}
.clinic__name-en {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #666;
}
.clinic__details {
  margin-top: 16px;
}
.clinic__detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 16px;
  padding: 14px 0;
}
.clinic__dt {
  font-weight: 700;
  color: #333;
  position: relative;
	background: #F5F5F5;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
	    padding-left: 8px;
  /* ピン/電車アイコン（マスク） */
}
.clinic__dt--pin::before, .clinic__dt--train::before {
  content: "";
  position: absolute;
    left: 10px;
    top: 8px;
  width: 16px;
  height: 16px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.clinic__dt--pin::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
	background: #9B7714;
}
.clinic__dt--train::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2c4.97 0 7 1.79 7 5v7c0 2.21-1.79 4-4 4l2 2v1h-2l-3-3l-3 3H7v-1l2-2c-2.21 0-4-1.79-4-4V7c0-3.21 2.03-5 7-5m0 2c-3.86 0-5 .78-5 3v6h10V7c0-2.22-1.14-3-5-3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2c4.97 0 7 1.79 7 5v7c0 2.21-1.79 4-4 4l2 2v1h-2l-3-3l-3 3H7v-1l2-2c-2.21 0-4-1.79-4-4V7c0-3.21 2.03-5 7-5m0 2c-3.86 0-5 .78-5 3v6h10V7c0-2.22-1.14-3-5-3Z'/%3E%3C/svg%3E");
	background: #19275B;
}
.clinic__dd {
  line-height: 1.9;
  color: #333;
  margin-left: 0;
  font-size: 14px;
}
.clinic .hours {
  border: 1px solid #DDDDDD;
  background: #fff;
  padding: 10px;
  overflow: clip;
}
.clinic .hours__table {
  width: 100%;
  border-spacing: 0;
  font-size: 14px;
}
.clinic .hours__th,
.clinic .hours__time,
.clinic .hours__cell {
  padding: 16px;
  text-align: center;
  width: 64px;
  border-right: 1px solid #DDDDDD;
  /* 縦線だけまず入れる */
}
.clinic .hours__time {
  padding: 12px;
}
.clinic .hours__cell {
  font-size: 16px;
  color: #19275B;
}
.clinic thead tr > * {
  border-bottom: 1px solid #DDDDDD;
}
.clinic tbody tr > * {
  border-bottom: 1px solid #DDDDDD;
}
.clinic tbody tr:last-child > * {
  border-bottom: 0;
}
.clinic .hours__th:first-child,
.clinic .hours__time:first-child,
.clinic .hours__cell:first-child {
  border-left: 0;
}
.clinic .hours__th:last-child,
.clinic .hours__time:last-child,
.clinic .hours__cell:last-child {
  border-right: 0;
}
.clinic .hours__th:first-child,
.clinic .hours__time {
  font-weight: 700;
  text-align: center;
  /* ← 左寄せに統一（center指定を消す） */
  width: 150px;
  line-height: 1.4;
}
.clinic .hours__note-small {
  display: inline-block;
  color: #4B4B4B;
  font-size: 11px;
}
.clinic .hours__caption {
  font-size: 12px;
  color: #4B4B4B;
}
.clinic .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  color: #19275B;
  /*

  &.is-open::before,
  &.is-close::before {
      content: "";
      position: absolute;
      inset: 0;
      margin: auto;
  }


  &.is-open::before {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #0c4a6e;
  }

  &.is-close::before {
      width: 16px;
      height: 1px;
      background: #19275B;
      transform: rotate(-45deg) translateY(0px);
      transform-origin: center;
  }

  */
}
.clinic__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px auto 72px;
  padding: 0;
}
.clinic .cta {
  position: relative;
  display: flex;
  justify-content: center;
  /* 右向きのライン＋矢印（画像と同雰囲気） */
}
.clinic .cta__label {
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.clinic .cta__arrow {
  position: absolute;
  right: clamp(20px, 4vw, 36px);
  left: clamp(200px, 40%, 420px);
  bottom: 50%;
  transform: translateY(50%);
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}
.clinic .cta__arrow::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.clinic .cta--phone::before {
  /* 差し替え可 */
  background-image: url("/assets/img/cta-phone.jpg");
}
.clinic .cta--web::before {
  background-image: url("/assets/img/cta-web.jpg");
}
@media (max-width: 768px) {
  .clinic__inner {
    flex-flow: column;
    gap: 32px;
    padding-block: 40px;
  }
  .clinic .hours__col--time {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .clinic__detail {
    grid-template-columns: 88px 1fr;
  }
  .clinic__ctas {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .clinic .hours__th, .clinic .hours__time, .clinic .hours__cell {
    padding: 12px 8px;
    font-size: 14px;
  }
  .clinic .hours__note-small {
    font-size: 11px;
  }
  .clinic .hours__caption {
    text-align: left;
    margin: 10px 12px 16px;
  }
  .clinic .cta {
    margin: 0 auto;
  }
  .clinic .cta__arrow {
    left: 46%;
  }
}

/* =============================================================
   Utilities & Responsive
============================================================= */
.br--sp {
  display: none;
}

@media (max-width: 768px) {
  .kv__inner {
    grid-template-columns: 1fr;
  }
  .kv__badges {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .about__grid,
.cause__grid,
.procedure__grid {
    grid-template-columns: 1fr;
  }
  .toc__grid {
    grid-template-columns: 1fr;
  }
  .toc__col {
    border-right: none;
  }
  .doctor__card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .kv__badges {
    grid-template-columns: 1fr;
  }
  .articles__grid {
    grid-template-columns: 1fr;
  }
  .prefooter__grid {
    grid-template-columns: 1fr;
  }
  .price-table__head,
.price-table__row {
    grid-template-columns: 1fr 1fr;
  }
  .br--sp {
    display: inline;
  }
}
#prefooter{
	padding-top: 0;
	margin-top: -1px;
}
/*# sourceMappingURL=style.css.map */