@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --c: #6bc7f1;
  --cl: #8dd5f5;
  --cb: #a8e0f8;
  --cp: #e8f6fd;
  --cbg: #f3fafe;
  --cd: #4ab0e0;
  --g: #06C755;
  --gd: #05a648;
  --w: #fff;
  --gbg: #F5F5F5;
  --gi: #D5D5D5;
  --gi2: #C0C0C0;
  --t: #333;
  --tl: #666;
  --tm: #999;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--t);
  line-height: 1.75;
  background: var(--w);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--w);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  height: 80px;
}
.hd-in {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hd-logo-img {
  height: 80px;
  width: auto;
}
.hd-acts {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hd-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--t);
  color: var(--t);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.3s;
}
.hd-tel:hover {
  border-color: var(--c);
  color: var(--c);
}
.hd-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--g);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.2);
}
.hd-line:hover {
  background: var(--gd);
  transform: translateY(-1px);
}
.hd-line-icon {
  display: inline-block;
  background: #fff;
  color: var(--g);
  font-size: 12px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1;
}

.hero {
  margin-top: 80px;
  background: linear-gradient(180deg, #f8fdfe 0%, var(--cp) 100%);
  position: relative;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}
.hero-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px 0;
  gap: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.hero-left {
  flex: 1;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-bubble {
  display: inline-block;
  position: relative;
  background: var(--w);
  border: 2px solid var(--cl);
  border-radius: 20px;
  padding: 14px 32px;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
  color: var(--c);
  box-shadow: 0 2px 12px rgba(141, 213, 245, 0.12);
}
.hero-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--w);
}
.hero-bubble::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 39px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid var(--cl);
}
.hero-copy {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-copy-hl {
  display: inline-block;
  background: var(--c);
  color: #fff;
  padding: 8px 20px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3;
}
.hero-copy2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--t);
}
.hero .sp-br {
  display: none;
}
.hero-brand {
  font-size: 32px;
  font-weight: 900;
  color: var(--c);
  margin-bottom: 36px;
  line-height: 1.3;
  white-space: nowrap;
}
.hero-badges {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: nowrap;
}
.hero-bdg {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cb), var(--c));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(107, 199, 241, 0.3);
}
.hero-bdg strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-bottom: 3px;
}
.hero-bdg span {
  display: block;
  font-size: 17px;
  white-space: nowrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  background: var(--g);
  color: #fff;
  padding: 24px 56px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.35);
  transition: 0.3s;
  margin-bottom: 0;
  animation: cta-pulse 2.5s ease-in-out infinite;
}
.hero-cta:hover {
  background: var(--gd);
  transform: translateY(-2px);
  animation: none;
}
.hero-cta-icon {
  display: inline-block;
  background: #fff;
  color: var(--g);
  font-size: 13px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 5px;
  line-height: 1;
}
.hero-right {
  width: 520px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  position: relative;
  margin-bottom: -4px;
}
.hero-person {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
}
.hero-model {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-circle {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hc1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, rgba(168, 224, 248, 0.5), rgba(107, 199, 241, 0.25));
  top: 5%;
  right: 25%;
  animation: drift-a 18s ease-in-out infinite;
}

.hc2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(232, 246, 253, 0.6), rgba(168, 224, 248, 0.3));
  top: 15%;
  right: 8%;
  animation: drift-b 22s ease-in-out infinite 2s;
}

.hc3 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 35% 35%, rgba(168, 224, 248, 0.5), rgba(107, 199, 241, 0.2));
  top: 55%;
  left: 3%;
  animation: drift-c 15s ease-in-out infinite 1s;
}

.hc4 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(232, 246, 253, 0.5), rgba(168, 224, 248, 0.25));
  bottom: 15%;
  right: 35%;
  animation: drift-d 20s ease-in-out infinite 3s;
}

.hc5 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 40% 30%, rgba(168, 224, 248, 0.35), rgba(107, 199, 241, 0.15));
  top: 30%;
  left: -3%;
  animation: drift-e 25s ease-in-out infinite 1.5s;
}

