@charset "UTF-8";
/* =========================================================
 * exp_irakoclinic リニューアル版 専用SCSS
 * - 既存 style.css の上に追加読み込みする想定
 * - 本採用時は style.scss に統合する
 * - スコープは .renewal 配下に限定（既存ページに影響を出さない）
 * - ビルド: npm run build:renewal （または npm run build で全部）
 * ========================================================= */
.renewal {
  color: #2a3b50;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.7;
  background: #fff;
}

.renewal * {
  box-sizing: border-box;
}

.renewal img {
  max-width: 100%;
  height: auto;
}

.renewal .r-section__head {
  text-align: center;
  margin: 60px auto 30px;
}

.renewal .r-section__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 38px;
  letter-spacing: 0.05em;
  color: #2b53af;
  margin: 0;
  font-weight: 700;
}

@media only screen and (max-width: 770px) {
  .renewal .r-section__title {
    font-size: 28px;
  }
}

.renewal .r-section__title-sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #2a3b50;
  margin-top: 6px;
  letter-spacing: 0.1em;
}

.renewal .r-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.renewal .r-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.renewal .r-btn--primary {
  background: #2b53af;
  color: #fff;
}

.renewal .r-btn--outline {
  background: #fff;
  color: #2b53af;
  border: 1px solid #2b53af;
}

.renewal .r-btn--text {
  background: transparent;
  color: #2b53af;
  padding: 6px 0;
}

.renewal .r-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.renewal .r-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

@media only screen and (max-width: 770px) {
  .renewal .r-hero {
    min-height: 460px;
  }
}

.renewal .r-hero__slider {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.renewal .r-hero__slider .swiper-wrapper,
.renewal .r-hero__slider .swiper-slide {
  height: 100%;
}

.renewal .r-hero__slider .swiper-slide {
  list-style: none;
}

.renewal .r-hero__slider picture {
  display: block;
  width: 100%;
  height: 100%;
}

.renewal .r-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.renewal .r-hero__pagination {
  display: none !important;
}

.renewal .r-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
  min-height: 520px;
}

@media only screen and (max-width: 770px) {
  .renewal .r-hero__inner {
    padding: 0;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.renewal .r-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 770px) {
  .renewal .r-hero__copy {
    padding: 0 20px 24px;
    width: 100%;
  }
}

.renewal .r-hero__lead {
  display: inline-block;
  background: #2b53af;
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 770px) {
  .renewal .r-hero__lead {
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  }
}

.renewal .r-hero__title {
  font-size: 40px;
  line-height: 1.4;
  margin: 0 0 20px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 22px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 770px) {
  .renewal .r-hero__title {
    font-size: 22px;
    line-height: 1.5;
    padding: 8px 14px;
    border-radius: 4px;
    margin: 0 0 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

.renewal .r-hero__title-em {
  color: #2b53af;
}

.renewal .r-hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.renewal .r-hero__badges li {
  background: #fff;
  border: 1px solid #2b53af;
  color: #2b53af;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 4px;
}

.renewal .r-medicals {
  padding: 60px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.renewal .r-medicals__head {
  text-align: center;
  margin-bottom: 40px;
}

.renewal .r-medicals__heading {
  font-family: "Lato", sans-serif;
  font-size: 65px;
  color: #072c7e;
  letter-spacing: 1px;
  margin: 0;
  font-weight: lighter;
  line-height: 1.1;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals__heading {
    font-size: 42px;
  }
}

.renewal .r-medicals__sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #444444;
  font-weight: lighter;
  margin: 0;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals__sub {
    font-size: 16px;
  }
}

.renewal .r-medicals__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.renewal .r-medicals__item {
  background: #f3f3f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.renewal .r-medicals__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #2b53af;
  border-radius: 12px 0 0 12px;
}

.renewal .r-medicals__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(58, 141, 222, 0.15);
}

.renewal .r-medicals__body {
  padding: 32px 32px 64px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.renewal .r-medicals__title {
  display: inline-block;
  margin: 0 0 12px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #555;
  font-size: 15px;
  font-weight: 600;
  color: #2a3b50;
  line-height: 1.5;
}

.renewal .r-medicals__text {
  font-size: 14px;
  margin: 0 0 16px;
  color: #555;
  text-align: justify;
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.renewal .r-medicals__more {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #2b53af;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.renewal .r-medicals__more:hover {
  opacity: 0.7;
}

.renewal .r-medicals__more i {
  font-size: 14px;
}

.renewal .r-medicals-cta {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals-cta {
    flex-direction: column;
    gap: 16px;
  }
}

.renewal .r-medicals-online {
  display: block;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 2px solid #2b53af;
  border-radius: 16px;
  padding: 0;
  text-decoration: none;
  color: #2a3b50;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.renewal .r-medicals-online::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #2b53af 0%, #214086 100%);
}

.renewal .r-medicals-online:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(58, 141, 222, 0.18);
}

.renewal .r-medicals-online:hover .r-medicals-online__arrow i {
  transform: translateX(4px);
}

.renewal .r-medicals-online__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 36px 28px 42px;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals-online__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 24px 24px 28px;
    text-align: center;
  }
}

.renewal .r-medicals-online__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43, 83, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.renewal .r-medicals-online__icon i {
  font-size: 28px;
  color: #2b53af;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals-online__icon {
    margin: 0 auto;
  }
}

