:root {
  --gp: #0ea5e9;
  --gd: #0369a1;
  --gl: #e0f2fe;
  --gm: #0284c7;
  --gp2: #f0f9ff;
  --gld: #d4a843;
  --txt: #222;
  --sub: #555;
  --r: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--txt);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
  /* Text protection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  /* 笳丞渕譛ｬ繝輔か繝ｳ繝医し繧､繧ｺ16px */
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Noto Sans JP', sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
  /* Image protection */
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec {
  padding: 72px 20px;
}

.alt {
  background: var(--gp2);
}

/* 笏笏 headings 笏笏 */
.en {
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--gm);
  font-weight: 700;
  text-transform: uppercase;
}

/* 笳丞､ｧ隕句・縺励ヵ繧ｩ繝ｳ繝医し繧､繧ｺ隱ｿ謨ｴ繝ｻ謾ｹ陦悟ｴｩ繧碁亟豁｢ */
.ttl {
  font-size: 32px;
  font-weight: 800;
  color: var(--gd);
  line-height: 1.45;
  margin: 8px 0 4px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.lead {
  font-size: 1rem;
  /* 16px */
  color: var(--sub);
  line-height: 1.9;
  margin-top: 10px;
}

.bar {
  width: 38px;
  height: 3px;
  background: linear-gradient(to right, var(--gp), var(--gld));
  border-radius: 99px;
  margin: 14px auto 0;
}

.bar.l {
  margin-left: 0;
}

.badge {
  display: inline-block;
  background: var(--gp);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.sp-br {
  display: none;
}

/* 笏笏 buttons 笏笏 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn:hover {
  opacity: .86;
  transform: translateY(-2px);
}

.btn-g {
  background: var(--gp);
  color: #fff;
}

.btn-l {
  background: #06c755;
  color: #fff;
}

.btn-d {
  background: var(--gd);
  color: #fff;
}

/* 笏笏 HEADER 笏笏 */
#hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--gl);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
}

.hdi {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-m {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gd);
  line-height: 1.1;
}

.logo-s {
  font-size: .6rem;
  color: var(--gm);
  margin-top: 2px;
  font-weight: 500;
}

.pcnav {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.pcnav a {
  font-size: .74rem;
  font-weight: 500;
  color: var(--txt);
  padding: 6px 9px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.pcnav a:hover {
  background: var(--gl);
  color: var(--gp);
}

.hcta {
  margin-left: 10px;
  flex-shrink: 0;
}

.hcta .btn {
  padding: 10px 20px;
  font-size: .8rem;
}

/* 笏笏 HAMBURGER 笏笏 */
#hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}

#hbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gd);
  border-radius: 2px;
  transition: all .28s;
}

#hbg.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hbg.open span:nth-child(2) {
  opacity: 0;
}

#hbg.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#spnav {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gd);
  z-index: 999;
  padding: 28px 24px;
  overflow-y: auto;
}

#spnav.open {
  display: block;
}

#spnav a {
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.sncta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* 笏笏 STATS 笏笏 */
#stats {
  background: var(--gd);
  padding: 0;
}

.stg {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.st {
  text-align: center;
  padding: 26px 16px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.st:last-child {
  border-right: none;
}

.stn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #a8ffce;
  line-height: 1;
}

.stu {
  font-size: .85rem;
  color: #a8ffce;
}

.stl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .72);
  margin-top: 5px;
}

/* 笏€笏€ WORRIES 笏€笏€ */
#worries {
  position: relative;
  z-index: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

#worries::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: url('../img/sfvbg.jpg') no-repeat left center / cover;
  z-index: -2;
}

@media (max-width: 767px) {
  #worries::before {
    background-position: 30% center;
  }
}

#worries::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

.w-right {
  margin-left: 50%;
  text-align: left;
}

@media(max-width:767px) {
  .w-right {
    margin-left: 0;
  }
}

.wgrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.wcard {
  width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: none;
  box-sizing: border-box;
  text-align: center;
}

.wcard:last-child {
  border-bottom: none;
}

.wico {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gp);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.wico::before {
  content: '?';
}

.wtxt {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gd);
  line-height: 1.4;
  white-space: normal;
  margin-top: 10px;
}

.wcta-msg {
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 60px;
  text-align: center;
}

.wcta-s {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sub);
  margin-bottom: 8px;
}

