@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #471f39;
  --white-color: #fff;
  --primary-color: #d94a7a;
  --accsent-color: #2f7ed8;
  --sub-color01: #f6f6f6;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width: 600px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

:root {
  /* fontfamily管理用の変数 */
  --zenkaku-gothic-new: "Zen Kaku Gothic New", sans-serif;
  --shippori-mincho: "Shippori Mincho", serif;
}

/* ---------- base ---------- */
html {
  overflow-x: hidden;
}

body {
  color: var(--black-color);
  background-color: var(--white-color);
  font-size: 16px;
  font-family: var(--zenkaku-gothic-new);
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.cta-line {
  position: relative;
}

.cta-line__btn {
  position: absolute;
  padding: clamp(1rem, 4vw, 2rem) clamp(1.5rem, 6vw, 3rem) clamp(2.5rem, 8vw, 4rem);
  padding-bottom: 0;
  padding-top: 0;
  bottom: 0;
  left: 0;
}

/* ---------- utility ---------- */
.u_visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout ---------- */

.l_container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

/* LP本体を600px固定で中央寄せ（左右は白余白） */
main {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  background: var(--white-color);
}

/* ---------- header ---------- */

/* ---------- footer ---------- */
.l_footer {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #d82461;
  padding: 0;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(160px, 45vw, 210px);
}

.l_footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.l_footer-logo_img {
  display: block;
  margin: clamp(8px, 1vw, 16px) auto clamp(8px, 1vw, 16px) auto;
  max-width: clamp(160px, 30vw, 318px);
  height: auto;
}

.l_footer-copy {
  color: #fff;
  font-size: clamp(10px, 3vw, 14px);
  margin: 0;
  letter-spacing: 0.08em;
}

/* ===== フッターCTA固定・デザイン ===== */
.l_footer-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 600px;
  min-width: 0;
  display: none;
  justify-content: center;
  background: #f48a9d;
  z-index: 1000;
  border-top: 1px solid #3a0000;
  box-sizing: border-box;
  margin: 0 auto;
}

.l_footer-cta.is-visible {
  display: flex;
}

.l_footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(150px, 40vw, 230px);
  z-index: -1;
  padding: clamp(4px, 1vw, 8px);
}

.l_footer-bg_img {
  width: 100%;
  height: 100%;
  display: block;
}

.l_footer-cta_btn {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: none;
  transition:
    background 0.2s,
    color 0.2s;
}

/* .l_footer-cta_btn:not(:last-child) {
  border-right: 1px solid #3a0000;
} */
/* .l_footer-cta_btn:hover {
  background: #e97a9c;
} */
.l_footer-cta_btn img {
  width: 70%;
  height: auto;
}

.l_footer-cta_btn img.l_footer-cta_img__nomal {
  width: 100%;
}

/* ---------- FV ---------- */
.lp_fv {
  position: relative;
  margin: 0 auto;
}

/* ---------- CTA ---------- */
.lp_cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* 追従用CTA（FVのlp_ctaのクローン、100vh超で新規表示） */
.lp_cta--fixed {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 600px;
  z-index: 1000;
  box-sizing: border-box;
  display: none;
}

.lp_cta--fixed.is-visible {
  display: block;
}

.lp_cta-list {
  list-style: none;
  padding: 0 clamp(1rem, 10%, 3rem) clamp(0.5rem, 3%, 1rem) clamp(0.5rem, 10%, 1.5rem);
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
  position: absolute;
  bottom: 0;
}

.lp_cta-item {
  width: clamp(3rem, 20%, 6rem);
  text-align: center;
}

.lp_cta-item:first-child {
  width: clamp(4.5rem, 30%, 8.5rem);
  margin-right: -1rem;
}

.lp_cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp_cta-link_icon {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- trust ---------- */
.lp_section-trust {
  background-image: url(../img/trust-bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 120%;
  padding: clamp(1rem, 4vw, 2rem) 0 clamp(1rem, 6vw, 2rem);
  margin-bottom: clamp(2rem, 6.4vw, 3rem);
}

.lp_section-trust_inner {
  max-width: 600px;
}

.lp_section-trust_img {
  width: 65%;
  height: auto;
  margin: 0 auto clamp(0.5rem, 1.5vw, 1rem) auto;
  display: block;
}

.lp_trust-achievement {
  text-align: center;
  margin-bottom: clamp(0.8rem, 2.5vw, 1.5rem);
}

.lp_trust-achievement_label {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 700;
  font-family: var(--shippori-mincho);
  color: #fff;
  padding: 0 1rem;
  line-height: 1.3;
}

.lp_trust-achievement_label-wrap {
  display: inline-block;
  background: linear-gradient(to right, #d16183 0%, #ea74a2 50%, #cf5e7f 100%);
  letter-spacing: 0.01rem;
}

.lp_trust-achievement_labelStrong {
  font-size: clamp(1.3rem, 5vw, 2rem);
  font-weight: 800;
  font-family: var(--shippori-mincho);
  font-style: italic;
}

.lp_trust-achievement_title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  font-family: var(--shippori-mincho);
  background: linear-gradient(to bottom,
      #c7a34a 0%,
      #c7a34a 30%,
      #ecde76 50%,
      #a37613 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  line-height: 1.2;
  font-style: italic;
  letter-spacing: -0.1rem;
}

.lp_trust-achievement_titleStrong {
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: #b88c4a;
  font-weight: 700;
  margin-left: 6px;
}

.lp_trust-ranking_img-wrap {
  text-align: center;
  margin: clamp(-20px, -4vw, -10px) auto 0;
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 clamp(0.5rem, 3vw, 1rem) 0 0;
}

.lp_trust_text {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 600;
  font-style: italic;
  color: #d82461;
  font-family: var(--shippori-mincho);
  text-align: center;
}

.lp_trust_text span {
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 600;
  display: block;
  margin-top: -10px;
}

/* ---------- branches ---------- */
.lp_branches {
  width: 100%;
  height: clamp(230px, 61.3vw, 380px);
  background: var(--white-color);
  position: relative;
  margin-bottom: clamp(1.5rem, 6.4vw, 3rem);
}

.lp_branches-media {
  margin: 0;
}

.lp_branches-media_img {
  width: 70%;
  height: 90%;
  display: block;
}

.lp_branches-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(60% 10%, 100% 10%, 100% 100%, 35% 100%);
  background: #e56d9c;
  color: #000;
}

.lp_branches-panel_center {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(44% 45%, 100% 45%, 100% 78%, 35% 78%);
  background: #fff799;
}

.lp_branches-panel_text-wrap {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  transform: translateY(-30%);

}

@media screen and (max-width: 600px) {
  .lp_branches-panel_text-wrap {
    transform: translateY(-35%);
  }
}

.lp_branches-panel_text {
  position: relative;
  transform-style: preserve-3d;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 600;
  font-family: var(--shippori-mincho);
  background: #fff;
  border: 1px solid #555;
  width: fit-content;
  padding: 6px 12px;
  line-height: 24px;
  letter-spacing: 0.02rem;
}

.lp_branches-panel_text::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  transform: translateZ(-1px);
}

@media screen and (max-width: 600px) {
  .lp_branches-panel_text {
    padding: 3px 10px;
  }
}

.lp_branches-panel_text--top {
  transform: translateX(-20%);
}

.lp_branches-panel_text span {
  font-size: clamp(24px, 9vw, 36px);
  color: #d82461;
  line-height: 24px;
}

.lp_branches-panel_text span:last-child {
  font-size: clamp(20px, 7vw, 28px);
}

.lp_branches-decor {
  position: absolute;
  top: 20%;
  right: 2%;
  width: 50%;
  height: 80%;
}

.lp_branches-title {
  margin: 0 0 clamp(1.5rem, 6.5vw, 3rem) 0;
  font-family: var(--shippori-mincho);
  font-size: clamp(20px, 5.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01rem;
  text-align: right;
  color: #fff;
}

.lp_branches-titleStrong {
  font-size: clamp(32px, 9vw, 44px);
  color: #fff799;
  font-style: italic;
}

.lp_branches-titleColor {
  color: #fff799;
}

.lp_branches-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1rem, 4vw, 2rem) 0;
}

