:root {
  --teal: #4c9ee3;
  --teal-lt: #f2eee3;
  --teal-dk: #2c7ac4;
  --yellow: #fecb52;
  --yellow-dk: #e2a926;
  --blue: #2cb4de;
  --blue-lt: #eaf8fc;
  --white: #faf7f2;
  --g50: linear-gradient(135deg, #faf7f2 0%, #f2eee3 100%);
  --g100: #eef2f5;
  --g200: #dde5eb;
  --g500: #7b8f9e;
  --g700: #3b5060;
  --text: #3c4c55;
  --text-sub: #66757d;
  --font: 'Noto Sans JP', sans-serif;
  --hdr-h: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
em {
  font-weight: 900 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  font-size: inherit;
}

html,
body {
  font-size: 16px;
}

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

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

ul {
  list-style: none
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 72px 0
}

.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 3px 10px;
  margin-bottom: 8px
}

.sec-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 900;
  line-height: 1.3
}

.sec-title em {
  color: var(--teal);
  font-style: normal
}

.sec-sub {
  font-size: 16px;
  color: var(--text-sub);
  margin-top: 10px;
  line-height: 1.8
}

.tc {
  text-align: center
}

.mt32 {
  margin-top: 32px
}

.mt48 {
  margin-top: 48px
}

/* ===== BUTTONS — only CTA gets rounded ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  transition: filter .15s, transform .15s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(.98)
}

.btn-web {
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 16px 36px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-tel {
  border-radius: 999px;
  background: var(--yellow);
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  padding: 16px 36px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 22px
}

.btn:hover {
  filter: brightness(1.06)
}

.btn-outline-sq {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s;
  padding: 12px 32px;
}

.btn-outline-sq:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== HEADER (Type 17 style) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr-h);
  z-index: 1000;
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--g100);
}

.header-inner {
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.nav-group {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.nav-group li {
  flex: 1;
  border-left: 1px solid var(--g100);
}

.nav-group.right li:last-child {
  border-right: 1px solid var(--g100);
}

.nav-group li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  transition: background .2s;
  text-align: center;
}

.nav-group li a:hover {
  background: var(--teal-lt);
}

.nav-group li a.active {
  background: #fff8eb;
  border-bottom: 3px solid var(--yellow);
}

.nav-ico {
  color: var(--teal);
  margin-bottom: 4px;
}

.nav-ja {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: #fff;
  border-left: 1px solid var(--g100);
  border-right: 1px solid var(--g100);
}

.header-logo .logo {
  text-align: center;
}

/* SP Hamburger */
.hmb {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.hmb span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== SP DRAWER (Type 17 style) ===== */
.sp-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  display: none;
}

.sp-drawer.open {
  pointer-events: auto;
  display: block;
}

.sp-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.sp-drawer.open .sp-drawer-panel {
  transform: translateX(0);
}

.sp-drawer-head {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--g100);
}

.sp-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-sub);
}

.sp-drawer-nav {
  list-style: none;
  padding: 10px 0;
  flex: 1;
}

.sp-drawer-nav li a {
  display: block;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--g50);
}

.sp-drawer-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-drawer-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.dact-tel {
  background: var(--teal);
  color: #fff;
}

.dact-web {
  background: var(--yellow);
  color: var(--text);
}

/* ══════════════════════════════
   FV WRAPPER (From 17 File Data)
══════════════════════════════ */
.fv {
  position: relative;
  width: 100%;
  height: 868px;
  /* 768px(オリジナル) + 100px(白隙間) */
  background: #fff;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.fv-stage {
  position: absolute;
  left: 160px;
  right: 72px;
  top: 120px;
  /* calc(var(--hdr-h) + 20px) */
  height: 620px;
  /* 768 - 120 - 28 */
}

.fv-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.14), 0 4px 14px rgba(0, 0, 0, 0.08);
}

.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  animation: none;
}

.slide.active .slide-bg {
  animation: kenburns 7s ease-in-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.0) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

.slide:nth-child(2n).active .slide-bg {
  animation: kenburns-r 7s ease-in-out forwards;
}

@keyframes kenburns-r {
  0% {
    transform: scale(1.12) translate(1%, 1%);
  }

  100% {
    transform: scale(1.0) translate(0, 0);
  }
}

.fv-stage-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 91, 201, 0.3) 0%, rgba(21, 91, 201, 0) 33%);
  pointer-events: none;
  z-index: 5;
  border-radius: 20px;
}

.slide-counter-wrap {
  position: absolute;
  left: 90px;
  top: 120px;
  height: 620px;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 20;
}