.wcta-l {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gd);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.wcta-l span {
  color: var(--gm);
  position: relative;
  display: inline-block;
}

.wcta-l span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: rgba(42, 170, 107, .2);
  z-index: -1;
}

/* 笏€笏€ ABOUT 笏€笏€ */
#about {
  background-color: #fafafa;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.about-g {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-img {
  border-radius: 14px;
  overflow: hidden;
}

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

.aqlist {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aq {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff185;
  border-radius: 8px;
  padding: 12px 14px;
}

.aqico {
  color: var(--gld);
  font-size: 1.1rem;
  margin-top: -2px;
  flex-shrink: 0;
}

.aqtxt {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gd);
}

/* 笏€笏€ POINTS 笏€笏€ */
.ptg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}

.ptc {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(29, 140, 87, .1);
  transition: transform .22s, box-shadow .22s;
}

.ptc:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(29, 140, 87, .16);
}

.ptimg {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #eaeaea;
}

.ptbd {
  padding: 20px 22px;
}

.ptn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff7800;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.ptn::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.ptttl {
  font-size: 24px;
  font-weight: 800;
  color: var(--gd);
  margin-bottom: 8px;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.pttxt {
  font-size: 1rem;
  /* 16px */
  color: var(--sub);
  line-height: 1.8;
}

/* 笏€笏€ GUARANTEE 笏€笏€ */
#grt {
  background: linear-gradient(rgba(21, 95, 59, 0.85), rgba(21, 95, 59, 0.85)), url('../img/price.jpg') no-repeat center / cover;
  padding: 100px 20px;
}

.grt-in {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.gbd {
  color: var(--txt);
  font-size: 1.05rem;
  line-height: 2.1;
  border: 3px solid var(--gld);
  padding: 60px 40px;
  border-radius: 16px;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shiny-ttl {
  position: relative;
  background: linear-gradient(110deg, #b8860b 0%, #ffcc00 25%, #fff 50%, #ffcc00 75%, #b8860b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  display: inline-block;
  margin: 10px 0 24px;
  filter: drop-shadow(0 2px 2px rgba(184, 134, 11, 0.4));
  animation: shine-text 4s linear infinite;
}

@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine-btn 3s infinite;
}

@keyframes shine-btn {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.gbd p {
  margin-bottom: 12px;
}

.gimg {
  width: 100%;
  border-radius: 12px;
  opacity: .9;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  background: #333;
  min-height: 200px;
}

.gbadge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gld);
  color: var(--gld);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* 笏€笏€ FLOW 笏€笏€ */
#flow {
  position: relative;
  z-index: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

#flow::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: url('../img/flowbg.jpg') no-repeat center center / cover;
  z-index: -2;
}

#flow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
}

.fw {
  max-width: 720px;
  margin: 48px auto 0;
}

.fimg {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(29, 140, 87, .1);
  margin-bottom: 40px;
  background: #eaeaea;
  min-height: 150px;
}

.fsteps {
  display: flex;
  flex-direction: column;
}

.fst {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}

.fst:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(to bottom, var(--gp), var(--gl));
}

.fci {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  z-index: 1;
}

.ftxt {
  padding: 4px 0 32px;
}

.fttl {
  font-size: 24px;
  font-weight: 800;
  color: var(--gd);
  margin-bottom: 5px;
  word-break: keep-all;
}

.fdesc {
  font-size: 1rem;
  /* 16px */
  color: var(--sub);
  line-height: 1.8;
}

/* 笏笏 VOICE 笏笏 */
#voice {
  background: linear-gradient(to bottom, #e0f2fe 0%, #ffffff 100%);
}

.swiper {
  padding-bottom: 44px !important;
}

.swiper-slide {
  height: auto;
}

.vc {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 4px 18px rgba(29, 140, 87, .09);
}

.vch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vcav {
  display: none;
}

.vcnm {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gd);
}

.vctag {
  display: inline-block;
  background: var(--gl);
  color: var(--gp);
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  margin-top: 3px;
}

.vcq {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gd);
  line-height: 1.5;
  margin-bottom: 10px;
}

.vcb {
  font-size: 1rem;
  /* 16px */
  color: var(--sub);
  line-height: 1.85;
}

.vcn {
  font-size: .68rem;
  color: #aaa;
  margin-top: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--gp) !important;
}

