:root {
  --primary: #00A29A;
  --primary-dark: #007D77;
  --primary-mist: #EAF6F3;
  --primary-soft: #DDE9E6;
  --bg: #F8F5F0;
  --accent01: #F2C14E;
  --warm: #F6F3EE;
  --surface: #fff;
  --stone: #EDE6DE;
  --text: #1E2221;
  --sub: #4A4F4E;
  --muted: #7F8A88;
  --line: #DDD3C8;
  --radius: 24px;
  --radius-lg: 32px;
  --pill: 999px;
  --shadow: 0 14px 38px rgba(30,34,33,.065);
  --shadow-soft: 0 10px 28px rgba(30,34,33,.055);
  --shadow-cta: 0 13px 26px rgba(0,162,154,.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ece8e2;
  color: var(--text);
  font-family: "Noto Sans JP",sans-serif;
  letter-spacing: .04em;
}

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

.lp {
  width: min(100%,430px);
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(0,0,0,.1);
}

.section {
  position: relative;
  padding: 32px 0;
}

.inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

h1,h2,h3 {
  font-family: "Noto Serif JP",serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 48px;
  line-height: 1.35;
  letter-spacing: .08em;
}

h2 {
  font-size: 35px;
  line-height: 1.55;
  letter-spacing: .075em;
}

h3 {
  font-size: 22px;
  line-height: 1.56;
  letter-spacing: .05em;
}

p {
  line-height: 1.86;
}

.header {
  height: 54px;
  width: min(100%, 430px);
  display: flex;
  align-items: center; 
  padding: 0 24px; 
  z-index: 30;
}

.header-inner {
  display: flex;
  justify-content: space-between; 
  align-items: center;   
  width: 100%;      
}

.header-floating {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header .brand img {
  width: auto;      
  height: 28px;
  display: block;
}
.header .main-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  background-color: #00a09a;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  padding: 8px 30px; 
  border-radius: 20px;
  white-space: nowrap;
  box-sizing: border-box;
  gap: 3px;
  box-shadow: none;
}

.header .main-cta span {
  margin-left: 4px;
  font-size: 14px;
  top: -1px;
}

.photo {
  position: absolute;
  z-index: 0;
  right: -28px;
  top: 54px;
  width: 73%;
  height: 430px;
  filter: saturate(.92);
}

.hero {
  padding-top: 54px;
  background: linear-gradient(180deg,rgba(255,255,255,.54),var(--bg));
}

.hero-photo {
  background: linear-gradient(90deg,rgba(248,245,240,1) 0%,rgba(248,245,240,.78) 24%,rgba(248,245,240,.12) 58%,rgba(248,245,240,0) 100%),
  url("../images/hero_image.png") center top/cover no-repeat;
  border-bottom-left-radius: 44%;
}

.hero-lead {
  font-family: "Noto Serif JP",serif;
  font-size: 24px;
  line-height: 1.35;
  margin: 25px 0;
  letter-spacing: .09em;
}

.hero-lead span,
.section-kicker,
.problem-sub span,
.reason h2 span,
.steps-box h2 span,
.final h2 span,
.consult-box span {
  color: var(--primary);
}

.section-kicker {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .13em;
}

.hero-logo-block {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  margin: 0 0 34px;
}

.hero-kicker {
  margin: 0 0 8px 0;
  padding: 0;
  text-align: left;
}

.logo-with-name {
  display: flex;
  flex-direction: column; 
  align-items: flex-end;
  width: 100%;   
  max-width: 240px;
}

.hero-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  margin: 0;
}

.hero-studio-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  margin: 3.5px 0 0 0;
  padding: 0;
  line-height: 1.2;
  text-align: right;
}

.hero-copy {
  font-family: "Noto Serif JP",serif;
  font-size: 20px;
  margin: 27px 0 22px;
  line-height: 1.5;
}

.brand-mark.large {
  width: 64px;
  height: 76px;
}

.brand-type.big strong {
  font-size: 43px;
  line-height: .95;
}

.brand-type.big small {
  font-size: 12px;
}

.top-benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 18px 10px;
  margin-bottom: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.top-benefits div {
  text-align: center;
  border-right: 1px dashed var(--line);
  padding: 0 6px;
}

.top-benefits div:last-child {
  border-right: 0;
}

.circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  background: var(--primary-mist);
  color: var(--primary);
  font-size: 21px;
}

.circle-icon img {
  width: 44px;
  height: 44px;
}

.top-benefits p {
  font-family: "Noto Serif JP",serif;
  font-size: 14px;
  line-height: 1.58;
  margin: 0;
}

.offer-card {
  position: relative;
  padding: 27px 19px 19px;
  background: rgba(255,255,255,.95);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.offer-card h2 {
  text-align: center;
  color: var(--primary);
  font-size: 25px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.offer-card h2 img {
  width: 100%;
  height: auto;
}

.offer-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.offer-tab {
  width: 88px;
  margin: 0 auto 14px;
  text-align: center;
  background: var(--primary);
  color: white;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  line-height: 1.2;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 12px 10px;
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 20px;
}

.offer-list li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif JP",serif;
  font-size: 14px;
}

.offer-list i {
  font-style: normal;
  color: var(--primary);
  font-size: 27px;
  width: 50px;
  text-align: center;
}

.offer-list i img {
  width: 100%;
  height: 100%;
}

.offer-list em {
  font-style: normal;
  color: var(--primary);
  font-size: 25px;
}

.price-list {
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  align-items: end;
}

.price-list dt {
  font-family: "Noto Serif JP",serif;
  font-size: 14px;
}

.price-list dd {
  text-align: right;
  margin: 0;
}

.price-list del {
  font-size: 13px;
  color: var(--sub);
  margin-right: 7px;
}

.price-list b {
  font-family: "Noto Serif JP",serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 27px;
}

.price-list small {
  display: block;
  font-size: 10px;
}

.bag-note {
  background: var(--warm);
  padding: 10px;
  text-align: center;
  margin: 17px 0 0;
  font-family: "Noto Serif JP",serif;
  font-size: 14px;
}

.cta-area {
  text-align: center;
  margin: 25px 0;
}

.cta-area p {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .12em;
}

.main-cta {
  min-height: 69px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: var(--pill);
  background: linear-gradient(180deg,#02aaa2,var(--primary-dark));
  box-shadow: var(--shadow-cta);
  color: white;
  font-family: "Noto Serif JP",serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .09em;
}

.main-cta span {
  font-size: 42px;
  line-height: 1;
  top: -5px;
  position: relative;
}

.problem-about {
  padding-top: 16px;
}

.white-shell {
  background: rgba(255,255,255,.8);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 30px 22px 36px;
}

.eyebrow {
  font: 500 19px/1 "Crimson Text",serif;
  color: var(--primary);
  text-align: center;
  letter-spacing: .13em;
  margin: 0 0 18px;
}

.eyebrow:after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  margin: 10px auto 0;
}

.problem-about h2 {
  font-size: 29px;
  line-height: 1.48;
  margin: 0 0 12px;
}

.eyebrow.left {
  text-align: left;
}

.eyebrow.left:after {
  margin-left: 0;
}

.center {
  text-align: center;
}

.problem-sub {
  text-align: center;
  margin: 28px 0 16px;
  font-size: 15px;
}

.problem-list {
  display: grid;
  gap: 13px;
}

.problem-list article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-soft);
  padding: 12px 18px;
  font: 400 19px/1.6 "Noto Serif JP",serif;
}

.problem-list i img{
  width: 48px;
  height: 48px;
  transform: translateY(7%);
}

.about-panel {
  margin-top: 18px;
  background: rgba(255,255,255,.94);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-copy {
  padding: 28px 0 6px;
}

.about-copy h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.about-copy p {
  font-size: 15px;
  margin: 0 0 12px;
}

.generated-photo {
  min-height: 250px;
  background: url("../images/Aboutu-MachinePilates.jpg") center bottom / cover;
  background-color  : rgb(255, 255, 255, .3);
  background-blend-mode: overlay;
}

.chip-row {
  display: flex;
  gap: 8px;
  padding: 0 16px 18px;
  margin-top: -68px;
}

.chip-row span {
  flex: 1;
  text-align: center;
  background: white;
  border-radius: var(--pill);
  box-shadow: var(--shadow-soft);
  padding: 10px 4px;
  font-family: "Noto Serif JP",serif;
  font-size: 11px;
}

.outline-cta {
  height: 58px;
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,162,154,.34);
  background: var(--primary-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary);
  font-family: "Noto Serif JP",serif;
  font-size: 20px;
}