.hc6 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 35% 35%, rgba(168, 224, 248, 0.45), rgba(168, 224, 248, 0.2));
  bottom: 30%;
  left: 15%;
  animation: drift-f 17s ease-in-out infinite 4s;
}

.hc7 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, rgba(168, 224, 248, 0.4), rgba(107, 199, 241, 0.2));
  top: 40%;
  right: 12%;
  animation: drift-g 19s ease-in-out infinite 2.5s;
}

.hc8 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 40% 35%, rgba(232, 246, 253, 0.45), rgba(168, 224, 248, 0.2));
  bottom: 8%;
  left: 40%;
  animation: drift-h 23s ease-in-out infinite 1s;
}

.hc9 {
  width: 45px;
  height: 45px;
  background: radial-gradient(circle at 35% 35%, rgba(168, 224, 248, 0.5), rgba(107, 199, 241, 0.25));
  top: 70%;
  right: 5%;
  animation: drift-i 16s ease-in-out infinite 3.5s;
}

.hc10 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 30% 30%, rgba(232, 246, 253, 0.35), rgba(168, 224, 248, 0.15));
  top: 10%;
  left: 30%;
  animation: drift-j 21s ease-in-out infinite 0.5s;
}

.hc11 {
  width: 55px;
  height: 55px;
  background: radial-gradient(circle at 35% 35%, rgba(168, 224, 248, 0.5), rgba(107, 199, 241, 0.2));
  bottom: 40%;
  right: 45%;
  animation: drift-k 14s ease-in-out infinite 5s;
}

.hc12 {
  width: 85px;
  height: 85px;
  background: radial-gradient(circle at 40% 30%, rgba(232, 246, 253, 0.4), rgba(168, 224, 248, 0.2));
  top: 75%;
  left: 55%;
  animation: drift-l 20s ease-in-out infinite 2s;
}