/* 笏笏 VOICE MORE BUTTON 笏笏 */
.voice-more-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gm);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  transition: opacity 0.2s, transform 0.2s;
}

.voice-more-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* 笏笏 VOICE SCROLL HINT (SP only) 笏笏 */
.voice-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gm);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 16px;
  margin-bottom: 0;
  animation: hint-pulse 1.5s ease-in-out infinite;
}

@keyframes hint-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@media (max-width: 767px) {
  .voice-scroll-hint {
    display: block;
  }
}

/* 笏笏 PRICE SCROLL HINT 笏笏 */
.price-scroll-hint {
  display: none;
  font-size: 0.78rem;
  color: var(--gm);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: var(--gl);
  border-radius: 6px;
}

@media (max-width: 767px) {
  .price-scroll-hint {
    display: block;
  }
}

/* 笏笏 STAFF 笏笏 */
.sfg {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sfimg {
  overflow: hidden;
}

.sfimg img {
  width: 100%;
  height: auto;
}

.sfnm {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gd);
  margin-bottom: 4px;
}

.sfrole {
  font-size: .75rem;
  color: var(--gm);
  margin-bottom: 16px;
  font-weight: 500;
}

.sftags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.sftag {
  background: var(--gl);
  color: var(--gd);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 99px;
}

.sfbody {
  font-size: 1rem;
  /* 16px */
  color: var(--sub);
  line-height: 1.9;
}

.sfmsg {
  margin-top: 20px;
  background: var(--gp2);
  border-left: 3px solid var(--gld);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
}

.sfmttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gd);
  margin-bottom: 7px;
}

.sfmp {
  font-size: .82rem;
  color: var(--sub);
  line-height: 1.9;
}

/* 笏笏 FAQ 笏笏 */
.fql {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fqi {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(29, 140, 87, .07);
}

.fqbtn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}

.fqico {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--gp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
}

.fqtxt {
  font-size: 16px;
  font-weight: 700;
  color: var(--gd);
  flex: 1;
  text-align: left;
}

.fqarr {
  color: var(--gp);
  font-size: .85rem;
  margin-left: 4px;
  transition: transform .28s;
  flex-shrink: 0;
}

.fqi.open .fqarr {
  transform: rotate(180deg);
}

.fqa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: .83rem;
  color: var(--sub);
  line-height: 1.9;
  padding: 0 20px 0 58px;
}

.fqi.open .fqa {
  max-height: 500px;
  padding: 2px 20px 18px 58px;
}

/* 笏笏 ACCESS 笏笏 */
.acg {
  max-width: 960px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.acdl {
  display: flex;
  flex-direction: column;
}

.acrow {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--gl);
}

.acdt {
  width: 88px;
  min-width: 88px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gp);
}

.acdd {
  font-size: 1rem;
  /* 16px */
  line-height: 1.7;
}

.acmap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(29, 140, 87, .12);
  height: 400px;
  background: #eee;
}

.acmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.rbox {
  max-width: 680px;
  margin: 48px auto 0;
  background: var(--gp2);
  border: 2px solid var(--gl);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
}

.rttl {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gd);
  margin-bottom: 6px;
}

.rsub {
  font-size: .82rem;
  color: var(--sub);
  margin-bottom: 24px;
}

.rbtns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 笏笏 FOOTER 笏笏 */
footer {
  background: var(--gd);
  color: rgba(255, 255, 255, .8);
  padding: 40px 20px;
  text-align: center;
}

.ftl {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.ftcp {
  font-size: .65rem;
  opacity: .45;
  margin-top: 10px;
}

.ftnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0;
}

.ftnav a {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
}

.ftnav a:hover {
  color: #a8ffce;
}

/* 笏笏 BACK TOP 笏笏 */
#bt {
  position: fixed;
  bottom: 88px;
  right: 18px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(29, 140, 87, .35);
  transition: opacity .3s, transform .2s;
  cursor: pointer;
}

#bt:hover {
  transform: translateY(-3px);
}

#bt.hide {
  opacity: 0;
  pointer-events: none;
}

/* 笏笏 SP CTA 笏笏 */
#spcta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 880;
  background: #fff;
  border-top: 1px solid var(--gl);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .1);
  padding: 10px 14px;
  gap: 10px;
  transition: transform 0.3s ease;
}

#spcta.hide {
  transform: translateY(100%);
}

#spcta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
}

.sptel {
  background: var(--gp);
  color: #fff;
}