.renewal .r-medicals-online__body {
  min-width: 0;
}

.renewal .r-medicals-online__label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #2b53af;
  margin: 0 0 4px;
  font-weight: 700;
}

.renewal .r-medicals-online__title {
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: 700;
  color: #2a3b50;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals-online__title {
    font-size: 18px;
  }
}

.renewal .r-medicals-online__text {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

.renewal .r-medicals-online__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b53af;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.renewal .r-medicals-online__arrow i {
  font-size: 22px;
  transition: transform 0.25s;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals-online__arrow {
    justify-content: center;
  }
}

.renewal .r-medicals-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d4e3f5;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.25s;
}

.renewal .r-medicals-banner:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.renewal .r-medicals-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

@media only screen and (max-width: 770px) {
  .renewal .r-medicals-banner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.renewal .r-reserve {
  padding: 80px 24px;
  background: linear-gradient(135deg, #2b53af 0%, #1f3c7e 100%);
  color: #fff;
}

.renewal .r-reserve__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.renewal .r-reserve__head {
  text-align: center;
  margin-bottom: 40px;
}

.renewal .r-reserve__en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin: 0 0 8px;
}

.renewal .r-reserve__title {
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 700;
}

@media only screen and (max-width: 770px) {
  .renewal .r-reserve__title {
    font-size: 22px;
  }
}

.renewal .r-reserve__lead {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
  line-height: 1.7;
}

.renewal .r-reserve__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media only screen and (max-width: 770px) {
  .renewal .r-reserve__contents {
    grid-template-columns: 1fr;
  }
}

.renewal .r-reserve__col {
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}

.renewal .r-reserve__col-label {
  font-size: 14px;
  margin: 0 0 16px;
  font-weight: 700;
  display: block;
}

.renewal .r-reserve__col-label i {
  margin-right: 6px;
}

.renewal .r-reserve__col--tel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.renewal .r-reserve__col--tel .r-reserve__col-label {
  opacity: 0.9;
}

.renewal .r-reserve__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.renewal .r-reserve__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 16px;
  flex: 1;
  padding: 16px 22px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.renewal .r-reserve__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.renewal .r-reserve__btn--blue {
  background: #072c7e;
}

.renewal .r-reserve__btn--green {
  background: #0ba287;
}

.renewal .r-reserve__btn--red {
  background: #c0392b;
}

.renewal .r-reserve__btn-icon {
  position: relative;
  display: inline-block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.renewal .r-reserve__btn-icon .fa-mobile-alt {
  position: absolute;
  right: -10px;
  bottom: -2px;
  font-size: 18px;
}

.renewal .r-reserve__btn-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

@media only screen and (max-width: 770px) {
  .renewal .r-reserve__btn-title {
    font-size: 17px;
  }
}

.renewal .r-reserve__btn-badge {
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}

.renewal .r-reserve__tel {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 38px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 16px;
  transition: opacity 0.2s;
}

.renewal .r-reserve__tel:hover {
  opacity: 0.85;
}

@media only screen and (max-width: 770px) {
  .renewal .r-reserve__tel {
    font-size: 30px;
  }
}

.renewal .r-reserve__hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.renewal .r-reserve__hours li {
  font-size: 13px;
  padding: 3px 0;
  opacity: 0.95;
}

.renewal .r-doctor {
  max-width: 1300px;
  margin: 3% auto;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor {
    margin: 24px auto;
  }
}

.renewal .r-doctor__main {
  display: flex;
  align-items: stretch;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__main {
    flex-direction: column;
  }
}

.renewal .r-doctor__img {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.renewal .r-doctor__img img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__img {
    width: 100%;
  }
  .renewal .r-doctor__img img {
    height: 240px;
  }
}

.renewal .r-doctor__wrap {
  width: 50%;
  display: flex;
  align-items: center;
  background: #0ba287;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__wrap {
    width: 100%;
  }
}

.renewal .r-doctor__body {
  height: 390px;
  padding: 2% 15% 2% 3%;
  box-sizing: border-box;
  color: #fff;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: lighter;
  text-align: justify;
  text-justify: inter-ideograph;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__body {
    height: auto;
    padding: 24px 20px;
  }
}

.renewal .r-doctor__en {
  font-family: "Lato", sans-serif;
  font-size: 55px;
  letter-spacing: 1px;
  font-weight: lighter;
  opacity: 0.3;
  margin: 0;
  line-height: 1.1;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__en {
    font-size: 36px;
  }
}

.renewal .r-doctor__name {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: lighter;
  font-size: 20px;
  margin: 3% 0 4%;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__name {
    font-size: 16px;
    margin: 6px 0 12px;
  }
}

.renewal .r-doctor__text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 12px;
  font-weight: lighter;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__text {
    font-size: 13px;
    line-height: 1.7;
  }
}