.counter-current {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.counter-sep {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--teal), rgba(76, 158, 227, 0.4));
}

.counter-total {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.counter-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(76, 158, 227, 0.3);
  cursor: pointer;
  border: none;
}

.cdot.active {
  background: var(--teal);
  height: 18px;
  border-radius: 3px;
}

.fv-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 48px 32px 28px;
  pointer-events: none;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.0) 100%);
}

.copy-main {
  font-size: clamp(22px, 3.8vw, 54px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.copy-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  margin: 10px auto 8px;
}

.copy-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.blog-btn {
  position: absolute;
  left: 80px;
  top: 764px;
  /* オリジナル下端 768px - 4px */
  transform: translateY(-50%);
  /* 中央合わせを考慮して調整 */
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 50;
  box-shadow: 0 0 0 6px rgba(254, 203, 82, 0.2), 0 0 0 12px rgba(254, 203, 82, 0.08), 0 14px 40px rgba(254, 203, 82, 0.55);
  animation: blog-pulse 2.8s ease-in-out infinite;
}

@keyframes blog-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(254, 203, 82, 0.2), 0 0 0 12px rgba(254, 203, 82, 0.08), 0 14px 40px rgba(254, 203, 82, 0.55);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(254, 203, 82, 0.25), 0 0 0 22px rgba(254, 203, 82, 0.1), 0 18px 50px rgba(254, 203, 82, 0.6);
  }
}

.blog-btn:hover {
  background: var(--yellow-dk);
  transform: translateY(-50%) scale(1.08);
}

.blog-inner {
  text-align: center;
}

.blog-ja {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
}

@media (max-width: 768px) {
  .fv {
    height: 720px;
    background: #fff;
  }

  .fv-stage {
    left: 15px;
    right: 15px;
    top: 85px;
    /* header(70px) + margin(15px) */
    height: 520px;
    /* 参考画像の比率に合わせた高さ */
  }

  .fv-stage-inner {
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  }

  .fv-stage-inner::after {
    display: none;
  }

  .fv-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(21, 91, 201, 0) 0%, rgba(21, 91, 201, 0.35) 45%, rgba(21, 91, 201, 0.35) 55%, rgba(21, 91, 201, 0) 100%) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .copy-main {
    font-size: clamp(22px, 7vw, 34px);
    color: #fff;
    font-weight: 900;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .copy-sub {
    font-size: 16px;
    color: #fff;
    margin-top: 8px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  }

  .blog-btn {
    left: 4px;
    top: 545px;
    /* 画像下端(85+520=605)に対して、約60pxほど上に重なる */
    width: 130px;
    height: 130px;
    transform: none;
    box-shadow: 0 12px 30px rgba(254, 203, 82, 0.45);
    z-index: 60;
  }

  .blog-btn:hover {
    transform: scale(1.08);
  }

  .blog-ja {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .fv {
    margin-top: 0;
  }
}

.blog-btn-rect:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
}

.blog-btn-rect .blog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .blog-btn-rect {
    font-size: 18px;
    padding: 15px 24px;
  }
}

/* ABOUT */
#about {
  padding: 100px 0;
}

.section {
  padding: 80px 0;
}

/* FLOAT BUTTONS */
.float-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 60px;
  padding: 20px 0;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.1);
  transition: padding-right .2s;
}

.float-btn:hover {
  padding-right: 5px;
}

.float-btn--tel {
  background: var(--teal);
}

.float-btn--web {
  background: var(--yellow);
  color: var(--text);
}

.float-btn-text {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* SP BOTTOM CTA */
.sp-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  background: #fff;
  grid-template-columns: 1fr 1fr;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sp-bottom-cta.visible {
  transform: translateY(0);
}

.sp-bcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.sp-bcta-tel {
  background: var(--teal);
}

.sp-bcta-web {
  background: var(--yellow);
  color: var(--text);
}


/* ===== ABOUT ===== */
#about {
  background: #fff;
  padding: 40px 0;
}

.ab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.ab-text p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 14px
}

@media (max-width: 767px) {
  .ab-text {
    text-align: center;
  }
}

.ab-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px
}

.chip {
  background: var(--teal-lt);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-dk);
  white-space: nowrap
}

.ab-gallery-wrap {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .ab-gallery-wrap {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}

.ab-gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-gallery-item:nth-child(n+4) {
  display: none;
}

.ab-gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
  .ab-gallery-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: abGallerySlide 30s linear infinite;
  }

  .ab-gallery-item {
    display: block !important;
    width: 280px;
    flex-shrink: 0;
  }
}

@keyframes abGallerySlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