.lp_branches-item {
  font-size: clamp(14px, 4vw, 25px);
  font-family: var(--shippori-mincho);
  font-weight: 700;
  color: #1b1b1b;
}

.lp_branches-item img {
  width: clamp(16px, 4vw, 28px);
  height: clamp(14px, 4vw, 24px);
  vertical-align: middle;
  margin-right: clamp(6px, 2vw, 10px);
}

.lp_branches-note {
  margin: 0;
  font-size: clamp(20px, 6vw, 36px);
  font-weight: 700;
  text-align: left;
  color: #fff;
  font-family: var(--shippori-mincho);
  display: flex;
  align-items: flex-end;
  line-height: 1.3;
}

.lp_branches-note img {
  width: clamp(23px, 5vw, 40px);
  height: clamp(18px, 5vw, 32px);
  vertical-align: middle;
  margin-right: clamp(6px, 2vw, 10px);
  margin-bottom: 0.3rem;
}

.lp_branches-note_text {
  font-size: clamp(27px, 5vw, 40px);
  color: #fff799;
  font-weight: 700;
  vertical-align: middle;
}

/* ---------- contact ---------- */
.lp_section-contact {
  background: #F8E4E9;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_contact-title_img-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.lp_contact-title_img-wrap {
  width: 50%;
}

.lp_contact-title_wrap {
  width: 100%;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.lp_contact-title_sub {
  font-size: clamp(21px, 6vw, 30px);
  font-family: var(--shippori-mincho);
  font-weight: 600;
  color: #e73974;
  line-height: 1.3;
  padding: 0 0 clamp(1rem, 4vw, 2rem) 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.lp_contact-title_wrap::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F8E4E9;
  clip-path: polygon(50% 10%, 0% 100%, 100% 100%);
  z-index: 1;
}

.lp_contact-title {
  text-align: center;
  font-size: clamp(28px, 7vw, 40px);
  font-family: var(--shippori-mincho);
  background: linear-gradient(to right, #6d4008 0%, #c38d3f 50%, #9f6b24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 clamp(1.5rem, 4vw, 3rem) 0;
  font-weight: 600;
  line-height: 1.2;
}

.lp_contact-body {
  position: relative;
  background: #fff;
  border: 2px solid #E7518A;
  padding: clamp(1.8rem, 5vw, 3rem) clamp(1rem, 5vw, 2rem) clamp(1rem, 5vw, 2rem) clamp(2rem, 5vw, 3rem);
}

.lp_contact_head {
  position: absolute;
  top: clamp(-15px, -4vw, -14px);
  left: 50%;
  transform: translateX(-50%);
  background: #E7518A;
  color: #fff;
  font-weight: 500;
  font-size: clamp(20px, 5.5vw, 28px);
  font-family: var(--shippori-mincho);
  padding: 0 clamp(8px, 2vw, 12px);
  white-space: nowrap;
  line-height: 1.5;
}

.lp_contact_head span {
  color: #F4F125;
}

.lp_contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(2px, 1vw, 4px);
}

.lp_contact-item {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.03rem;
  color: #000;
}

.lp_contact-icon {
  flex: 0 0 clamp(20px, 5vw, 28px);
  width: clamp(20px, 5vw, 28px);
  height: auto;
  margin-right: clamp(8px, 2vw, 12px);
}

.lp_contact-item span {
  color: #E7518A;
  font-weight: 600;
}



/* ---------- design ---------- */
.lp_section-design {
  background: url(../img/design-bg.webp) no-repeat top center/cover;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 6vw, 3rem);
}

.lp_trust-design {
  text-align: center;
}

.lp_trust-design_kicker {
  font-size: clamp(16px, 5vw, 30px);
  font-weight: 700;
  font-family: var(--shippori-mincho);
  color: #e73974;
  background: #fff;
  box-shadow: 3px 1.5px 0 rgb(138, 138, 138, 0.51);
  display: inline-block;
  padding: 0 clamp(1rem, 4vw, 2rem);
  line-height: 1.3;
}

.lp_trust-design_title {
  font-size: clamp(30px, 8vw, 46px);
  background: linear-gradient(to bottom, #6d4008 0%, #c38d3f 50%, #9f6b24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-family: var(--shippori-mincho);
  margin-bottom: clamp(8px, 2vw, 16px);
  line-height: 1.3;
  font-style: italic;
}

.lp_trust-design_title__big {
  font-size: clamp(46px, 12vw, 80px);
  margin-left: clamp(4px, 1vw, 8px);
  line-height: 1.3;
}

.lp_trust-design_title__under {
  font-size: clamp(46px, 12vw, 80px);
  margin-top: clamp(20px, 4.5vw, 20px);
  margin-left: clamp(4px, 1vw, 8px);
  display: inline-block;
  vertical-align: sub;
}

.lp_trust-design_media {
  text-align: center;
  margin-bottom: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.lp_trust-design_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.lp_trust-design_body {
  font-size: clamp(13px, 3.4vw, 22px);
  color: #471f39;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  margin: 0 auto;
  font-weight: 500;
}

.lp_trust-design_text span {
  color: #e73974;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      #fff799 50%,
      #fff799 100%);
  font-weight: 700;
}


/* warranty */
.lp_section-warranty {
  background: url(../img/lp_section-warranty-bg.webp) no-repeat top center/cover;
  margin-top: clamp(2.5rem, 6.4vw, 3rem);
  padding-bottom: 6px;

}

.lp_warranty-head {
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 3rem);
  padding-top: 30px;
}

.lp_warranty-kicker {
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-family: var(--shippori-mincho);
}

/* .lp_warranty-kicker span {
  background: linear-gradient(to bottom, #6d4008 0%, #c38d3f 50%, #9f6b24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
} */

/* .lp_warranty-title {
  background: url(../img/warranty-title-bg.webp) no-repeat top center/contain;
} */
.lp_warranty-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96%;
  margin: 0 auto;
}

.lp_warranty-titleSmall {
  display: block;
  font-family: var(--shippori-mincho);
  font-size: clamp(30px, 8vw, 46px);
  font-weight: 600;
  line-height: 1.2;
}

.lp_warranty-titleMain {
  display: block;
  font-size: clamp(34px, 8vw, 54px);
  font-weight: 600;
  font-family: var(--shippori-mincho);
  background: linear-gradient(to bottom, #4374ad 0%, #70c5e1 50%, #5998d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.img-wrap {
  width: 10%;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .img-wrap {
    width: 13%;
  }
}

.lp_warranty-cards {
  display: grid;
  margin-bottom: clamp(1rem, 4vw, 2rem);
  padding: 0 1rem;
}

.lp_warranty-card {
  background: url(../img/warranty-card-bg.webp) no-repeat top center/ cover;
  position: relative;
  width: auto;
  height: clamp(190px, 50vw, 320px);
}

.lp_warranty-ribbon {
  position: absolute;
  top: clamp(18px, 5.5vw, 36px);
  left: clamp(22px, 6vw, 30px);
  transform: rotate(-5deg);
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 500;
  font-family: var(--shippori-mincho);
  width: 70%;
  text-align: center;
}

.lp_warranty-cardInner {
  padding: clamp(5rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 6vw, 4rem);
  text-align: center;
}

@media screen and (max-width: 600px) {
  .lp_warranty-cardInner {
    padding: clamp(3.5rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 6vw, 4rem);
  }
}

@media screen and (max-width: 400px) {
  .lp_warranty-cardInner {
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 6vw, 4rem);
  }
}