@keyframes drift-a {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -40px) scale(1.06);
  }
}
@keyframes drift-b {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-25px, 30px) scale(0.92);
  }
}
@keyframes drift-c {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -25px) scale(1.1);
  }
}
@keyframes drift-d {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -30px) scale(1.05);
  }
}
@keyframes drift-e {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35px, -20px) scale(0.94);
  }
}
@keyframes drift-f {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15px, -35px) scale(1.08);
  }
}
@keyframes drift-g {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 25px) scale(1.04);
  }
}
@keyframes drift-h {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(25px, -15px) scale(0.95);
  }
}
@keyframes drift-i {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-15px, -20px) scale(1.12);
  }
}
@keyframes drift-j {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 30px) scale(0.9);
  }
}
@keyframes drift-k {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 15px) scale(1.06);
  }
}
@keyframes drift-l {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -28px) scale(1.03);
  }
}
@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.35);
  }
  50% {
    box-shadow: 0 4px 30px rgba(6, 199, 85, 0.6), 0 0 0 8px rgba(6, 199, 85, 0.1);
  }
}
.btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(107, 199, 241, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btt.show {
  opacity: 1;
  visibility: visible;
}
.btt:hover {
  background: var(--cd);
  transform: translateY(-2px);
}

.stats-bar {
  background: linear-gradient(135deg, var(--cl), var(--cd));
  padding: 32px 20px;
  position: relative;
  z-index: 2;
}
.stats-bar-in {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 0 16px;
}
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-small {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 6px;
}
.stat-big {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}
.stat-big b {
  font-size: 46px;
  letter-spacing: 1px;
}
.stat-sub {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.85;
}
.stat-heart {
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  flex-shrink: 0;
  padding: 0 12px;
}

.probs {
  padding: 60px 16px;
  background: repeating-linear-gradient(-45deg, var(--cp), var(--cp) 8px, #f0f8fe 8px, #f0f8fe 16px);
}
.probs-in {
  max-width: 1000px;
  margin: 0 auto;
}
.probs-card {
  background: var(--w);
  border-radius: 20px;
  padding: 40px 36px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.probs-ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.5;
  color: var(--cd);
}
.probs-ttl em {
  font-style: normal;
  color: var(--c);
  font-size: 32px;
}
.probs-flex {
  display: flex;
  align-items: center;
  gap: 32px;
}
.probs-img {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
}
.probs-person {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.probs-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 0;
}
.probs-arrow {
  text-align: center;
  margin: 24px 0 8px;
  font-size: 28px;
  color: var(--c);
  line-height: 1;
}
.probs-pill {
  text-align: center;
  margin-bottom: 16px;
}
.probs-pill span {
  display: inline-block;
  background: var(--c);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
}
.probs-note {
  text-align: center;
  font-size: 20px;
  color: var(--tl);
  line-height: 1.6;
}
.probs-note b {
  color: var(--c);
  font-size: 26px;
}

.prob {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.prob-ck {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--c);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}
.prob-t {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.rsn-sec {
  background: var(--w);
  overflow: hidden;
}

.rsn-hdr {
  text-align: center;
  padding: 52px 20px 40px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.rsn-hdr-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: repeating-linear-gradient(-45deg, var(--cp), var(--cp) 6px, #edf7fd 6px, #edf7fd 12px);
}
.rsn-hdr-hand {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: var(--c);
  font-style: italic;
  margin-bottom: 6px;
}
.rsn-hdr h2 {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}
.rsn-hdr h2 em {
  font-style: normal;
  color: var(--c);
}
.rsn-hdr-en {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--c);
  letter-spacing: 3px;
  font-weight: 700;
  margin-top: 4px;
}

.rr-list {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rr {
  display: flex;
  align-items: stretch;
}
.rr.rev {
  flex-direction: row-reverse;
}
.rr-img {
  width: 50%;
  background: var(--gi);
  min-height: 280px;
  overflow: hidden;
}
.rr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rr-body {
  width: 50%;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rr-body h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}
.rr-body p {
  font-size: 18px;
  color: var(--tl);
  line-height: 1.85;
}
.rr-body p em {
  font-style: normal;
  color: var(--c);
  font-weight: 700;
}
.rr-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cb), var(--c));
  padding: 8px 24px;
  border-radius: 50px;
}
.rr-heart {
  color: #fff;
  font-size: 18px;
}
.rr-label {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
}
.rr-last {
  position: relative;
  margin-bottom: 48px;
}
.rr-last::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, transparent 50%, var(--cp) 50%);
  z-index: 0;
  pointer-events: none;
}
.rr-last .rr-body,
.rr-last .rr-img {
  position: relative;
  z-index: 1;
}
.rr-dots {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 6px);
  gap: 7px;
}
.rr-dots span {
  width: 6px;
  height: 6px;
  background: var(--c);
  border-radius: 50%;
  opacity: 0.2;
}

.cta-full {
  background: repeating-linear-gradient(90deg, #a0daf5, #a0daf5 40px, #8ad0f0 40px, #8ad0f0 80px);
  padding: 50px 20px 0;
  position: relative;
  overflow: hidden;
}
.cta-full::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 180px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.cta-full::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.cta-full-in {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  min-height: 400px;
  padding-right: 340px;
}
.cta-full-left {
  flex: 1;
}
.cta-full-h1 {
  font-size: 36px;
  font-weight: 900;
  color: #0d3b66;
  margin-bottom: 10px;
}
.cta-full-h2 {
  font-size: 28px;
  font-weight: 900;
  color: #0d3b66;
  margin-bottom: 32px;
  display: inline-block;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 6px;
}
.cta-full-btns {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.cta-full-right {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cta-full-person-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  vertical-align: bottom;
  margin-bottom: -4px;
}

.cta-tel-big {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--w);
  border-radius: 50px;
  padding: 18px 36px;
  color: var(--t);
  transition: 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.cta-tel-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.cta-tel-icon {
  font-size: 22px;
  color: var(--c);
}
.cta-tel-info {
  display: flex;
  flex-direction: column;
}
.cta-tel-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
}
.cta-tel-hours {
  font-size: 13px;
  color: var(--tl);
  font-weight: 400;
}

.cta-line-big {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--g);
  border-radius: 50px;
  padding: 22px 44px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  transition: 0.3s;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
  animation: cta-pulse 2.5s ease-in-out infinite;
}
.cta-line-big:hover {
  background: var(--gd);
  transform: translateY(-2px);
  animation: none;
}
.cta-line-icon {
  display: inline-block;
  background: #fff;
  color: var(--g);
  font-size: 13px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 5px;
  line-height: 1;
}