.ab-img img {
  width: 100%;
  height: auto;
  border-radius: 20px
}

@media(min-width:768px) {
  .ab-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px
  }
}

/* ===== SERVICE ===== */
#service {
  background: url('../img/bg2.png') top center/cover no-repeat;
}

.sv-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px
}

.sv-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--g200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03)
}

.sv-img {
  width: 100%;
  aspect-ratio: 16/10
}

.sv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sv-body {
  padding: 32px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.sv-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 20px;
  width: fit-content;
  border-radius: 8px
}

.sv-card:nth-child(1) .sv-badge {
  background: var(--teal)
}

.sv-card:nth-child(2) .sv-badge {
  background: var(--blue)
}

.sv-card:nth-child(3) .sv-badge {
  background: var(--g700)
}

.sv-card:nth-child(4) .sv-badge {
  background: var(--yellow);
  color: var(--text)
}

.sv-badge .pn {
  font-size: 22px;
  font-weight: 900;
  opacity: .5;
  line-height: 1
}

.sv-body h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.4;
  color: var(--text)
}

.sv-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8
}

@media(min-width:768px) {
  .sv-list {
    gap: 52px
  }

  .sv-card {
    flex-direction: row;
    min-height: 360px
  }

  .sv-card:nth-child(even) {
    flex-direction: row-reverse
  }

  .sv-img {
    width: 48%;
    aspect-ratio: auto
  }

  .sv-body {
    width: 52%;
    padding: 48px 56px
  }

  .sv-body h3 {
    font-size: 24px
  }

  .sv-points {
    margin-top: 20px;
    gap: 12px
  }
}

.sv-points {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sv-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dk)
}

.sv-points li svg {
  color: var(--teal);
  flex-shrink: 0
}

/* ===== CTA BLOCK ===== */
.cta-blk {
  background: var(--teal);
  padding: 52px 0
}

.cta-blk-in {
  text-align: center
}

.cta-blk-ttl {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.cta-wg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.cta-wg .btn-web {
  font-size: 17px;
  padding: 16px 44px
}

.cta-wg .csub {
  font-size: 16px;
  color: rgba(255, 255, 255, .65)
}

.cta-tg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.cta-tel-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  padding: 24px 80px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: background .2s, transform .2s;
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cta-tel-a {
    font-size: clamp(16px, 5.5vw, 19px);
    padding: 16px 10px;
    min-height: 64px;
  }
}

.cta-tel-a:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
}

.cta-tnote {
  font-size: 16px;
  color: rgb(255, 255, 255)
}

@media(min-width:640px) {
  .cta-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 52px
  }
}

.cta-blk .btn-web {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: clamp(20px, 4.5vw, 24px);
  padding: 24px 80px;
  width: 100%;
  max-width: 580px;
}

.cta-blk .btn-web:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .cta-blk .btn-web {
    font-size: clamp(16px, 5.5vw, 19px);
    padding: 16px 10px;
    min-height: 64px;
  }
}

.cta-blk .csub {
  color: #fff;
  opacity: 0.9;
  margin-top: 4px;
}

.pr-btn-wrap .btn-web {
  padding: 14px 32px;
  font-size: 16px;
  background: #fff;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  font-weight: 700;
  transition: all 0.3s;
}

.pr-btn-wrap .btn-web:hover {
  background: var(--teal);
  color: #fff;
}

.pr-btn-wrap .btn-web:hover {
  background: var(--teal-lt);
}

.pr-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

/* ===== PRICE ===== */
#price {
  position: relative;
  background: transparent;
  z-index: 1;
  overflow: hidden;
}

#price::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: url('../img/menu.jpeg') center/cover no-repeat;
  filter: blur(8px);
  z-index: -2;
}

#price::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  z-index: -1;
}

.pr-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px
}

@media(min-width:640px) {
  .pr-cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

.pr-card2 {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.pr-card2-img {
  height: 160px;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.pr-card2:nth-child(2) .pr-card2-img {
  background: var(--blue-lt)
}

.pr-card2:nth-child(3) .pr-card2-img {
  background: #f0f0f5
}

.pr-card2-img-ph {
  font-size: 13px;
  color: var(--g500)
}

.pr-card2-body {
  padding: 22px 20px;
  flex: 1;
  border-top: 3px solid var(--teal)
}

.pr-card2:nth-child(2) .pr-card2-body {
  border-top-color: var(--blue)
}

.pr-card2:nth-child(3) .pr-card2-body {
  border-top-color: var(--g700)
}

.pr-card2-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-sub);
  margin-bottom: 6px
}

.pr-card2-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.4
}