.lp_warranty-cardTitle {
  font-size: 36px;
  font-family: var(--shippori-mincho);
  color: #000;
  margin-top: clamp(10px, 1.5vw, 32px);
  line-height: 1.3;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .lp_warranty-cardTitle {
    font-size: 22px;
  }
}

.lp_warranty-cardTitle span {
  color: #E7518A;
}

.lp_warranty-cardTitle--sm {
  font-size: 24px;
}

@media screen and (max-width: 600px) {
  .lp_warranty-cardTitle--sm {
    font-size: 16px;
  }
}

.lp_warranty-cardTitle--sm span {
  font-size: 40px;
}

@media screen and (max-width: 600px) {
  .lp_warranty-cardTitle--sm span {
    font-size: 32px;
  }
}

.lp_warranty-cardText {
  font-size: clamp(13.5px, 3.5vw, 20px);
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: #000;
  margin-top: 8px;
}

@media screen and (max-width: 400px) {
  .lp_warranty-cardText {
    font-size: 12px;
  }
}

.lp_warranty-note {
  font-size: clamp(8px, 2vw, 12px);
  text-align: right;
  letter-spacing: 0.01rem;
  margin-top: clamp(8px, 2vw, 12px);
  margin-right: clamp(8px, 2vw, 12px);
  font-weight: 500;
}

/* warranty-cta */
.lp_warranty-cta {
  display: grid;
  background: #F8E4E9;
  padding: clamp(1rem, 4vw, 2rem) clamp(1.5rem, 6vw, 3rem) clamp(2.5rem, 8vw, 4rem);
}

.lp_warranty-btn {
  display: block;
  text-decoration: none;
}


.lp_warranty-hours {
  font-size: clamp(12px, 3.4vw, 18px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08rem;
}


/* ---------- points  ---------- */
.lp_section-points {
  background: url(../img/points-bg.webp) no-repeat top center/cover;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.lp_section-points_inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(160px, 45vw, 270px) 0 clamp(32px, 4vw, 60px);
}

.lp_points-title {
  text-align: center;
}

.lp_points-list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 12vw, 60px);
}

.lp_point {
  background: url(../img/point-article-bg.webp) no-repeat -40px -40px/120% auto;
  border-radius: 0 90px 0 0;
  box-shadow: 0 2px 12px rgba(30, 17, 96, 0.1);
  border: 1px solid #fff;
  padding: clamp(1rem, 4vw, 2rem);
  position: relative;
}

.lp_point:first-child {
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_point__left {
  border-radius: 90px 0 0 0;
}

.lp_point-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp_point_title-wrap {
  text-align: center;
  margin-bottom: clamp(12px, 3vw, 24px);
  position: relative;
}

.lp_point-label {
  font-size: clamp(14px, 4vw, 18px);
  font-family: var(--shippori-mincho);
  color: #471f39;
  font-weight: 600;
  letter-spacing: 0.01rem;
  display: inline-block;
  width: clamp(100px, 30%, 180px);
  background: #fff;
  border-radius: 100px 100px 0 0;
  position: relative;
  z-index: 2;
}

.lp_point-label span {
  display: block;
  font-size: clamp(24px, 6vw, 38px);
  margin-top: -18px;
  letter-spacing: 0.01rem;
}

.lp_point-title {
  display: inline-block;
  width: clamp(240px, 90%, 400px);
  max-height: clamp(90px, 30vw, 180px);
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 600;
  color: #d82461;
  font-family: var(--shippori-mincho);
  text-align: center;
  background: #fff;
  box-shadow: 2px 2px 10px rgba(90, 91, 91, 0.51);
  padding: clamp(12px, 4vw, 16px) clamp(8px, 2vw, 12px) clamp(16px, 3vw, 32px);
  margin-top: -16px;
}

.lp_point-title__small {
  font-size: clamp(13px, 3.5vw, 20px);
  letter-spacing: 0.05rem;
}

.lp_point-title span {
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 500;
  display: block;
  margin-top: -10px;
}

.lp_point-title span.lp_point-title__s {
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.1;
  margin-top: 0;
}

.lp_point-body {
  width: 100%;
  text-align: left;
}

.lp_point-text {
  font-size: clamp(14px, 4vw, 24px);
  line-height: 1.3;
  letter-spacing: 0.05rem;
  padding-top: clamp(16px, 4vw, 24px);
  text-align: left;
}

.lp_point-text__left {
  padding-left: clamp(80px, 25%, 120px);
  padding-bottom: clamp(20px, 6vw, 40px);
}

.lp_point-text__bottom {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

.lp_point-media {
  width: 100%;
}

.lp_point-figure {
  width: clamp(100px, 25vw, 150px);
  height: auto;
  position: absolute;
  bottom: 0;
  left: clamp(-2rem, -4vw, -1rem);
}

.lp_point-figure-sub {
  width: clamp(150px, 25vw, 200px);
  height: auto;
  position: absolute;
  bottom: clamp(-5rem, -6vw, -4rem);
  left: clamp(13rem, 63vw, 25rem);
}

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

.lp_point-figure_list {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: auto;
}

.lp_point-figure_item {
  width: clamp(110px, 28vw, 150px);
  height: clamp(100px, 25vw, 150px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0 0 0 clamp(1.5rem, 2vw, 1.8rem);
  background: url(../img/baburu.webp) no-repeat center/cover;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  font-family: var(--shippori-mincho);
  color: #d82461;
  line-height: 1.2;
  /* 文字に白い縁取りシャドウを強く付与 */
  text-shadow:
    0 0 4px #fff,
    0 0 8px #fff,
    0 0 12px #fff,
    0 2px 12px #fff,
    0 4px 16px #fff,
    0 2px 0 #fff,
    0 -2px 0 #fff,
    2px 0 0 #fff,
    -2px 0 0 #fff;
  letter-spacing: 0.04em;
}

.lp_point-figure_item__small {
  font-size: clamp(0.8rem, 3.2vw, 1.3rem);
  padding: 0 0 0 clamp(1.1rem, 4.3vw, 1.1rem);
}

.lp_point-figure_list__absolute li {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

.lp_point-figure_list__absolute li:first-child {
  top: -5rem;
  left: 0;
  transform: translateX(0);
  padding: 0 0 0 clamp(1.2rem, 3vw, 1.4rem);
}

.lp_point-figure_list__absolute li:last-child {
  top: -5rem;
  left: auto;
  right: 0;
  transform: translateX(0);
  padding: 0 0 0 clamp(1.2rem, 3vw, 2rem);
}

.lp_point-figure_list-wrap__absolute {
  position: relative;
  width: 100%;
  margin-bottom: clamp(2rem, 8vw, 5rem);
}

.lp_point-figure_list-wrap__absolute ul {
  position: absolute;
  top: clamp(-3rem, -5vw, -4rem);
  left: 0;
  width: 100%;
  height: 100%;
}

.lp_point-figure_list-wrap__absolute ul li {
  padding: 0 0 0 clamp(1.2rem, 3vw, 1.8rem);
  font-size: clamp(0.9rem, 3.5vw, 1.3rem);
}

.lp_point-figure_list-wrap__absolute ul li:last-child {
  font-size: clamp(0.7rem, 3vw, 1rem);
  padding: 0 0 0 clamp(0.9rem, 4vw, 1.5rem);
}

.lp_point-img_wrap {
  width: clamp(170px, 50vw, 300px);
  height: auto;
  margin: 0 auto;
}

.lp_point-img_wrap__wide {
  width: clamp(230px, 60vw, 400px);
}

/* ---------- proof ---------- */
.lp_section-proof {
  background: url(../img/proof-bg.webp) no-repeat top center/cover;
}

.lp_section-proof_inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lp_proof-head {
  margin-bottom: clamp(12px, 3vw, 24px);
}

.lp_proof-head_award {
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.lp_proof-lead {
  font-size: clamp(20px, 5vw, 36px);
  color: #471f39;
  margin-bottom: clamp(10px, 3vw, 20px);
  font-weight: 600;
  font-family: var(--shippori-mincho);
  position: relative;
}

.lp_proof-lead::after {
  content: "";
  display: block;
  width: clamp(25px, 7vw, 40px);
  height: clamp(25px, 7vw, 40px);
  background: url(../img/bubble-02.webp) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: -1.5rem;
}

.lp_proof-leadStrong {
  background: #d82461;
  color: #fff;
  padding: 0 0.2rem;
}

.lp_proof-leadSub {
  display: block;
  font-size: clamp(20px, 5vw, 36px);
  margin-top: 2px;
}

.lp_proof-kpi {
  width: 100%;
  padding: 0 1rem;
}

/* ---------- cases ---------- */
.lp_section-cases {
  background: #fcf9f3;
}

.lp_section-cases_inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp_cases-title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 500;
  font-family: var(--shippori-mincho);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  background: url(../img/section-title_bg.webp) no-repeat top center/cover;
  letter-spacing: 0.04rem;
  line-height: 0.6;
  width: 100vw;
  height: clamp(128px, 35vw, 200px);
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.lp_cases-title span {
  color: #d94a7a;
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1;
}

.lp_cases-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 8vw, 40px);
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 6vw, 4rem) 0;
}

.lp_cases-group {
  margin-bottom: 0;
}

.lp_cases-group_title {
  font-size: clamp(18px, 4vw, 28px);
  font-family: var(--shippori-mincho);
  font-weight: 500;
  letter-spacing: 0.05rem;
  background: #fee6dc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
  max-width: clamp(300px, 60vw, 600px);
}

.lp_cases-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 24px);
}