.cta-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 10px 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}
.cta-mail:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.cta-mail-icon {
  font-size: 18px;
}

.sec {
  padding: 52px 16px;
}
.sec-w {
  background: var(--w);
}
.sec-g {
  background: repeating-linear-gradient(-45deg, var(--cp), var(--cp) 8px, #eff8fd 8px, #eff8fd 16px);
}
.sec-c {
  background: var(--cbg);
}
.sec-in {
  max-width: 1000px;
  margin: 0 auto;
}

.st-w {
  text-align: center;
  margin-bottom: 32px;
}

.st-e {
  font-size: 14px;
  font-weight: 700;
  color: var(--c);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.7;
}

.st-t {
  font-size: 28px;
  font-weight: 900;
  display: inline-block;
}
.st-t::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--cb), var(--c));
  margin: 10px auto 0;
  border-radius: 2px;
}

.area-hd {
  background: #1a6fa0;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.area-hd h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 2px;
}
.area-hd p {
  font-size: 14px;
  opacity: 0.9;
}

.pgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pg {
  background: var(--w);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.pg:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.pg-i {
  aspect-ratio: 3/2;
  background: var(--gi);
  position: relative;
  overflow: hidden;
}
.pg-i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-inf {
  padding: 28px 24px;
  text-align: center;
}
.pg-st {
  font-size: 18px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--c);
  line-height: 1.4;
}
.pg-sta {
  font-size: 30px;
  font-weight: 900;
  color: var(--c);
}
.pg-min {
  font-size: 30px;
  font-weight: 900;
  color: var(--c);
}
.pg-area {
  font-size: 18px;
  color: var(--c);
  margin-bottom: 24px;
  font-weight: 500;
}
.pg-dl {
  text-align: left;
  padding: 0 8px;
}
.pg-dl-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.pg-dl-row:last-child {
  border-bottom: none;
}
.pg-dl-row::before {
  content: "♦";
  color: var(--c);
  font-size: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}
.pg-dl-row dt {
  font-size: 15px;
  font-weight: 700;
  color: var(--tl);
  width: 65px;
  flex-shrink: 0;
}
.pg-dl-row dd {
  flex: 1;
  text-align: right;
  font-size: 18px;
  font-weight: 900;
  color: var(--t);
}
.pg-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--c);
}
.pg-price small {
  font-size: 15px;
  font-weight: 500;
}

.voice-sec {
  padding: 60px 16px;
  background: var(--cbg);
}
.voice-in {
  max-width: 1000px;
  margin: 0 auto;
}
.voice-ttl {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1.4;
}
.voice-en {
  text-align: center;
  font-size: 14px;
  color: var(--c);
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 40px;
  opacity: 0.7;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: var(--w);
  border: 3px solid var(--c);
  border-radius: 20px;
  padding: 50px 20px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 24px rgba(107, 199, 241, 0.15);
  overflow: visible;
  color: var(--t);
}
.voice-av {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gi);
  margin: -30px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 4px solid #fff;
  overflow: hidden;
}
.voice-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-txt {
  font-size: 16px;
  line-height: 1.85;
  text-align: left;
  color: var(--tl);
  margin-bottom: 16px;
  position: relative;
  padding-top: 20px;
}
.voice-txt::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 48px;
  color: rgba(107, 199, 241, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}
.voice-txt em {
  font-style: normal;
  color: var(--c);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(107, 199, 241, 0.2) 60%);
}
.voice-age {
  font-size: 15px;
  color: var(--tm);
  font-weight: 500;
}