.pr-card2:nth-child(2) .pr-card2-name {
  color: var(--blue)
}

.pr-card2:nth-child(3) .pr-card2-name {
  color: var(--g700)
}

.pr-card2-amt {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px
}

.pr-card2-amt span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub)
}

.pr-card2-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 14px;
  line-height: 1.7
}

.pr-card2-items {
  background: var(--g50);
  padding: 12px 14px
}

.pr-card2-items li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 2px 0 2px 12px;
  position: relative
}

.pr-card2-items li::before {
  content: '·';
  position: absolute;
  left: 2px;
  color: var(--teal);
  font-weight: 900
}

.pr-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-sub);
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  background: var(--g50)
}

/* ===== POINT ===== */
#point {
  background: var(--blue-lt)
}

.pt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px
}

.pt-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid var(--g200);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.pt-ico {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center
}

.pt-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pt-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #5a99cf;
  margin-bottom: 12px;
  line-height: 1.4
}

.pt-card p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  text-align: left
}

@media(min-width:640px) {
  .pt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }
}

@media(min-width:1024px) {
  .pt-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
  }
}

/* ===== PRICE LG ===== */
.pr-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px
}

@media(min-width:768px) {
  .pr-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

.pr-card-lg {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 4px solid var(--teal-lt)
}

.pr-card-lg:nth-child(2) {
  border-color: var(--blue-lt)
}

.pr-lg-head {
  background: var(--teal);
  color: #fff;
  padding: 24px 32px;
  text-align: center;
  position: relative
}

.pr-lg-head.rd {
  background: var(--blue)
}

.pr-tg {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 12px
}

.pr-nm {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .05em
}

.pr-lg-body {
  padding: 40px 32px;
  text-align: center
}

.pr-amt {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1
}

.pr-amt span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-sub)
}

.pr-desc {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 32px;
  font-weight: 700
}

.pr-lg-list {
  background: var(--g50);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto
}

.pr-lg-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 17px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--g200)
}

.pr-lg-list li:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.pr-lg-list li:first-child {
  padding-top: 0
}

.pr-lg-list li span {
  font-weight: 700;
  color: var(--text-sub);
  font-size: 16px
}

.pr-lg-list li strong {
  font-weight: 900;
  font-size: 22px;
  color: var(--text);
  display: block;
  text-align: right;
}

.tax {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  margin-left: 2px;
}

.sub-pr {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  font-style: normal;
  margin-top: 4px;
}

@media(max-width:640px) {
  .pr-nm {
    font-size: 22px
  }

  .pr-amt {
    font-size: 32px
  }

  .pr-lg-body {
    padding: 30px 20px
  }

  .pr-lg-list {
    padding: 20px
  }

  .pr-lg-list li span {
    font-size: 14px
  }

  .pr-lg-list li strong {
    font-size: 18px
  }
}

.pr-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  text-align: center;
}

.pr-note-small {
  font-size: 13px;
  color: var(--text-sub);
}

/* ===== FLOW (flow.png style) ===== */
#flow {
  background: url('../img/bg1.png') center/cover no-repeat;
}

.fl-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  max-width: 1000px;
  margin-inline: auto
}

.fl-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  overflow: hidden;
  min-height: 280px
}

@media(max-width:767px) {
  .fl-card {
    flex-direction: column
  }
}

.fl-card-body {
  flex: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column
}

.fl-card-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 16px
}

.fl-card-label .lb {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.fl-card-label .sn {
  font-size: 32px;
  line-height: 1
}

.fl-card-body h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3
}

.fl-card-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 24px
}

.fl-card-img {
  width: 50%;
  flex-shrink: 0
}

@media(max-width:767px) {
  .fl-card-img {
    width: 100%;
    height: 200px
  }
}

.fl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.fl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: transparent;
  padding: 0;
  margin-top: auto
}

.fl-act-tel {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.fl-act-tel strong {
  font-size: 20px;
  color: var(--text)
}

.fl-act-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.fl-act-btns a {
  width: 100%;
  justify-content: center;
}

.btn-fl-line {
  background: #06c755;
  color: #fff;
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 6px
}

.btn-fl-web {
  background: #f15a24;
  color: #fff;
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 6px
}

.fl-sep {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  color: var(--teal);
}

.fl-sep::after {
  content: '▼';
  font-size: 32px;
  line-height: 1;
}

/* ===== MESSAGE ===== */
#message {
  position: relative;
  background: transparent;
  z-index: 1;
}

#message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/bg1.png') center/cover no-repeat;
  filter: opacity(0.15);
  z-index: -1;
}

.ms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px
}

.ms-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px
}