.spline {
  background: #06c755;
  color: #fff;
}

/* 笏笏 INFINITE SLIDER 笏笏 */
.slide-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

.slide-track {
  display: flex;
  width: calc(300px * 10);
  animation: slide 30s linear infinite;
}

.slide-item {
  width: 300px;
  padding: 0 10px;
  flex-shrink: 0;
}

.slide-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

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

  100% {
    transform: translateX(calc(-300px * 5));
  }
}

/* 笏笏 CTA SECTION 笏笏 */
.cta-mid-section {
  background: var(--gd);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.cta-mid-in {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: #ff7800;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.cta-ttl-mid {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.cta-g2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

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

.cta-btns-mid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn-phone,
.cta-btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: .3s;
}

.cta-btn-phone {
  background: #ff7800;
  color: #fff;
}

.cta-btn-line {
  background: #fff;
  color: #06C755;
}

.cta-btn-phone:hover,
.cta-btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.icon-phone {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5C20.55,15.5 21,15.95 21,16.5V20C21,20.55 20.55,21 20,21C10.61,21 3,13.39 3,4C3,3.45 3.45,3 4,3H7.5C8.05,3 8.5,3.45 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5C20.55,15.5 21,15.95 21,16.5V20C21,20.55 20.55,21 20,21C10.61,21 3,13.39 3,4C3,3.45 3.45,3 4,3H7.5C8.05,3 8.5,3.45 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z'/%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
  margin-right: 8px;
}

/* 笏笏 RESPONSIVE 笏笏 */
@media(max-width:767px) {

  .pcnav,
  .hcta {
    display: none;
  }

  #hbg {
    display: flex;
  }

  #spcta {
    display: flex;
  }

  #bt {
    bottom: 100px;
    right: 14px;
  }

  .sec {
    padding: 52px 20px;
  }

  .wrap {
    padding: 0;
  }

  /* 笳輯P螟ｧ隕句・縺励ヵ繧ｩ繝ｳ繝医し繧､繧ｺ隱ｿ謨ｴ繝ｻ謾ｹ陦悟ｴｩ繧碁亟豁｢ */
  .ttl {
    font-size: 22px !important;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .ptttl,
  .fttl,
  .vcq,
  .rttl {
    font-size: 18px !important;
    word-break: keep-all;
  }

  .fqtxt {
    font-size: 15px !important;
  }

  .fv-img-pc {
    display: none;
  }

  .fv-img-sp {
    display: block;
  }

  .btn {
    padding: 14px 20px;
    font-size: .85rem;
    width: 100%;
  }

  .stg {
    grid-template-columns: 1fr 1fr;
  }

  .st {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .st:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .15);
  }

  .stn {
    font-size: 1.55rem;
  }

  #about {
    background-color: #fafafa;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .about-g {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ptg {
    grid-template-columns: 1fr;
  }

  .sfg {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sfimg {
    max-width: 260px;
    margin: 0 auto;
  }

  .cta-ttl-mid {
    font-size: 22px;
    margin-bottom: 30px;
    word-break: keep-all;
  }

  .cta-g2 {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .cta-btns-mid {
    gap: 14px;
  }

  .cta-btn-phone,
  .cta-btn-line {
    font-size: 18px;
    padding: 12px 20px;
  }

  .acg {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .acmap {
    height: 220px;
  }

  .rbtns {
    flex-direction: column;
  }

  .rbtns .btn {
    width: 100%;
  }

  .wtxt {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gd);
    line-height: 1.4;
    white-space: normal;
    margin-top: 10px;
  }

  /* SP: 縺頑か縺ｿ1繧ｫ繝ｩ繝・医き繝ｼ繝牙・繝ｬ繧､繧｢繧ｦ繝医・縺昴・縺ｾ縺ｾ・・*/
  .wgrid {
    gap: 14px;
    padding: 0;
  }

  .wcard {
    width: 100%;
    padding: 24px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .wcard img[style] {
    width: 120px !important;
    margin-bottom: 0 !important;
  }

  .wcard .wtxt {
    margin-top: 6px;
  }

  .sp-br {
    display: inline;
  }

  .wcta-l {
    font-size: 24px !important;
    word-break: keep-all;
  }
}

@media(min-width:768px) and (max-width:1023px) {
  .fv-h1 {
    font-size: 1.55rem;
  }

  .sfg {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .grt-in {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* ============================================================
   FV - FIRST VIEW (NEW)
   ============================================================ */
#fv {
  background: linear-gradient(90deg,
      #eaf8ff 0%,
      #f6fcff 38%,
      #ffffff 70%,
      #ffffff 100%);
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding-top: 65px;
  /* header overlap fix */
}

.fv__inner {
  width: 100%;
  max-width: 1440px;
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: center;
  position: relative;
  /* ●右側paddingをなくして右端ぴったりに */
  padding: 40px 0 40px 20px;
}

.fv__visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  width: 100%;
}

/* 笏笏 FV SP CTA逕ｻ蜒・笏笏 */
.fv__cta-sp {
  display: none;
}

@media (max-width: 767px) {
  .fv__cta-sp {
    display: block;
    margin-top: 16px;
    width: 100%;
  }

  .fv__cta-sp img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }

  /* PC逕ｨ縺ｮcta縺ｯSP縺ｧ髱櫁｡ｨ遉ｺ */
  .fv__cta {
    display: none;
  }
}

/* 笏笏 FV PC: 繧ｹ繝ｩ繧､繝牙承遶ｯ繝斐ャ繧ｿ繝ｪ 笏笏 */
.swiper-fv {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* 繝薙Η繝ｼ繝昴・繝亥ｹ・・縺ｾ縺ｧ莨ｸ縺ｰ縺励※蜿ｳ遶ｯ縺ｴ縺｣縺溘ｊ */
  width: calc(100vw - (min(100vw, 1440px) * 0.34));
  max-width: none;
  height: auto;
  padding: 30px 0;
}

.swiper-fv .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-fv .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
  border: 5px solid rgba(255, 255, 255, 0.95);
}

.fv__copy {
  padding-right: 20px;
}

.fv__copy img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.fv__cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(32vw, 430px);
  z-index: 3;
}

.fv__cta img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  #fv {
    padding-top: 65px;
    /* SP header overlap fix */
  }

  .fv__inner {
    display: block;
    min-height: auto;
    padding: 20px 16px 30px;
  }

  .fv__copy {
    padding-right: 0;
  }

  .fv__copy img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .fv__visual {
    height: 380px;
    margin-top: 18px;
    min-height: auto;
  }

  /* SP: 蜿ｳ遶ｯ縺ｴ縺｣縺溘ｊ */
  .swiper-fv {
    width: 100vw;
    margin-left: -16px;
    max-width: none;
  }
}