.renewal .r-doctor__btn {
  display: flex;
  justify-content: flex-end;
}

.renewal .r-doctor__btn a {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 2px 20px;
  line-height: 2em;
  font-size: 14px;
  margin-top: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.renewal .r-doctor__btn a:hover {
  opacity: 0.85;
}

.renewal .r-doctor__btn a i {
  margin-left: 6px;
  font-size: 14px;
  color: #0ba287;
}

.renewal .r-doctor__media {
  max-width: 560px;
  margin: 32px auto 0;
  padding: 0 24px;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__media {
    margin-top: 24px;
    padding: 0 20px;
    max-width: 100%;
  }
}

.renewal .r-doctor__media-label {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #2b53af;
  font-weight: 700;
  margin: 0 0 10px;
  text-align: center;
  text-transform: uppercase;
}

.renewal .r-doctor__media-label span {
  display: inline-block;
  margin-left: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #2a3b50;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: none;
}

@media only screen and (max-width: 770px) {
  .renewal .r-doctor__media-label {
    font-size: 12px;
  }
  .renewal .r-doctor__media-label span {
    display: block;
    margin: 4px 0 0;
  }
}

.renewal .r-doctor__media-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.renewal .r-doctor__media-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.is-renewal #masthead {
  display: none !important;
}

body.is-renewal .fix_btn_area.pc_none {
  display: none !important;
}

.r-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

#renewal-top.renewal {
  padding-top: 118px;
}

@media only screen and (max-width: 770px) {
  #renewal-top.renewal {
    padding-top: 72px;
  }
}

.gnav-renewal-subjects {
  background: #2b53af;
  color: #fff;
  border-bottom: 1px solid #254796;
}

.gnav-renewal-subjects__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal-subjects__inner {
    padding: 6px 16px;
  }
}

.gnav-renewal-subjects__inner p {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
}

.gnav-renewal-subjects__inner p span {
  display: inline-block;
  margin: 0 6px;
  opacity: 0.6;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal-subjects__inner p {
    font-size: 12px;
    letter-spacing: 0;
  }
  .gnav-renewal-subjects__inner p span {
    margin: 0 3px;
  }
}

.gnav-renewal {
  background: #fff;
  border-bottom: 1px solid #d4e3f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gnav-renewal__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  min-height: 80px;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__inner {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 16px;
    min-height: 56px;
  }
}

.gnav-renewal__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #2a3b50;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.gnav-renewal__brand:hover {
  opacity: 0.85;
}

.gnav-renewal__brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__brand-logo {
    width: 40px;
    height: 40px;
  }
}

.gnav-renewal__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gnav-renewal__brand-sub {
  font-size: 11px;
  color: #7a8595;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__brand-sub {
    display: none;
  }
}

.gnav-renewal__brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #2a3b50;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__brand-name {
    font-size: 15px;
  }
}