.lp_cases-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp_cases-note {
  font-size: clamp(9px, 2.5vw, 14px);
  text-align: left;
  margin: clamp(4px, 1vw, 8px) 0 0;
  line-height: 1.5;
  letter-spacing: 0.01rem;
}

/* ---------- case 年齢別の矯正 ---------- */
.lp_section-age {
  background: url(../img/point-article-bg.webp) no-repeat center 0 / cover;
  margin: 0 auto;
  max-width: 600px;
  overflow: hidden;
}

.lp_section-age_inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp_age-title {
  font-size: clamp(30px, 7vw, 60px);
  font-weight: 500;
  font-family: var(--shippori-mincho);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url(../img/age-title_bg.webp) no-repeat center top/cover;
  letter-spacing: 0.04rem;
  width: 100vw;
  height: clamp(128px, 25vw, 210px);
  max-width: 600px;
  position: relative;
  top: clamp(-20px, -3vw, -10px);
  left: 50%;
  transform: translateX(-50%);
  padding-top: clamp(20px, 5vw, 32px);
}

.lp_age-title_span {
  color: #d94a7a;
}

.lp_age-list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 8vw, 48px);
  background: url(../img/age-card-bg.webp) repeat-x center top/cover;
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_age-card {
  position: relative;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.lp_age-card_no {
  font-size: clamp(34px, 8vw, 70px);
  font-family: var(--shippori-mincho);
  color: #fff;
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.04rem;
  position: absolute;
  top: clamp(-50px, -5vw, -34px);
  right: clamp(1rem, 4vw, 2rem);
  transform: rotate(-3deg);
  z-index: 2;
}

.lp_age-card_bg {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: clamp(32px, 7vw, 60px) solid transparent;
  border-left: clamp(32px, 7vw, 60px) solid transparent;
  border-bottom: clamp(380px, 100vw, 600px) solid #db688f;
  border-top: 0;
  transform: rotate(272deg);
  position: absolute;
  top: clamp(-280px, -50vw, -190px);
  right: clamp(150px, 40vw, 235px);
  z-index: 1;
}

.lp_age-card_no__re {
  right: auto;
  left: clamp(1rem, 4vw, 2rem);
  transform: rotate(3deg);
}

.lp_age-card_bg__re {
  right: auto;
  left: clamp(150px, 30vw, 235px);
  transform: rotate(-272deg);
}

.lp_age-card_title {
  font-size: clamp(26px, 6vw, 48px);
  color: #d82461;
  font-family: var(--shippori-mincho);
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: clamp(32px, 8vw, 60px) 0 clamp(8px, 2vw, 12px) 0;
  letter-spacing: 0.04rem;
  z-index: 1;
  position: relative;
}

.lp_age-card_media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(8px, 2vw, 12px);
}

.lp_age-card_img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.lp_age-card_text {
  font-size: clamp(15px, 4vw, 28px);
  color: #313131;
  text-align: center;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01rem;
}

/* ---------- case 悩みをまとめて矯正 ---------- */
.lp_section-problems_inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.lp_problems-title {
  line-height: 1.3;
}

.lp_problems-title span {
  font-size: clamp(32px, 8vw, 48px);
}

.lp_problems-block {
  background: #fff;
  box-shadow: 0 2px 12px rgba(30, 17, 96, 0.1);
  margin-bottom: clamp(18px, 4vw, 32px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  position: relative;
}

.lp_problems-block__looks {
  padding-top: clamp(3rem, 13vw, 6rem);
}

.lp_problems-subtitle {
  font-size: clamp(15px, 4vw, 28px);
  font-family: var(--shippori-mincho);
  color: #fff;
  background: #d82461;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(250px, 60vw, 400px);
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.04rem;
  box-shadow: 0.3px 0.4px 12px rgb(81, 78, 79, 0.38);
  position: absolute;
  top: clamp(-16px, -4vw, -24px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.lp_problems-block__looks .lp_problems-subtitle {
  white-space: normal;
  flex-direction: column;
}

.lp_problems-block__looks .lp_problems-subtitle span {
  color: #fff799;
}

.lp_problems-block__needs .lp_problems-subtitle {
  background: #313131;
  font-size: clamp(18px, 4.5vw, 30px);
}

.lp_needs-list,
.lp_problems-grid,
.lp_looks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 3vw, 1rem);
  background: none;
}

.lp_problems-grid .lp_problem,
.lp_needs-list .lp_need,
.lp_looks-grid .lp_look {
  width: 48%;
  height: clamp(130px, 35vw, 210px);
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(8px, 2vw, 12px);
  box-sizing: border-box;
  border: 1px solid #d82461;
}

.lp_looks-grid .lp_look {
  border: none;

}

.lp_needs-list .lp_need {
  border: transparent;
}

.lp_problem_media,
.lp_need_media,
.lp_look_media {
  width: auto;
  height: clamp(80px, 25vw, 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp_problem_media {
  padding: clamp(8px, 2vw, 12px);
}

.lp_problem_img,
.lp_need_img,
.lp_look_img {
  width: 88%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  display: block;
}

.lp_need_img,
.lp_look_img {
  width: 100%;
  max-width: 100%;
}

.lp_problem_label,
.lp_need_label,
.lp_look_label {
  font-size: clamp(12px, 3.5vw, 24px);
  color: #fff;
  background: #d82461;
  text-align: center;
  width: 100%;
  height: clamp(36px, 10vw, 70px);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}

.lp_need_label {
  background: #313131;
}

.lp_looks-grid .lp_look_label {
  color: #fff;
  background: #d82461;
}

/* ---------- case 質の高い矯正 ---------- */
.lp_quality-block {
  width: 100vw;
  max-width: 600px;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  padding: clamp(1rem, 4vw, 2rem) 0;
}

.lp_section-quality .lp_cases-title {
  line-height: 1.3;
  background: url(../img/quality-title_bg.webp) no-repeat top center/cover;
  font-size: clamp(20px, 5.5vw, 36px);
  height: clamp(180px, 45vw, 280px);
}

.lp_section-quality .lp_cases-title span {
  font-size: clamp(26px, 7vw, 44px);
}

/* ---------- case はじめてでも安心 ---------- */
.lp_section-plan {
  background: url(../img/case-bg.webp) no-repeat top center/cover;
}

.lp_section-plan_inner {
  max-width: 600px;
  margin: 0 auto clamp(2.5rem, 4vw, 5rem) auto;
}

.lp_plan-info {
  width: 100%;
}

.lp_plan-info_icon {
  width: 100%;
  height: auto;
  padding: clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 12rem);
}

.lp_plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1rem, 4vw, 2rem) 0;
}