.fq {
  background: var(--w);
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  overflow: hidden;
}
.fq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  transition: 0.2s;
}
.fq-q:hover {
  background: var(--cp);
}
.fq-ql {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--c);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}
.fq-qt {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
}
.fq-qa {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cp);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: 0.3s;
  line-height: 1;
}
.fq.open .fq-qa {
  background: var(--c);
  color: #fff;
  transform: rotate(45deg);
}
.fq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fq.open .fq-a {
  max-height: 180px;
}
.fq-ai {
  display: flex;
  gap: 14px;
  padding: 0 24px 20px;
}
.fq-al {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--gbg);
  color: var(--c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}
.fq-at {
  font-size: 20px;
  color: var(--tl);
  line-height: 1.7;
}

.fl-ls {
  max-width: 700px;
  margin: 0 auto;
}

.fl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.fl:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 76px;
  bottom: 0;
  width: 2px;
  background: rgba(107, 199, 241, 0.2);
}
.fl:last-child {
  padding-bottom: 0;
}
.fl-c {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--w);
  border: 3px solid var(--c);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fl-sl {
  font-size: 12px;
  font-weight: 700;
  color: var(--c);
  letter-spacing: 1px;
  line-height: 1;
}
.fl-sn {
  font-size: 28px;
  font-weight: 900;
  color: var(--c);
  line-height: 1;
}
.fl-bd {
  flex: 1;
  padding-top: 8px;
}
.fl-bd h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}
.fl-bd p {
  font-size: 20px;
  color: var(--tl);
  line-height: 1.7;
}