.outline-cta span {
  font-size: 36px;
  top: -6px;
  position: relative;
}

.reason,.results,.faq {
  padding-top: 24px;
}

.lead-center {
  color: var(--sub);
  font-size: 15px;
  margin: 19px 0 25px;
}

.left-copy {
  text-align: left;
}

.reason h2 {
  font-size: 27px;
  line-height: 1.48;
  margin: 0 0 12px;
}

.reason-cards {
  display: grid;
  gap: 16px;
}

.reason-cards article {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 250px;
}

.reason-copy {
  padding: 24px 16px 24px 20px;
}

.reason-copy em {
  display: block;
  color: var(--primary);
  font: 500 32px/1 "Crimson Text", serif;
  margin-bottom: 13px;

}

.reason-copy h3 {
  font-size: 20px;
  margin-bottom: 13px;
}

ruby rt {
  font-size: 0.4em;
  letter-spacing: 0.1em;
  margin-bottom: .15em;
}

.reason-copy strong {
  color: var(--primary);
  font-size: 13px;
}

.reason-copy p {
  font-size: 13px;
  margin: 10px 0 0;
}

.reason-photo {
  height: 190px;
  background-size: cover;
  background-position: center;
}

/* それぞれ別画像 */
.photo-therapist {
  background-image: url("../images/reason-image-01.jpg");
  background-position: center top;
}

.photo-machines {
  background-image: url("../images/reason-image-02.jpg");
  background-position: center top;
}

.photo-lesson {
  background-image: url("../images/reason-image-03.jpg");
  background-position: top center;
}

.round-badge {
  position: absolute;
  right: 14px;
  bottom: 17px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,162,154,.35);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--primary);
  font-family: "Noto Serif JP",serif;
  font-size: 13px;
}