.gnav-renewal__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__list {
    order: 4;
    width: 100%;
    margin: 0;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .gnav-renewal__list.is-open {
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    border-top: 1px solid #d4e3f5;
    -webkit-overflow-scrolling: touch;
  }
}

.gnav-renewal__item,
.gnav-renewal__list > li.menu-item {
  margin: 0;
  position: relative;
}

.gnav-renewal__link,
.gnav-renewal__list > li.menu-item > a {
  display: block;
  padding: 18px 16px;
  color: #2a3b50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__link,
  .gnav-renewal__list > li.menu-item > a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f4f8;
  }
}

.gnav-renewal__link::after,
.gnav-renewal__list > li.menu-item > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 2px;
  background: #2b53af;
  transform: scaleX(0);
  transition: transform 0.2s;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__link::after,
  .gnav-renewal__list > li.menu-item > a::after {
    display: none;
  }
}

.gnav-renewal__link:hover,
.gnav-renewal__list > li.menu-item > a:hover {
  color: #2b53af;
}

.gnav-renewal__link:hover::after,
.gnav-renewal__list > li.menu-item > a:hover::after {
  transform: scaleX(1);
}

.gnav-renewal__list > li.menu-item.current-menu-item > a {
  color: #2b53af;
}

.gnav-renewal__list > li.menu-item.current-menu-item > a::after {
  transform: scaleX(1);
}

.gnav-renewal__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 10;
}

.gnav-renewal__list .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: #2a3b50;
  text-decoration: none;
  font-size: 13px;
}

.gnav-renewal__list .sub-menu li a:hover {
  background: #ddecfd;
  color: #2b53af;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #f7f9fc;
  }
  .gnav-renewal__list .sub-menu li a {
    padding: 12px 20px 12px 36px;
    font-size: 14px;
    border-bottom: 1px solid #eef2f7;
  }
}

.gnav-renewal__list > li.menu-item:hover > .sub-menu,
.gnav-renewal__list > li.menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gnav-renewal__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__contact {
    order: 2;
    margin-left: auto;
    margin-right: 8px;
    display: none;
  }
}

.gnav-renewal__addr {
  margin: 0;
  font-size: 12px;
  color: #7a8595;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gnav-renewal__addr i {
  color: #2b53af;
  font-size: 12px;
}

@media only screen and (max-width: 1100px) {
  .gnav-renewal__addr span {
    display: none;
  }
}

.gnav-renewal__cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2a3b50;
  text-decoration: none;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.gnav-renewal__cta-tel i {
  color: #2b53af;
  font-size: 18px;
}

.gnav-renewal__cta-tel:hover {
  opacity: 0.85;
}

.gnav-renewal__toggle {
  display: none;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}

@media only screen and (max-width: 770px) {
  .gnav-renewal__toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px 4px;
  }
  .gnav-renewal__toggle .gnav-renewal__toggle-label {
    display: none;
  }
}

.gnav-renewal__toggle[aria-expanded="true"] .gnav-renewal__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.gnav-renewal__toggle[aria-expanded="true"] .gnav-renewal__toggle-bar:nth-child(2) {
  opacity: 0;
}

.gnav-renewal__toggle[aria-expanded="true"] .gnav-renewal__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.gnav-renewal__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #2a3b50;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.gnav-renewal__toggle-label {
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}

.gnav-renewal__notice {
  width: 100%;
  margin: 0;
  padding: 6px 16px;
  background: #fff8ec;
  color: #b07d2a;
  font-size: 12px;
  border-top: 1px solid #f0e0c0;
}

.r-floating {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 770px) {
  .r-floating {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    gap: 0;
  }
}

.r-floating__group {
  display: flex;
  flex-direction: column;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.18);
}

@media only screen and (max-width: 770px) {
  .r-floating__group {
    flex-direction: row;
    flex: 3;
    border-radius: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.18);
  }
}

.r-floating__btn {
  width: 100px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 14px 8px;
  line-height: 1.3;
  transition: filter 0.2s, transform 0.2s;
  box-sizing: border-box;
}

@media only screen and (max-width: 770px) {
  .r-floating__btn {
    width: 33.333%;
    height: 64px;
    padding: 8px 4px;
    flex-direction: row;
    gap: 6px;
  }
}

.r-floating__btn:hover {
  filter: brightness(1.12);
}

.r-floating__btn--blue {
  background: #072c7e;
}