.shop-sec {
  padding: 60px 16px;
  background: var(--w);
}
.shop-in {
  max-width: 1000px;
  margin: 0 auto;
}
.shop-ttl {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 6px;
  margin-bottom: 4px;
}
.shop-en {
  text-align: center;
  font-size: 14px;
  color: var(--c);
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 32px;
}
.shop-name {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--c);
  padding: 16px 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  margin-bottom: 28px;
}
.shop-body {
  display: flex;
  gap: 28px;
  align-items: stretch;
}
.shop-info {
  flex: 1;
}
.shop-addr {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: var(--t);
}
.shop-contact {
  display: flex;
  gap: 24px;
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--t);
}
.shop-contact a {
  color: var(--c);
  text-decoration: none;
  font-weight: 700;
}
.shop-contact a:hover {
  text-decoration: underline;
}
.shop-access {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-acc {
  border-left: 4px solid var(--c);
  padding-left: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.shop-acc b {
  font-weight: 900;
}
.shop-map {
  width: 320px;
  flex-shrink: 0;
  min-height: 280px;
  background: var(--gi);
  border-radius: 8px;
  overflow: hidden;
}
.shop-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.ft {
  background: #2d2d2d;
  color: rgba(255, 255, 255, 0.55);
  padding: 36px 40px;
}
.ft-in {
  max-width: 1000px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ft-logo-img {
  height: 100px;
  width: auto;
}
.ft-lnk {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ft-lnk a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: 0.3s;
}
.ft-lnk a:hover {
  color: var(--cb);
}
.ft-cp {
  text-align: center;
  font-size: 12px;
  opacity: 0.35;
}

.float-line {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  align-items: center;
  gap: 8px;
  background: var(--g);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.float-line.show {
  opacity: 1;
  visibility: visible;
}
.float-line:hover {
  background: var(--gd);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.5);
}
.float-line-icon {
  display: inline-block;
  background: #fff;
  color: var(--g);
  font-size: 13px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 5px;
  line-height: 1;
}
.float-line-txt {
  line-height: 1.3;
  font-size: 14px;
}

.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s, transform 0.5s;
}
.fi.v {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hd {
    height: 56px;
  }
  .hd-tel {
    padding: 8px 14px;
    font-size: 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .hd-line {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
  }
  .hd-logo-img {
    height: 36px;
  }
  .hd-acts {
    gap: 8px;
  }
  .hero {
    margin-top: 56px;
    min-height: auto;
  }
  .hero-in {
    padding: 32px 16px 0;
  }
  .hero-bubble {
    font-size: 16px;
    padding: 8px 20px;
  }
  .hero-copy-hl {
    font-size: 28px;
  }
  .hero-copy-sub {
    font-size: 20px;
  }
  .hero-brand {
    font-size: 24px;
  }
  .hero-badges {
    gap: 10px;
    flex-wrap: nowrap;
  }
  .hero-bdg {
    width: 110px;
    height: 110px;
  }
  .hero-bdg strong {
    font-size: 14px;
  }
  .hero-bdg span {
    font-size: 11px;
  }
  .hero-cta {
    font-size: 16px;
    padding: 14px 32px;
    min-height: 48px;
  }
  .hero-right {
    width: 380px;
  }
  .hero-person {
    max-width: 380px;
  }
  .stats-bar-in {
    flex-wrap: wrap;
  }
  .stat-item {
    padding: 0 12px;
  }
  .stat-big {
    font-size: 15px;
  }
  .stat-big b {
    font-size: 22px;
  }
  .probs-card {
    padding: 32px 24px;
  }
  .probs-ttl {
    font-size: 20px;
  }
  .probs-ttl em {
    font-size: 22px;
  }
  .probs-img {
    width: 180px;
    height: 240px;
  }
  .rsn-hdr {
    padding: 44px 16px 32px;
  }
  .rsn-hdr-hand {
    font-size: 18px;
  }
  .rsn-hdr h2 {
    font-size: 23px;
  }
  .rr-body {
    padding: 32px 28px;
  }
  .rr-body h3 {
    font-size: 22px;
  }
  .rr-body p {
    font-size: 14px;
  }
  .rr-last::after {
    width: 140px;
    height: 140px;
  }
  .cta-full {
    padding: 40px 16px 0;
  }
  .cta-full-in {
    padding-right: 280px;
    min-height: 300px;
  }
  .cta-full-h1 {
    font-size: 24px;
  }
  .cta-full-h2 {
    font-size: 19px;
  }
  .cta-full-btns {
    justify-content: flex-start;
  }
  .cta-full-right {
    width: 280px;
    right: 10px;
  }
  .cta-tel-big {
    padding: 12px 22px;
  }
  .cta-tel-num {
    font-size: 20px;
  }
  .cta-line-big {
    padding: 12px 22px;
    font-size: 16px;
  }
  .cta-mail {
    font-size: 14px;
    padding: 8px 22px;
  }
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .voice-ttl {
    font-size: 23px;
  }
  .voice-card {
    padding: 40px 16px 24px;
  }
  .voice-av {
    width: 100px;
    height: 100px;
    margin: -25px auto 12px;
  }
  .voice-txt {
    font-size: 13px;
    line-height: 1.8;
  }
  .sec {
    padding: 44px 16px;
  }
  .st-t {
    font-size: 19px;
  }
  .fq-q {
    padding: 16px 18px;
    gap: 12px;
  }
  .fq-qt {
    font-size: 14px;
  }
  .fq-at {
    font-size: 14px;
  }
  .fq.open .fq-a {
    max-height: 250px;
  }
  .fl-ls {
    max-width: 520px;
  }
  .shop-ttl {
    font-size: 26px;
    letter-spacing: 4px;
  }
  .shop-body {
    gap: 20px;
  }
  .shop-map {
    width: 280px;
    height: 250px;
  }
  .shop-addr {
    font-size: 14px;
  }
  .shop-acc {
    font-size: 14px;
  }
  .ft-logo-img {
    height: 44px;
  }
  .ft-lnk {
    gap: 12px;
  }
  .ft-lnk a {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .hd {
    height: 50px;
  }
  .hd-in {
    padding: 0 12px;
  }
  .hd-tel {
    display: none;
  }
  .hd-line {
    display: none;
  }
  .hd-logo-img {
    height: 42px;
  }
  .hero {
    margin-top: 50px;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-in {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    justify-items: center;
    text-align: center;
    padding: 24px 16px 0;
  }
  .hero-left {
    padding-bottom: 0;
    width: 100%;
    display: contents;
  }
  .hero-bubble {
    grid-row: 1;
    font-size: 16px;
    padding: 8px 20px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bubble::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-bubble::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-copy {
    grid-row: 2;
    justify-content: center;
    margin-bottom: 4px;
    width: 100%;
  }
  .hero-copy-hl {
    font-size: 28px;
    padding: 4px 12px;
  }
  .hero-copy2 {
    grid-row: 3;
    font-size: 20px;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
  }
  .hero .sp-br {
    display: inline;
  }
  .hero-brand {
    grid-row: 4;
    font-size: 24px;
    font-weight: 900;
    color: var(--c);
    margin-bottom: 0;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
  }
  .hero-right {
    grid-row: 5;
    grid-column: 1;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
  }
  .hero-person {
    max-width: 100%;
  }
  .hero-badges {
    grid-row: 5;
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-content: end;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 16px 8px;
    margin-bottom: 24px;
  }
  .hero-bdg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 12px 8px;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(107, 199, 241, 0.35);
  }
  .hero-bdg strong {
    font-size: 15px;
    margin-bottom: 0;
    white-space: nowrap;
  }
  .hero-bdg span {
    font-size: 12px;
    white-space: nowrap;
  }
  .hero-cta {
    display: none;
  }
  .hc1, .hc2, .hc3, .hc4, .hc5, .hc6 {
    display: none;
  }
  .stats-bar {
    padding: 14px 16px;
  }
  .stats-bar-in {
    flex-direction: column;
    gap: 10px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0;
    width: 100%;
  }
  .stat-item:not(:last-child) {
    border-right: none;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .stat-big {
    font-size: 14px;
  }
  .stat-big b {
    font-size: 22px;
  }
  .probs {
    padding: 32px 12px;
  }
  .probs-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .probs-ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .probs-ttl em {
    font-size: 20px;
  }
  .probs-flex {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .probs-img {
    width: 160px;
    height: 200px;
    border-radius: 10px;
    order: 2;
    margin-top: 0;
  }
  .probs-list {
    order: 1;
    gap: 12px;
    padding-top: 0;
  }
  .probs-arrow {
    margin: 18px 0 6px;
    font-size: 24px;
  }
  .probs-pill span {
    padding: 8px 20px;
    font-size: 14px;
  }
  .probs-note {
    font-size: 12px;
  }
  .probs-note b {
    font-size: 16px;
  }
  .prob-t {
    font-size: 14px;
  }
  .prob-ck {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .rsn-hdr {
    padding: 40px 16px 28px;
  }
  .rsn-hdr-hand {
    font-size: 16px;
  }
  .rsn-hdr h2 {
    font-size: 20px;
  }
  .rsn-hdr-en {
    font-size: 11px;
  }
  .rr,
  .rr.rev {
    flex-direction: column;
  }
  .rr-img {
    width: 100%;
    min-height: 180px;
  }
  .rr-body {
    width: 100%;
    padding: 24px 20px;
  }
  .rr-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .rr-body p {
    font-size: 13px;
    line-height: 1.75;
  }
  .rr-tag {
    margin-bottom: 8px;
  }
  .rr-label {
    font-size: 13px;
  }
  .rr-last::after {
    width: 80px;
    height: 80px;
  }
  .rr-dots {
    display: none;
  }
  .cta-full {
    padding: 28px 16px;
  }
  .cta-full-in {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-right: 0;
    min-height: auto;
  }
  .cta-full-h1 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .cta-full-h2 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .cta-full-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-full-right {
    display: none;
  }
  .cta-tel-big {
    padding: 14px 16px;
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }
  .cta-tel-num {
    font-size: 20px;
  }
  .cta-tel-icon {
    font-size: 18px;
  }
  .cta-line-big {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }
  .cta-mail {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    min-height: 44px;
  }
  .sec {
    padding: 36px 14px;
  }
  .st-w {
    margin-bottom: 24px;
  }
  .st-e {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .st-t {
    font-size: 18px;
  }
  .st-t::after {
    width: 40px;
    margin-top: 6px;
  }
  .area-hd {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  .area-hd h3 {
    font-size: 14px;
  }
  .pgs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pg-i {
    width: 100%;
    aspect-ratio: 3/2;
    height: auto;
  }
  .pg-inf {
    padding: 12px 14px;
  }
  .pg-st {
    font-size: 12px;
  }
  .pg-dt {
    font-size: 11px;
  }
  .pg-pr {
    font-size: 18px;
  }
  .voice-sec {
    padding: 40px 12px;
  }
  .voice-ttl {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .voice-en {
    margin-bottom: 28px;
  }
  .voice-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 40px;
  }
  .voice-card {
    border-radius: 16px;
    padding: 40px 16px 24px;
  }
  .voice-av {
    width: 100px;
    height: 100px;
    margin: -24px auto 12px;
  }
  .voice-txt {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
  }
  .voice-age {
    font-size: 13px;
  }
  .fq {
    margin-bottom: 10px;
    border-radius: 8px;
  }
  .fq-q {
    padding: 16px 14px;
    min-height: 52px;
    gap: 10px;
  }
  .fq-ql, .fq-al {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .fq-qt {
    font-size: 14px;
    line-height: 1.6;
  }
  .fq-qa {
    font-size: 12px;
  }
  .fq-at {
    font-size: 14px;
    line-height: 1.75;
  }
  .fq-ai {
    padding: 0 14px 16px;
  }
  .fq.open .fq-a {
    max-height: 300px;
  }
  .fl-ls {
    max-width: 100%;
    padding: 0 4px;
  }
  .fl {
    gap: 14px;
    padding-bottom: 24px;
  }
  .fl-c {
    width: 40px;
    height: 40px;
    border-width: 2.5px;
  }
  .fl-sl {
    font-size: 6px;
  }
  .fl-sn {
    font-size: 15px;
  }
  .fl:not(:last-child)::after {
    left: 19px;
    top: 44px;
  }
  .fl-bd {
    padding-top: 0;
  }
  .fl-bd h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .fl-bd p {
    font-size: 13px;
    line-height: 1.7;
  }
  .shop-sec {
    padding: 40px 14px;
  }
  .shop-ttl {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .shop-en {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .shop-name {
    font-size: 18px;
    padding: 14px 0;
    margin-bottom: 20px;
  }
  .shop-body {
    flex-direction: column;
    gap: 20px;
  }
  .shop-info {
    width: 100%;
  }
  .shop-addr {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .shop-access {
    gap: 10px;
  }
  .shop-acc {
    font-size: 14px;
    padding-left: 12px;
    border-left-width: 3px;
    line-height: 1.6;
  }
  .shop-map {
    width: 100%;
    height: 220px;
    border-radius: 8px;
  }
  .ft {
    padding: 24px 14px;
  }
  .ft-logo {
    margin-bottom: 10px;
  }
  .ft-logo-img {
    height: 40px;
  }
  .ft-lnk {
    gap: 8px 16px;
    margin-bottom: 14px;
    padding: 0 10px;
  }
  .ft-lnk a {
    font-size: 12px;
    padding: 4px 0;
  }
  .st-t {
    font-size: 20px;
  }
  .st-t::after {
    width: 40px;
    margin-top: 6px;
  }
  .float-line {
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 900;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 -2px 12px rgba(6, 199, 85, 0.3);
  }
  .float-line-icon {
    padding: 5px 10px;
    font-size: 12px;
  }
  .float-line-txt {
    font-size: 16px;
  }
  .float-line-txt br {
    display: none;
  }
  .btt {
    bottom: 68px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .ft {
    padding-bottom: 80px;
  }
}
@media (max-width: 380px) {
  .hero-copy-hl {
    font-size: 22px;
  }
  .hero-copy-sub {
    font-size: 16px;
  }
  .hero-brand {
    font-size: 18px;
  }
  .hero-bdg {
    padding: 8px 20px;
  }
  .hero-bdg strong {
    font-size: 14px;
  }
  .hero-bdg span {
    font-size: 12px;
  }
  .probs-ttl {
    font-size: 16px;
  }
  .rsn-hdr h2 {
    font-size: 18px;
  }
  .cta-full-h1 {
    font-size: 16px;
  }
  .cta-full-h2 {
    font-size: 14px;
  }
  .voice-ttl {
    font-size: 18px;
  }
  .shop-ttl {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