.reason-cta {
  margin-top: 22px;
  padding: 12px 14px 12px 20px;
  background: rgba(255,255,255,.85);
  border-radius: var(--pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Serif JP",serif;
  font-size: 16px;
}

.reason-cta a {
  background: var(--primary);
  color: white;
  border-radius: var(--pill);
  padding: 12px 22px;
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 600;
}

.results h2 {
  font-size: 29px;
}

.before-after-card {
  position: relative;
  display: grid;
  grid-template-columns: .73fr 1.1fr .78fr;
  gap: 6px;
  align-items: center;
  padding: 22px 12px 30px;
  background: rgba(255,255,255);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.before-col h3,.after-col h3 {
  text-align: center;
  font: 500 24px/1 "Crimson Text",serif;
  margin-bottom: 14px;
}

.after-col h3 {
  color: var(--primary);
}

.before-col p,.after-col p {
  font-family: "Noto Serif JP",serif;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  border-radius: 12px;
  padding: 10px 7px;
  margin: 0 0 12px;
}

.before-col p {
  background: var(--warm);
}

.after-col p {
  background: var(--primary-mist);
  color: var(--primary-dark);
}

.before-person {
  transform: rotate(-4deg);
  opacity: .86;
}

.arrow {
  font-size: 32px;
  color: var(--primary);
}

.before-after-card small {
  position: absolute;
  right: 16px;
  bottom: 9px;
  color: var(--muted);
  font-size: 11px;
}

.before-after-image-wrap {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}


.result-offer {
  margin-top: 22px;
  position: relative;
  padding: 27px 0 19px;
}

.result-offer h2 {
  font-size: 18px;
  color: var(--primary);
  text-align: center;
}

.result-offer h2 strong {
  font-size: 300%;
  font-weight: 500;
}

.result-offer h2 span {
  color: var(--text);
}

.trial-benefits {
display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  gap: 0;
  margin: 20px 0;
  background: white; 
  padding: 15px 0;
  border-radius: 18px;
}

.trial-benefits article {
  display: flex;
  flex-direction: column; 
  align-items: center;
  flex: 1;          
  padding: 10px 1px;
  background: none;   
  box-shadow: none;     
  text-align: center;   
  border-right: 1px solid #eee;
}

.trial-benefits article:last-child {
  border-right: none;
}

.trial-benefits i {
  width: 70px;     
  height: auto;
}

.trial-benefits span {
  font-size: 10px;   
  line-height: 1.4;
  word-break: break-all;  
}

.trial-benefits i img {
  width: 60px;
  height: auto;
}

.trial-benefits b {   
  color: var(--primary);
  font-size: 14px;   
  margin-top: 2px;
}

.compact small,.cta-area small {
  display: block;
  color: var(--sub);
  font-size: 12px;
  margin-top: 12px;
}

.voice-steps {
  padding-top: 0;
  background: var(--bg);
}

.voice-steps h2 {
  line-height: 1.48;
  margin: 0 0 36px;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.voice-grid article {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 18px 14px;
}

.voice-grid b {
  font-size: 42px;
  color: var(--primary);
  line-height: .7;
}

.voice-grid p {
  font-family: "Noto Serif JP",serif;
  font-size: 13px;
  margin: 4px 0 18px;
}

.voice-grid footer {
  margin-top: auto;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  font-size: 12px;
}

.voice-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block; 
}

.voice-user span {
  font-size: 12px;
  line-height: 1.4;
  display: inline-block;
}

.note {
  text-align: center;
  color: var(--sub);
  font-size: 12px;
  margin: 18px 0;
}

.steps-box {
  margin-top: 26px;
  background: rgba(255,255,255,.54);
  border-radius: 32px;
  padding: 27px 18px 23px;
}

.steps-box h2 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 24px;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-list article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 16px 14px;
}

.step-list em {
  width: fit-content;
  height: auto;
  padding: 0 12px 6px;
  border-radius: 999px;
  font-size: 12px;
}

.step-list em b {
  font-size: 31px;
  margin-top: -8px;
}

.step-list i {
  color: var(--primary);
  font-style: normal;
  font-size: 28px;
  text-align: center;
  border: none;
}

.step-body {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.step-body i {
 width: 48px;
}

.step-body i img {
  width: 100%;
  height: 100%;
}

.step-list h3 {
  font-family: "Noto Sans JP",sans-serif;
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.step-list p {
  font-size: 12px;
  margin: 5px 0 0;
}

.step-arrow {
  font-size: 22px;
  color: var(--primary);
  text-align: center;
  margin: 0 0 !important;
}

.safe-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--primary-mist);
  padding: 18px;
  margin-top: 24px;
}

.safe-box>i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 34px;
  font-style: normal;
  flex: none;
}

.safe-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.safe-box li {
  font-size: 13px;
  line-height: 1.7;
  margin: 8px 0;
}

.safe-box li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

.faq h2 {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

details {
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 15px 18px;
}

summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 8px;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "⌄";
  font-size: 22px;
  color: var(--primary);
  top: -10px;
  position: relative;
}

summary span,details p span {
  font: 600 28px/1 "Crimson Text",serif;
}

details p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  font-size: 13px;
  line-height: 1.75;
  margin: 6px 0 0;
}

details p span {
  color: var(--text);
}

.consult-box {
  margin: 24px 0 18px;
  border-radius: 18px;
  background: var(--primary-mist);
  padding: 18px;
  text-align: center;
  font-family: "Noto Serif JP",serif;
  font-size: 14px;
  line-height: 1.9;
}

.final {
  padding-top: 16px;
  background: linear-gradient(180deg,var(--bg),#fbfaf7);
}

.final-photo {
  top: 20px;
  background: linear-gradient(90deg,rgba(248,245,240,1) 0%,rgba(248,245,240,.78) 27%,rgba(248,245,240,.13) 60%,rgba(248,245,240,0) 100%),
  url("../images/hero_image.png") center top/cover no-repeat;
  filter: saturate(.92);
}

.final h2 {
  font-size: 42px;
  line-height: 1.48;
  margin: 26px 0 28px;
}

.final p {
  font-family: "Noto Serif JP",serif;
  font-size: 16px;
  line-height: 2.08;
}

.access .access-grid {
  margin-top: 15px;
}

.access .access-grid img {
  width: 100%;
  height: auto;
}

.access .access-grid h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
  padding: 2px 0 2px 8px;
  margin: 20px 0 2px;
  display: flex;
  align-items: center;
}

.access .access-grid p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.access .access-grid iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
  margin-top: 10px;
}