/* ============================================================
   譛ｬ譁・ヵ繧ｩ繝ｳ繝医し繧､繧ｺ 16px 邨ｱ荳荳頑嶌縺・   Tailwind 縺ｮ text-sm / text-xs 遲峨ｒ謇薙■豸医☆
   ============================================================ */

/* 繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ蜀・・ p / li / td / dd 繧剃ｸ蠕・16px 縺ｫ */
.sec p,
.sec li,
.sec td,
.sec th,
.sec dd,
.cta-mid-section p {
  font-size: 1rem;
  /* 16px */
}

/* Tailwind text-sm / text-xs 繧偵そ繧ｯ繧ｷ繝ｧ繝ｳ蜀・〒荳頑嶌縺・*/
.sec .text-sm,
.sec .text-xs,
.sec .text-gray-600,
.sec .text-gray-700 {
  font-size: 1rem !important;
}

/* 豕ｨ驥茨ｼ・rice谺・・窶ｻ荳隕ｧ・峨・諢丞峙逧・↓蟆上＆縺上＠縺ｦOK 竊・14px */
.sec ul.text-sm li,
.sec p.text-sm {
  font-size: 0.875rem !important;
  /* 14px */
}

/* Tailwind text-2xl 縺ｪ縺ｩ隕句・縺励・縺昴・縺ｾ縺ｾ邯ｭ謖・ｼ井ｸ頑嶌縺阪＠縺ｪ縺・ｼ・*/

.wcard-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ============================================================
   SP FIXED BACKGROUND WORKAROUND
   ============================================================ */
@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {
  #flow {
    position: relative;
    background: none;
    isolation: isolate;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }

  #flow::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../img/flowbg.jpg') no-repeat center center / cover;
    backdrop-filter: none;
    filter: blur(6px);
    transform: scale(1.05);
  }

  #flow>* {
    position: relative;
    z-index: 1;
  }
}