.ms-text .quote {
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 900;
  color: var(--teal);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ms-text p {
  font-size: 16px;
  line-height: 1.9
}

@media(min-width:768px) {
  .ms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .ms-text {
    margin-left: -80px;
  }
}

/* ===== Q&A ===== */
#qa {
  background: var(--g50)
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: none;
  border: none;
  margin-top: 40px
}

.qa-item {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 16px;
  overflow: hidden
}

.qa-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none
}

.qa-q:hover {
  background: var(--g50)
}

.qmk {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
  background: var(--teal)
}

.qmk.a {
  background: var(--yellow);
  color: var(--text)
}

.qa-q h3 {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 2px
}

.qa-arr {
  color: var(--teal);
  transition: transform .3s;
  flex-shrink: 0;
  padding-top: 4px
}

.qa-item.open .qa-arr {
  transform: rotate(180deg)
}

.qa-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.qa-item.open .qa-ans {
  max-height: 400px
}

.qa-ans-in {
  display: flex;
  gap: 12px;
  padding: 0 20px 20px
}

.qa-ans-in p {
  font-size: 15px;
  line-height: 1.8;
  padding-top: 2px
}

/* ===== CONTACT ===== */
#contact {
  background: #fff
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px
}

.ct-info {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-row {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.ct-ico {
  width: 34px;
  height: 34px;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-dl dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: .08em;
  margin-bottom: 2px
}

.ct-dl dd {
  font-size: 16px;
  font-weight: 700
}

.ct-dl dd.lg {
  font-size: 22px
}

.ct-dl dd a {
  color: var(--text)
}

.sns-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .2s
}

.sns-btn:hover {
  opacity: .8
}

.sns-ig {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: #fff
}

.sns-hp {
  background: var(--teal);
  color: #fff
}

.map-wrap {
  border: 1px solid var(--g200)
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block
}

@media(min-width:768px) {
  .ct-grid {
    grid-template-columns: 1fr 1fr
  }

  .map-wrap iframe {
    height: 380px
  }

  .sns-row {
    justify-content: flex-start
  }
}

@media(max-width:767px) {
  .sns-row {
    justify-content: center
  }
}

/* ===== FOOTER ===== */
#footer {
  background: var(--text);
  padding: 24px 0
}

.ft-btm {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .5)
}

/* STICKY CTA SP */
#stky {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--g200);
  padding: 8px 10px;
  gap: 8px;
  z-index: 950;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

#stky.visible {
  transform: translateY(0);
}

#stky .btn-tel {
  background: var(--teal);
  color: #fff;
}

#stky .btn-web {
  background: var(--yellow);
  color: var(--text);
}

#stky .btn {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  padding: 13px 8px
}

@media(min-width:901px) {
  #stky {
    display: none
  }
}

/* BACK TOP */
#btop {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 900
}

#btop.vis {
  opacity: 1;
  pointer-events: auto
}

@media(min-width:900px) {
  #btop {
    bottom: 24px;
    right: 24px
  }
}

@media (max-width: 900px) {
  :root {
    --hdr-h: 70px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  .nav-group {
    display: none;
  }

  .header-inner {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
  }

  .hmb {
    display: flex;
    height: 100%;
    width: 60px;
    align-items: center;
    justify-content: center;
  }

  .header-logo {
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
  }

  .logo strong {
    font-size: 15px;
  }

  .logo {
    font-size: 11px;
  }

  .fv {
    margin-top: 0;
  }


  .slide-counter-wrap {
    display: none;
  }

  .fv-copy-left {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 48px);
    max-width: none;
  }

  .fv-h1 {
    gap: 6px;
  }

  .fv-h1-sub {
    font-size: clamp(14px, 4vw, 20px);
  }

  .fv-h1 .acc {
    font-size: clamp(24px, 8.5vw, 46px);
  }

  .fv-sub {
    font-size: 13px;
  }

  .fv-badges {
    margin-bottom: 16px;
    gap: 6px;
  }

  .fbadge {
    padding: 4px 10px;
    font-size: 11px;
  }

  .blog-btn {
    left: auto;
    right: 10px;
    bottom: 10px;
    width: 110px;
    height: 110px;
  }

  .blog-ja {
    font-size: 15px;
  }

  .float-right {
    display: none !important;
  }

  .sp-bottom-cta {
    display: none !important;
    /* redundant but safe */
  }
}

/* FADE IN */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease
}

.fi.d1 {
  transition-delay: .1s
}

.fi.d2 {
  transition-delay: .2s
}

.fi.d3 {
  transition-delay: .3s
}

.fi.show {
  opacity: 1;
  transform: none
}