.lp_plan-item {
  background: #fff;
  text-align: center;
  border: 1px solid #d82461;
  position: relative;
}

.lp_plan-item:first-child {
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_plan-item_title {
  font-size: clamp(24px, 6vw, 36px);
  font-family: var(--shippori-mincho);
  color: #fff;
  background: #d82461;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp_plan-item_title__gra {
  background: linear-gradient(45deg, #cf5e7f 0%, #ea74a2 50%, #cf5e7f 100%);
}

.lp_plan-item_price {
  font-size: clamp(70px, 18vw, 100px);
  font-family: var(--shippori-mincho);
  color: transparent;
  background: linear-gradient(45deg, #a87234 0%, #d6a460 50%, #a87234 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3rem;
  line-height: 1.3;
  font-weight: 700;
}

.lp_plan-item_priceNum {
  font-size: clamp(40px, 10vw, 60px);
  font-weight: 700;
  letter-spacing: 0.04rem;
  position: relative;
  background: inherit;
}

.lp_plan-item_priceNum::before {
  content: "(税込)";
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 700;
  width: 100%;
  position: absolute;
  background: inherit;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.lp_plan-item_month {
  font-size: clamp(20px, 5vw, 36px);
  font-family: var(--shippori-mincho);
  color: #471f39;
  font-weight: 600;
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_plan-item_note {
  font-size: clamp(9px, 3vw, 18px);
  color: #707070;
  text-align: left;
  margin: 0 0 clamp(1rem, 4vw, 2rem) 0;
  line-height: 1.1;
  letter-spacing: 0.01rem;
  padding: clamp(0.3rem, 1vw, 0.6rem) 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 12rem);
}

.lp_plan-item_media {
  width: clamp(250px, 60vw, 500px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: clamp(1rem, 4vw, 2rem) auto clamp(1rem, 4vw, 2rem) auto;
}

.lp_plan-item_media:last-child {
  width: clamp(300px, 70vw, 500px);
}

.lp_plan-divider {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
}

.lp_plan-balloon {
  text-align: center;
  margin: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  position: relative;
  border: 1px solid #e73974;
  border-radius: 25px;
}

.lp_plan-balloon_title {
  color: #cf5e7f;
  background: #fff;
  white-space: nowrap;
  font-size: clamp(1rem, 4vw, 2rem);
  font-family: var(--shippori-mincho);
  font-weight: 700;
  position: absolute;
  top: clamp(-2rem, -4vw, -1rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.lp_plan-balloon_text {
  color: transparent;
  background: linear-gradient(45deg, #cf5e7f 0%, #ea74a2 50%, #cf5e7f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  font-family: var(--shippori-mincho);
  line-height: 1.3;
  margin-top: clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

/* ---------- reason ---------- */
.lp_section-reason {
  background: url(../img/reason-bg.webp) no-repeat center top/cover;
  width: 100%;
  max-width: 600px;
}

.lp_section-reason_inner {
  width: 100%;
}

.lp_reason-title {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: clamp(300px, 80%, 400px);
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01rem;
  color: #fff;
  background: #313131;
  position: relative;
  top: clamp(-1rem, -4vw, -2rem);
}

.lp_reason-title::before,
.lp_reason-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 0;
}

.lp_reason-title::before {
  right: clamp(-1rem, -4vw, -2.5rem);
  border-top: clamp(27px, 5vw, 32px) solid #313131;
  border-right: clamp(16px, 4vw, 32px) solid transparent;
}

.lp_reason-title::after {
  left: clamp(-1rem, -4vw, -2.5rem);
  border-top: clamp(27px, 5vw, 32px) solid transparent;
  border-right: clamp(16px, 4vw, 32px) solid #313131;
}

.lp_reason-lead {
  position: relative;
  text-align: center;
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_reason-lead_text {
  display: inline-block;
  margin: 0 0 clamp(12px, 2vw, 20px) auto;
  padding: clamp(10px, 2vw, 18px) clamp(14px, 4vw, 32px);
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: 0.01rem;
  line-height: 1.3;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-shadow: 1px 2px 1px rgba(43, 43, 43, 0.11);
  position: relative;
}

.lp_reason-lead_text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.08));
}

.lp_reason-lead_text__left {
  margin-right: clamp(3rem, 8vw, 12rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.lp_reason-lead_text__right {
  margin-left: clamp(3rem, 8vw, 12rem);
}

.lp_reason-subtitle {
  margin: clamp(10px, 2vw, 18px) 0 0;
  font-size: clamp(1rem, 4vw, 1.7rem);
  color: #302626;
  line-height: 1.3;
  font-family: var(--shippori-mincho);
  font-weight: 500;
}

.lp_reason-proof {
  position: relative;
  margin-top: clamp(14px, 3vw, 24px);
}

.lp_reason-proof_label {
  width: clamp(80px, 30%, 150px);
  margin: clamp(2rem, 4vw, 3rem) auto clamp(10px, 2vw, 18px);
  text-align: center;
  font-family: var(--shippori-mincho);
  font-size: clamp(20px, 5vw, 32px);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: #302626;
  background: #d8cd60;
  padding: 0 clamp(1rem, 2vw, 2rem);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(30, 17, 96, 0.08);
}

.lp_reason-proof_img {
  width: 100vw;
  max-width: 600px;
  position: relative;
  top: clamp(-7rem, -20vw, -4.5rem);
  left: 50%;
  transform: translateX(-50%);
}

.lp_reason-proof_text {
  position: absolute;
  top: clamp(5.8rem, 27vw, 10rem);
  right: clamp(1rem, 4vw, 2rem);
  margin: 0;
  font-size: clamp(13px, 3.3vw, 20px);
  line-height: 1.3;
  letter-spacing: 0.04rem;
  margin-top: clamp(10px, 2vw, 18px);
  text-align: left;
}

.lp_reason-proof_text span {
  color: var(--primary-color);
  font-weight: 700;
}

.lp_reason-chart {
  width: 100%;
  position: relative;
  top: clamp(-6.5rem, -26vw, -13rem);
  left: 50%;
  transform: translateX(-50%);
}

.lp_reason-doctor {
  position: relative;
  top: clamp(-6.5rem, -27vw, -10rem);
}

.lp_reason-doctor_media {
  margin: 0 auto;
  max-width: clamp(240px, 80%, 460px);
  position: relative;
  z-index: 2;
}

.lp_reason-doctor_body {
  position: relative;
  width: 100%;
  height: clamp(90px, 28vw, 140px);
}

.lp_reason-doctor_label {
  position: absolute;
  left: clamp(1rem, 5vw, 2rem);
  top: clamp(-32rem, -70vw, -18rem);
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: var(--shippori-mincho);
  font-size: clamp(2rem, 6.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  color: #a9919d;
  background: #fff;
  padding: clamp(12px, 2vw, 18px) 0;
  box-shadow: 0 0 12px rgba(30, 17, 96, 0.21);
  z-index: 3;
}

.lp_reason-doctor_title {
  position: absolute;
  right: clamp(1rem, 5vw, 2rem);
  top: clamp(-40rem, -95vw, -22rem);
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: var(--shippori-mincho);
  font-size: clamp(24px, 6.5vw, 40px);
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: #471f39;
  background: #fff;
  padding: clamp(12px, 2vw, 18px) 0 0;
  box-shadow: 0 0 12px rgba(30, 17, 96, 0.21);
  z-index: 1;
}

.lp_reason-doctor_text {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: clamp(16px, 3vw, 24px) 0;
  font-size: clamp(0.9rem, 4vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: 0.04rem;
  box-shadow: 0 0 12px rgba(30, 17, 96, 0.21);
  text-align: center;
  position: absolute;
  top: clamp(-5rem, -10vw, -2.5rem);
  z-index: 3;
}

.lp_reason-doctor_text span {
  font-weight: 600;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      #fff799 50%,
      #fff799 100%);
}

.lp_reason-doctor_text__color {
  color: #e73974;
}

.lp_reason-doctor_quote_text {
  font-size: clamp(1rem, 4vw, 2rem);
  line-height: 1.3;
  letter-spacing: 0.04rem;
  text-align: center;
  font-family: var(--shippori-mincho);
  font-weight: 600;
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_reason-doctor_quote_text span {
  color: #e73974;
  font-size: clamp(1.3rem, 4vw, 2rem);
}

/* ---------- activity  ---------- */
.lp_section-activity {
  width: 100%;
  max-width: 600px;
  background: url(../img/activity-bg.webp) no-repeat top center/cover;
  overflow: hidden;
}

.lp_section-activity_inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp_activity-title_wrap {
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.lp_activity-top_item {
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: clamp(1rem, 4vw, 2rem);
}

.lp_activity-top_cap {
  width: 100%;
  height: auto;
  background: #fff;
  padding: clamp(14px, 4vw, 24px) clamp(12px, 3vw, 20px);
  box-shadow: 0 0 12px rgba(30, 17, 96, 0.21);
  margin: clamp(-1rem, -4vw, -2rem) auto clamp(2rem, 5vw, 4rem) auto;
  font-size: clamp(0.85em, 3.5vw, 1.3rem);
  line-height: 1.3;
  letter-spacing: 0.04rem;
}

.lp_activity-body {
  background: #fff;
  padding: clamp(2rem, 6vw, 3rem) clamp(12px, 3vw, 20px) clamp(14px, 4vw, 24px);
  margin: 0 auto;
  border: 1px solid #e73974;
  position: relative;
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_activity-body_title {
  font-size: clamp(15px, 4vw, 28px);
  font-family: var(--shippori-mincho);
  font-weight: 600;
  color: #fff;
  background: #e73974;
  margin-bottom: clamp(12px, 3vw, 20px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(150px, 45%, 300px);
  position: absolute;
  top: clamp(-1rem, -4vw, -2rem);
  left: 50%;
  transform: translateX(-50%);
}

.lp_activity-list {
  padding: 0;
  margin: 0;
}

.lp_activity-item {
  font-size: clamp(0.8rem, 3.5vw, 1.3rem);
  color: #471f39;
  margin-bottom: clamp(1rem, 4vw, 2rem);
  line-height: 1.3;
  letter-spacing: 0.01rem;
}

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

.lp_activity-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 3vw, 1rem) clamp(0.5rem, 3vw, 1rem);
  margin-bottom: clamp(16px, 4vw, 32px);
  justify-content: center;
}

.lp_activity-gallery_item {
  width: calc(50% - clamp(0.5rem, 3vw, 1rem));
  background: #fff;
  text-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp_activity-gallery_item__set {
  width: 100%;
}

.lp_activity-gallery_img {
  width: 100%;
  height: auto;
}

.lp_activity-gallery_img-wrap {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp_activity-gallery_cap {
  font-size: clamp(12.5px, 2.5vw, 20px);
  font-family: var(--shippori-mincho);
  color: #fff;
  background: linear-gradient(to bottom, #03368c 0%, #002976 50%, #01236e 100%);
  margin: 0;
  text-align: center;
  width: 100%;
  height: clamp(36px, 8vw, 72px);
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- academic  ---------- */
.lp_section-academic {
  background: url(../img/activity-bg.webp) no-repeat center top / cover;
  width: 100%;
  max-width: 600px;
  padding-top: clamp(1rem, 4vw, 2rem);
}

.lp_section-academic_inner {
  max-width: 600px;
  margin: 0 auto clamp(1rem, 4vw, 2rem) auto;
}

.lp_section-academic_inner:last-child {
  margin: 0 0 auto;
}

.lp_academic-title {
  background: url(../img/academic-title.webp) no-repeat center top/contain;
  font-size: clamp(22px, 6vw, 40px);
  font-family: var(--shippori-mincho);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: #471f39;
  text-align: center;
  letter-spacing: 0.04rem;
  line-height: 1.3;
  width: 100%;
  height: clamp(128px, 34vw, 200px);
}

.lp_academic-title__br {
  display: none;
}

.lp_academic-title_small {
  font-size: clamp(0.5rem, 2vw, 1rem);
  line-height: 1;
}

.lp_academic-img_wrap {
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp_academic-title-wrap {
  background: #fff;
  box-shadow: 0 0 12px rgba(30, 17, 96, 0.21);
  padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.lp_academic-text {
  font-size: clamp(0.7rem, 3.5vw, 1.3rem);
  padding-right: clamp(0.5rem, 2vw, 1rem);
  color: #471f39;
  line-height: 1.3;
  letter-spacing: -0.01rem;
  margin: 0 0 clamp(0.5rem, 2vw, 1rem) 0;
  text-align: left;
}

.lp_academic-text span {
  color: #d94a7a;
}

.lp_academic-subtext {
  font-size: clamp(0.4rem, 2vw, 1rem);
  letter-spacing: -0.01rem;
  color: #471f39;
  text-align: left;
  margin: 0;
}

.lp_academic-subtitle {
  font-size: clamp(1rem, 4vw, 1.7rem);
  font-family: var(--shippori-mincho);
  font-weight: 500;
  margin-bottom: clamp(8px, 2vw, 16px);
  text-align: center;
  letter-spacing: 0.04rem;
}

.lp_global-text {
  font-size: clamp(0.7rem, 3.5vw, 1.3rem);
  color: #471f39;
  line-height: 1.3;
  margin: 0 0 clamp(8px, 2vw, 16px) 0;
  text-align: left;
  letter-spacing: 0.01rem;
}

.lp_global-media {
  width: 80%;
  margin: 0 auto;
}

.lp_global-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.lp_global-subtitle {
  font-size: clamp(20px, 5vw, 32px);
  color: #fff;
  background: linear-gradient(to bottom, #03368c 0%, #002976 50%, #01236e 100%);
  font-family: var(--shippori-mincho);
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  top: clamp(-1rem, -4vw, -2rem);
}

.lp_global-block {
  background: #fff;
  box-shadow: 0 0 12px rgba(30, 17, 96, 0.21);
  padding: clamp(12px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: clamp(-1rem, -4vw, -2rem);
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

/* ---------- peace ---------- */
.lp_section-peace {
  background: url(../img/bg.webp) no-repeat center top/cover;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.lp_section-peace_inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp_peace-title {
  text-align: center;
  margin-bottom: clamp(24px, 6vw, 40px);
  font-family: var(--shippori-mincho);
  color: #df6981;
  line-height: 1.3;
}

.lp_peace-titleStrong {
  font-size: clamp(50px, 12vw, 72px);
  margin-top: clamp(-2rem, -4vw, -1rem);
}

.lp_peace-titleStrong_num {
  font-size: clamp(65px, 15vw, 130px);
  font-style: italic;
}

.lp_peace-titleStrong_text {
  font-size: clamp(40px, 10vw, 60px);
}

.lp_peace-titleSub {
  color: #313131;
  margin-bottom: clamp(0.3rem, 1vw, 1.5rem);
  margin-top: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  font-size: clamp(20px, 6vw, 36px);
  letter-spacing: 0.04rem;
}

.lp_peace-title_img {
  width: 80%;
  max-width: 580px;
  margin: 0 auto;
  display: block;
}

.lp_peace-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 32px);
}

.lp_peace-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lp_peace-card_media {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.lp_peace-card_img {
  width: 100vw;
  max-width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.lp_peace-card_no {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #ed5d5d 0%, #ed5d5d 50%, #ff8788 100%);
  border-radius: 50%;
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  font-size: clamp(0.5rem, 2.5vw, 1rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  right: 0;
}

.lp_peace-card_no span {
  display: block;
  font-size: clamp(30px, 8vw, 48px);
  color: #fff;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
  font-family: var(--shippori-mincho);
}

.lp_peace-card_no__re {
  left: 0;
  right: auto;
}

.lp_peace-card_bg {
  background: url(../img/peace-card_bg01.webp) no-repeat left bottom/cover;
  width: 100vw;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  max-width: 600px;
  min-height: clamp(240px, 60vw, 350px);
  position: relative;
  top: clamp(-3rem, -4vw, -2rem);
  right: 0;
}

.lp_peace-card_bg__re {
  background: url(../img/peace-card_bg02.webp) no-repeat left bottom/cover;
  right: auto;
  left: 0;
  min-height: clamp(360px, 90vw, 580px);
}

.lp_peace-card_title {
  font-size: clamp(24px, 6vw, 36px);
  color: #d82461;
  font-family: var(--shippori-mincho);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 clamp(8px, 2vw, 16px) 0;
  letter-spacing: 0.04rem;
}

.lp_peace-card_titleSub {
  font-size: clamp(1rem, 4vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  background: #e73974;
  margin: clamp(12px, 4vw, 20px) auto clamp(12px, 4vw, 20px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: clamp(200px, 60%, 300px);
  line-height: 1.5;
}

.lp_peace-card_text {
  font-size: clamp(0.9rem, 3.5vw, 1.4rem);
  color: #112032;
  line-height: 1.5;
  letter-spacing: 0.01rem;
  margin: clamp(1rem, 4vw, 2rem) auto clamp(0.5rem, 2vw, 1rem) auto;
  text-align: left;
}

.lp_peace-card_text span {
  font-size: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.lp_peace-card_text__bold {
  text-align: center;
  font-weight: 600;
}

.lp_peace-card_line {
  color: #fff;
  font-size: clamp(0.9rem, 3.5vw, 1.8rem);
  width: 100%;
  border-top: 1px solid #63a3ff;
  border-bottom: 1px solid #63a3ff;
  text-align: center;
  font-family: var(--shippori-mincho);
  background: linear-gradient(135deg, #63a3ff 0%, #b6dcff 50%, #72beff 100%);
  line-height: 2.5;
  text-shadow: 0 0 3px #63a3ff;
}

.lp_peace-card_note {
  font-size: clamp(0.5rem, 2vw, 1rem);
  color: #112032;
  line-height: 1.3;
  letter-spacing: 0.01rem;
  text-align: center;
}

.lp_peace-card_wrap {
  background: linear-gradient(135deg, #63a3ff 0%, #b6dcff 50%, #72beff 100%);
  border: 1px solid #63a3ff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lp_peace-card_bg__small {
  background: url(../img/peace-card_bg03.webp) no-repeat 10% bottom/cover;
  min-height: clamp(130px, 40vw, 200px);
  position: relative;
  z-index: 0;
}

.lp_peace-card_img__left {
  width: clamp(130px, 30vw, 200px);
  position: absolute;
  left: clamp(-2rem, -6vw, -2rem);
  bottom: clamp(-3rem, -6vw, -3rem);
  z-index: 100;
}

.lp_peace-card_img__right {
  width: clamp(130px, 30vw, 200px);
  position: absolute;
  right: clamp(-1rem, -3vw, -0.5rem);
  bottom: clamp(-3rem, -6vw, -0.5rem);
}

.lp_peace-card_bg__mid {
  background: url(../img/peace-card_bg04.webp) no-repeat left bottom/cover;
  min-height: clamp(200px, 50vw, 300px);
}

.lp_peace-card_item {
  font-size: clamp(1rem, 4vw, 1.7rem);
}

.lp_peace-card_box {
  width: 80%;
  margin: 0 auto;
}

.features06_title {
  text-align: center;
  font-size: clamp(18px, 5vw, 28px);
  color: #d82461;
  font-family: var(--shippori-mincho);
  font-weight: 600;
  padding: 20px 0;
}

/* ---------- flow ---------- */
.lp_section-flow {
  background: url(../img/flow-bg.webp) no-repeat center top/cover;
  width: 100%;
  max-width: 600px;
}

.lp_section-flow_inner {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.lp_flow-title_img {
  width: clamp(35px, 10vw, 60px);
}

.lp_flow-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--shippori-mincho);
  font-size: clamp(29px, 7vw, 42px);
  color: #112032;
  font-weight: 500;
  margin-bottom: clamp(12px, 3vw, 24px);
  letter-spacing: 0.04em;
}

.lp_flow-line {
  width: 1px;
  height: clamp(40px, 10vw, 90px);
  background: #fff;
  margin: 0 auto clamp(1rem, 4vw, 2rem) auto;
}

.lp_flow-list {
  display: flex;
  flex-direction: column;
  gap: clamp(96px, 24vw, 144px);
  margin-top: clamp(96px, 24vw, 144px);
}

.lp_flow-step {
  background: #fff;
  padding: clamp(18px, 4vw, 32px) clamp(12px, 4vw, 24px) clamp(16px, 4vw, 28px) clamp(12px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lp_flow-step_no {
  font-family: var(--shippori-mincho);
  font-size: clamp(55px, 12vw, 110px);
  color: #1b7aba;
  font-weight: 700;
  margin-bottom: clamp(8px, 2vw, 16px);
  position: absolute;
  top: clamp(-2rem, -4vw, -1rem);
  left: clamp(1rem, 4vw, 2rem);
}

.lp_flow-step_media {
  width: 100%;
  max-width: clamp(237px, 70%, 500px);
  position: absolute;
  top: clamp(-150px, -22vw, -80px);
  right: 0;
}

.lp_flow-step_title {
  font-size: clamp(18px, 5vw, 36px);
  color: #1b7aba;
  font-family: var(--shippori-mincho);
  font-weight: 600;
  text-align: center;
  margin: clamp(3rem, 9vw, 6rem) 0 clamp(8px, 2vw, 16px) 0;
  letter-spacing: 0.04em;
}

.lp_flow-step_line {
  width: 100%;
  height: 1px;
  background: #313131;
  margin: 0 0 clamp(8px, 2vw, 16px) 0;
}

.lp_flow-step_list-wrap {
  width: 100%;
}

.lp_flow-step_body {
  width: 100%;
  margin-top: clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(8px, 2vw, 16px);
  position: relative;
  border: 1px solid #471f39;
  border-radius: 20px;
  padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 2vw, 1rem);
}

.lp_flow-step_lead {
  font-size: clamp(14px, 3.5vw, 24px);
  white-space: nowrap;
  color: #471f39;
  font-weight: 600;
  letter-spacing: 0.01rem;
  text-align: center;
  background: #fff;
  position: absolute;
  top: clamp(-2rem, -4vw, -1rem);
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.lp_flow-step_list {
  margin: 0 0 clamp(8px, 2vw, 16px) 0;
  padding-left: 1.2em;
}

.lp_flow-step_item {
  font-size: clamp(14px, 3vw, 22px);
  color: #471f39;
  font-family: var(--shippori-mincho);
  line-height: 1.7;
  margin-bottom: clamp(2px, 1vw, 4px);
}

.lp_flow-step_item_img {
  width: clamp(1rem, 3vw, 2rem);
  height: auto;
  margin-bottom: clamp(2px, 1vw, 4px);
}

.lp_flow-step_text {
  font-size: clamp(14px, 3vw, 26px);
  color: #471f39;
  font-family: var(--shippori-mincho);
  line-height: 1.7;
  margin: 0 0 clamp(8px, 2vw, 16px) 0;
  text-align: left;
}

.lp_flow-step_actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(8px, 2vw, 16px);
}

.lp_flow-step_text-body {
  width: 100%;
  margin-top: clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(8px, 2vw, 16px);
}

.lp_flow-step_p {
  font-size: clamp(12px, 3vw, 20px);
  color: #313131;
  line-height: 1.3;
  letter-spacing: 0.04rem;
  text-align: left;
}

/*-------- clinic gallery ------------*/
.lp_section-clinic {
  background: #fff;
  width: 100%;
  max-width: 600px;
}

.lp_section-clinic_inner {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3rem) 0;
}

/* ===== Swiper 院内紹介スライダー用 ===== */
.lp_clinic-slider {
  width: 100vw;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.lp_clinic-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  width: clamp(168px, 40vw, 300px) !important;
}

.lp_clinic-slider_img {
  width: clamp(168px, 40vw, 300px);
  height: auto;
}

.swiper-pagination-bullets {
  width: clamp(100px, 50%, 200px) !important;
}

.swiper-pagination-bullet {
  background: #888;
  opacity: 0.3;
  width: clamp(4.5px, 1.5vw, 8px) !important;
  height: clamp(4.5px, 1.5vw, 8px) !important;
}

/* Swiperページネーションとナビゲーション矢印の配置 */
.lp_clinic-slider {
  position: relative;
}

.lp_clinic-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* 矢印とページネーションの間隔を広げる */
  margin-top: 1rem;
  padding: 0 1rem;
}

.swiper-pagination {
  position: static !important;
  margin: 0 1rem;
  bottom: 0;
}

/* Swiperページネーションのアクティブ色を#313131に */
.swiper-pagination-bullet-active {
  background: #313131 !important;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: clamp(90px, 25vw, 180px) !important;
  height: auto;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
}

/* ---------- faq ---------- */
.lp_section-faq {
  background: #fff;
  width: 100%;
  max-width: 600px;
}

.lp_section-faq_inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp_faq-title {
  text-align: center;
  font-family: var(--shippori-mincho);
  font-size: clamp(26px, 6vw, 36px);
  color: #2f2f2f;
  font-weight: 700;
  margin-bottom: clamp(18px, 4vw, 32px);
  letter-spacing: 0.04em;
}

.faq-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
}

.faq-table-body {
  width: 100%;
}

.faq-table-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.faq-table-td--question {
  background: #d82461;
  color: #fff;
  font-family: var(--shippori-mincho);
  font-size: clamp(13px, 3.5vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  padding: clamp(0.5rem, 2vw, 1.5rem) clamp(3rem, 9vw, 5rem);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-table-td--question::before {
  content: "Q";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-table-td--question::after {
  content: "\25BC";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-size: 1.3em;
  color: #fff;
  transition: transform 0.3s;
}

.faq-table-row.open .faq-table-td--question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-table-td--answer {
  background: #fff;
  color: #262626;
  font-size: clamp(11px, 3vw, 20px);
  font-family: var(--zenkaku-gothic-new);
  line-height: 1.3;
  letter-spacing: 0.01rem;
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 4vw, 2rem);
  display: none;
}

.faq-table-row.open .faq-table-td--answer {
  display: block;
}

/*-------- locations ------------*/
.lp_section-locations {
  background: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.lp_section-locations_inner {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3rem) 0;
}

.lp_locations-title {
  text-align: center;
  font-family: var(--shippori-mincho);
  font-size: clamp(22px, 6vw, 32px);
  color: #7a2e4d;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: clamp(18px, 4vw, 32px);
  letter-spacing: 0.04rem;
}

.locations-table {
  width: 100%;
  max-width: 600px;
  border-collapse: separate;
  border-spacing: 0 clamp(12px, 3vw, 16px);
}

.locations-table-row--toggle {
  background: #2d63ad;
  color: #fff;
  font-family: var(--shippori-mincho);
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 600;
  cursor: pointer;
}

.locations-table-td--toggle {
  padding: clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 2vw, 1rem);
  text-align: center;
}

.locations-table-toggle-label {
  display: block;
  position: relative;
  padding-right: clamp(2rem, 6vw, 3rem);
}

.locations-table-toggle-label::after {
  content: "\25B2";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.2em;
  color: #fff;
  transition: transform 0.2s;
}

/* オープン時に矢印を180度回転 */
.locations-table-row--toggle.open .locations-table-toggle-label::after {
  transform: translateY(-50%) rotate(180deg);
}

.locations-table-td--detail {
  padding: clamp(0.5rem, 2vw, 1rem);
}

.locations-table-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 3vw, 18px);
}

.locations-table-detail-img {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 0 clamp(2rem, 6vw, 4rem);
}

.locations-table-detail-info {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(10px, 2.5vw, 16px);
  color: #313131;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.locations-table-label {
  display: inline-block;
  background: #2d63ad;
  color: #fff;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.01rem;
  padding: 0 clamp(12px, 3vw, 16px);
  margin-right: clamp(8px, 2vw, 12px);
  margin-bottom: clamp(4px, 2vw, 6px);
  white-space: nowrap;
  width: clamp(72px, 20%, 120px);
  height: clamp(24px, 5vw, 36px);
  text-align: center;
}

.locations-table-nested {
  width: 100%;
  border-collapse: collapse;
  margin: clamp(8px, 2vw, 12px) 0;
  font-size: clamp(12px, 2vw, 16px);
}

.locations-table-nested th,
.locations-table-nested td {
  border: 1px solid #1b1b1b;
  text-align: center;
  padding: clamp(4px, 2vw, 6px) clamp(6px, 2vw, 10px);
}

.locations-table-nested th {
  color: #313131;
  font-weight: 500;
}

.locations-table-nested td {
  background: #fff;
  color: #313131;
}

.locations-table-detail-info>div {
  margin-bottom: clamp(8px, 2vw, 12px);
  display: flex;
}

.locations-table-detail-info>div:last-child {
  margin-bottom: 0;
}

.locations-table-label_time {
  flex-direction: column;
}

.locations-table-label_map {
  width: 100%;
  height: clamp(157px, 40vw, 314px);
  max-width: 600px;
}

.locations-table-label_map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.locations-table-nested span {
  font-size: clamp(8px, 2vw, 14px);
  letter-spacing: 0.01rem;
  line-height: 1;
  white-space: nowrap;
}