.safe-panel {
  margin-top: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 14px;
}

.safe-panel h3 {
  text-align: center;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 18px;
}

.safe-panel>div {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.safe-panel article {
  text-align: center;
  border-right: 1px dashed var(--line);
  font-family: "Noto Serif JP",serif;
  font-size: 14px;
  line-height: 1.65;
}

.safe-panel article:last-child {
  border: 0;
}

.safe-panel i {
  display: block;
  color: var(--primary);
  font-size: 32px;
  font-style: normal;
  margin-bottom: 8px;
}

.safe-panel i img {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--primary-mist);
  display: grid;
  place-items: center;
}

footer {
  text-align: center;
  padding: 43px 0 8px;
}

.footer-brand {
  display: grid;
  justify-items: center;
}

.footer-brand img {
  width: 50%;
  height: auto;
}

.footer-brand .brand-mark {
  font-size: 55px;
}

.footer-brand strong {
  font: 600 39px/1 "Crimson Text",serif;
}

.footer-brand small {
  font-size: 10px;
  letter-spacing: .22em;
  margin-top: 4px;
}

footer nav {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 28px;
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 12px;
  color: var(--sub);
}

footer p {
  font-family: "Noto Sans JP",sans-serif;
  font-size: 12px;
  color: var(--muted);
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 18px;
  }
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 31px;
  }
  .offer-body {
    grid-template-columns: 1fr;
  }
  .top-benefits p {
    font-size: 12px;
  }
  .reason-cards article {
    grid-template-columns: 1fr;
  }
.before-after-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .before-col, .after-col {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 8px; 
  }
  .before-col h3, .after-col h3 {
    grid-column: 1 / 3; 
    margin-bottom: 8px;
  }
  .before-col p, .after-col p {
    margin: 0; 
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .before-after-image-wrap {
    order: 2; 
  }
  .after-col {
    order: 3;
  }
  .before-after-image {
    width: 80%; 
    height: auto;
    object-fit: contain;
    border-radius: 16px;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .main-cta {
    font-size: 16px;
  }
}

.__pc {
  display: block;
}

.__pci {
  display: inline-block;
}

.__sp {
  display: none;
}

.__spi {
  display: none;
}

@media screen and (max-width: 768px) {
  .__sp {
    display: block;
  }
  .__spi {
    display: inline-block;
    width: 100%;
    height: auto;
  }
  .__pc {
    display: none;
  }
  .__pci {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .__swi {
    width: 100% !important;
    height: auto !important;
  }
}

.__yoyakuSec h2 {
  font-size: 1.2em;

}

.__yoyakuSec .blsdk-nav-button {
  font-size: .75em;
}

.__yoyakuSec .blsdk-calendar-header,
.__yoyakuSec .blsdk-time-row {
  grid-template-columns:50px repeat(7,1fr);
  min-width: 600px;
}
.__yoyakuSec .blsdk-time-cell {
  font-size: 14px;
}

.blsdk-time-cell {
  padding: 4px 2px !important;
  font-size: 13px !important;
}

.blsdk-slot-cell {
  min-height: 32px !important;
  padding: 1px !important;
}

.blsdk-availability-indicator {
  font-size: 20px !important;
}

.blsdk-empty-indicator {
  font-size: 16px !important;
}

@media(max-width: 480px) {
  .blsdk-slot-cell {
    min-height: 40px;
    padding: 2px;
  }

  .blsdk-time-cell {
    font-size: 14px;
    padding: 6px 2px;
  }
}

.blsdk-calendar-container {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
}

.blsdk-calendar-header,
.blsdk-time-row {
  min-width: 700px !important;
}

/*===================================================================
*
* add OFFER
*
====================================================================*/
.add-offer .bridge {
  display: block;
  margin: 0 auto 18px;
  width: 100%;
}

.add-offer .bridge p {
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
  margin: 50px 0 0;
}

.add-offer .bridge p.add-offer-title {
  font-size: 32px;
  font-weight: 500;
  margin: 5px 0 0;
}

.add-offer .bridge p.add-offer-title span {
  color: var(--primary);
  font-size: 125%;
}

.add-offer img {
  width: 100%;
  height: auto;
}

.add-offer .ann {
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.add-offer .ann span {
  color: var(--primary);
  font-weight: 500;
}