.r-floating__btn--green {
  background: #0ba287;
}

.r-floating__btn--red {
  background: #c0392b;
}

.r-floating__icon {
  font-size: 24px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 770px) {
  .r-floating__icon {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.r-floating__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

@media only screen and (max-width: 770px) {
  .r-floating__title {
    font-size: 11px;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .r-floating__title br {
    display: none;
  }
}

.r-floating__badge {
  font-size: 10px;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 770px) {
  .r-floating__badge {
    display: none;
  }
}

.r-floating__arrow {
  font-size: 12px;
  opacity: 0.9;
}

@media only screen and (max-width: 770px) {
  .r-floating__arrow {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  #renewal-top.renewal {
    padding-bottom: 64px;
  }
}

.clinic-introduction-mc {
  max-width: 900px;
  margin: 40px auto 60px;
}

.clinic-introduction-mc * {
  box-sizing: border-box;
}

.clinic-introduction-mc .medicals_area3 .m_a3_wrap {
  display: block;
  margin: 0;
}

.clinic-introduction-mc .medicals_area3 .mission,
.clinic-introduction-mc .medicals_area3 .credo {
  width: auto;
  margin: 0;
  padding: 40px 36px;
  border-radius: 6px;
}

.clinic-introduction-mc .medicals_area3 .credo {
  margin-top: 24px;
}

.clinic-introduction-mc .medicals_area3 .mission h2,
.clinic-introduction-mc .medicals_area3 .credo h2 {
  font-size: 46px;
  line-height: 1.1;
}

.clinic-introduction-mc .medicals_area3 .mission h4,
.clinic-introduction-mc .medicals_area3 .credo h4 {
  margin: 14px 0 0;
  font-size: 16px;
}

.clinic-introduction-mc .medicals_area3 .mission p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.clinic-introduction-mc .medicals_area3 .credo .credo_w {
  margin-top: 22px;
}

.clinic-introduction-mc .medicals_area3 .credo .credo_w > div {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 8px;
}

.clinic-introduction-mc .medicals_area3 .credo .credo_w > div p {
  width: auto;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.clinic-introduction-mc .medicals_area3 .credo .credo_w > div p:first-child {
  flex: 0 0 auto;
}

.clinic-introduction-mc .medicals_area3 .credo .credo_w > div p:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

@media only screen and (max-width: 770px) {
  .clinic-introduction-mc {
    margin: 24px auto 40px;
  }
  .clinic-introduction-mc .medicals_area3 .mission h2,
  .clinic-introduction-mc .medicals_area3 .credo h2 {
    font-size: 36px;
  }
  .clinic-introduction-mc .medicals_area3 .mission,
  .clinic-introduction-mc .medicals_area3 .credo {
    padding: 28px 22px;
  }
}

.anchor-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
  align-content: start;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media only screen and (max-width: 770px) {
  .anchor-buttons {
    gap: 12px;
    margin: 24px auto;
  }
}

.anchor-buttons__item {
  min-width: 0;
  vertical-align: top;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #f3f3f3;
  border-left: 4px solid #072c7e;
  border-radius: 6px;
  text-decoration: none;
  color: #072c7e;
  position: relative;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 6px rgba(7, 44, 126, 0.06);
}

.anchor-buttons__item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(7, 44, 126, 0.15);
}

.anchor-buttons__item:hover .anchor-buttons__arrow {
  transform: translateY(3px);
  color: #0ba287;
}

@media only screen and (max-width: 770px) {
  .anchor-buttons__item {
    padding: 16px 18px;
  }
}

.anchor-buttons__num {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: lighter;
  color: #2b53af;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 770px) {
  .anchor-buttons__num {
    font-size: 26px;
  }
}

.anchor-buttons__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.anchor-buttons__title {
  font-size: 15px;
  font-weight: bold;
  color: #072c7e;
  line-height: 1.4;
}

@media only screen and (max-width: 770px) {
  .anchor-buttons__title {
    font-size: 14px;
  }
}

.anchor-buttons__text {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  font-weight: lighter;
}

@media only screen and (max-width: 770px) {
  .anchor-buttons__text {
    font-size: 11px;
  }
}

.anchor-buttons__arrow {
  font-size: 16px;
  color: #2b53af;
  flex-shrink: 0;
  transition: transform 0.25s, color 0.25s;
}
