@charset "UTF-8";
/*------------------------------------
  Sass モジュールの読み込み
------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* =========================
    Hamburger (SP only)
  ========================= */
.hamburger {
  display: none;
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 100;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.hamburger__icon {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 350px) {
  .hamburger__icon {
    width: 60px;
  }
}
.hamburger__icon::before, .hamburger__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
}
.hamburger__icon::before {
  top: -7px;
}
.hamburger__icon::after {
  top: 7px;
}

/* =========================
      Fullscreen Menu (SP only)
    ========================= */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #43b7cf;
}
.drawer.is-open {
  display: block;
}
@media (max-width: 480px) {
  .drawer {
    /* SPのみ使う */
  }
}
.drawer__inner {
  position: relative;
  height: 100%;
  padding: 120px 28px 44px;
  display: grid;
  grid-template-rows: auto 1fr;
}
@media (max-width: 480px) {
  .drawer__inner {
    padding: 84px 28px 44px;
  }
}
.drawer__close {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.drawer__close-icon {
  width: 28px;
  height: auto;
  display: block;
  pointer-events: none;
}
.drawer__mark {
  margin-bottom: 3rem;
}
.drawer__mark img {
  width: 44px;
  height: auto;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.drawer__link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  display: inline-block;
  padding: 4px 0;
}
.drawer__link:active {
  opacity: 0.75;
}

/* footer：下余白なし */
.footer {
  padding: 22px 18px 0;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .footer {
    padding: 18px 14px 0;
  }
}

/* =========================
  Variables
========================= */
:root {
  --left-w: 800px;
  --panel-w: 390px;
  --wrap: 1280px;
  --gap: 28px;
  --radius: 18px;
  --accent: #2aa9c9;
  --text: #595757;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-panel: 0 18px 42px rgba(0, 0, 0, .14);
}

/* =========================
    Reset (minimum)
  ========================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--text);
  font-weight: 500;
}

body.is-modal-open {
  overflow: hidden;
  /* 保険 */
  touch-action: none;
  /* モバイルの慣性スクロール抑制 */
}

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

a {
  color: inherit;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

button {
  font: inherit;
}

/* =========================
    Background (fixed)
  ========================= */
.lp {
  position: relative;
}
.lp .fv-cat {
  position: fixed;
  z-index: 2;
}
@media (max-width: 1200px) {
  .lp .fv-cat {
    display: none;
  }
}
.lp .fv-cat.cat1 {
  top: 80px;
  right: 10%;
}
@media (max-width: 1800px) {
  .lp .fv-cat.cat1 {
    top: 70px;
    right: 8%;
  }
}
@media (max-width: 1700px) {
  .lp .fv-cat.cat1 {
    top: 60px;
    right: 7%;
  }
}
@media (max-width: 1600px) {
  .lp .fv-cat.cat1 {
    top: 50px;
    right: 6%;
  }
}
@media (max-width: 1500px) {
  .lp .fv-cat.cat1 {
    top: 45px;
    right: 5%;
  }
}
@media (max-width: 1450px) {
  .lp .fv-cat.cat1 {
    top: 40px;
    right: 3.5%;
  }
}
@media (max-width: 1400px) {
  .lp .fv-cat.cat1 {
    top: 40px;
    right: 3%;
  }
}
@media (max-width: 1300px) {
  .lp .fv-cat.cat1 {
    top: 35px;
    right: 2.5%;
  }
}
@media (max-width: 1250px) {
  .lp .fv-cat.cat1 {
    top: 35px;
    right: 1%;
  }
}
.lp .fv-cat.cat2 {
  bottom: 30px;
  left: 55%;
}
@media (max-width: 1800px) {
  .lp .fv-cat.cat2 {
    left: 53%;
  }
}
@media (max-width: 1700px) {
  .lp .fv-cat.cat2 {
    left: 51.5%;
  }
}
@media (max-width: 1600px) {
  .lp .fv-cat.cat2 {
    left: 50%;
  }
}
@media (max-width: 1500px) {
  .lp .fv-cat.cat2 {
    left: 48.5%;
  }
}
@media (max-width: 1400px) {
  .lp .fv-cat.cat2 {
    left: 47%;
  }
}
@media (max-width: 1300px) {
  .lp .fv-cat.cat2 {
    left: 45.5%;
  }
}

.lp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url("../images/bg-fv.webp") center/cover no-repeat;
}
@media (max-width: 430px) {
  .lp-bg {
    display: none;
  }
}

/* =========================
    Left fixed menu (PC only)
  ========================= */
.lp-left {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--left-w);
  z-index: 20;
  padding: 22px 24px;
}
@media (max-width: 1600px) {
  .lp-left {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .lp-left {
    display: none;
  }
}
.lp-left__logo {
  position: absolute;
  top: 20px;
  left: 24px;
  text-decoration: none;
}
.lp-left__logo img {
  height: 42px;
  width: auto;
}
.lp-left__center {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 16px;
  justify-content: flex-end;
}
.lp-left__menu {
  position: relative;
  width: 360px;
}
.lp-left {
  /* 猫：メニュー左下（画面下にいかない） */
}
.lp-left__cat {
  position: absolute;
  left: -130px;
  bottom: -50px;
  pointer-events: none;
}

.lp-nav {
  display: grid;
  gap: 16px;
}
.lp-nav__btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  text-decoration: none;
  color: #24a8c9;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  font-weight: 650;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.lp-nav__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}
.lp-nav__btn:active {
  transform: translateY(0);
}

/* =========================
    Main
  ========================= */
.lp-main {
  position: relative;
  z-index: 10;
  margin-left: var(--left-w);
  padding: 28px var(--gap);
}
@media (max-width: 1200px) {
  .lp-main {
    margin-left: 0;
    padding: 0;
  }
}

/* 右パネルの配置：中央寄せ枠の右側へ */
.panel {
  width: min(var(--wrap), 100%);
  width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .panel {
    width: 100%;
    justify-content: center;
  }
}
.panel {
  /* 右パネル本体：1箱だけ */
}
.panel__box {
  width: var(--panel-w);
  min-width: var(--panel-w);
  background: url("../images/bg-body.webp") center/contain repeat;
  overflow: hidden;
  box-shadow: 5px 5px 10px #524747;
}
@media (max-width: 390px) {
  .panel__box {
    width: 100%;
    min-width: 0;
  }
}
.panel {
  /* パネル内ヘッダー */
}
.panel__header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 14px 18px;
}
@media (max-width: 480px) {
  .panel__header {
    padding-right: 76px;
  }
}
.panel__brand img {
  height: 34px;
  width: auto;
}
.panel {
  /* hero */
}
.panel .hero {
  padding: 30px 20px 60px;
}
.panel .hero__badge {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 120, 140, 0.72);
  color: #fff;
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 12px;
}
.panel .hero__media {
  margin: 0;
  overflow: hidden;
}
.panel .hero__lead {
  margin: 14px 0 14px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}
.panel .hero__lead .large {
  font-size: 22px;
  letter-spacing: 0px;
}
.panel .hero .chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.panel .hero .chips .chip {
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background-color: #43b7cf;
  color: #fff;
  line-height: 1;
}

/* sections */
.section {
  padding: 22px 18px;
  background: transparent;
}
.section.fullwide {
  padding: 0;
}
.section__title.has-paw {
  text-align: center;
  position: relative;
}
.section__title.has-paw .paw {
  margin-inline: auto;
  margin-bottom: 0.5rem;
}
.section__title.has-paw h2 {
  font-size: 22px;
  font-weight: 400;
}
.section.section01 {
  background-color: #43b7cf;
  color: #fff;
  padding: 20px 30px 30px;
  position: relative;
}
@media (max-width: 430px) {
  .section.section01 {
    padding: 20px 20px 30px;
  }
}
.section.section01 .icon {
  position: absolute;
  top: -40px;
  right: 30px;
}
.section.section01 .subtitle {
  font-size: 12px;
  font-weight: 400;
}
.section.section01 .section__title {
  font-size: 14px;
  margin-bottom: 1rem;
}
.section.section01 .section__title .title-after {
  font-size: 12px;
  padding-left: 2px;
}
.section.section01 .section__title .small {
  font-size: 10px;
  font-weight: 400;
}
@media (max-width: 430px) {
  .section.section01 .section__title .small {
    font-size: 10px;
  }
}
.section.section01 img.section1 {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 110px;
}
@media (max-width: 390px) {
  .section.section01 img.section1 {
    right: 6%;
    width: 25vw;
  }
}
.section.section01 .text {
  font-size: 14px;
  letter-spacing: -0.5px;
}
.section.section01 .text .underline {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
}
.section.section01 .text .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 300px;
  height: 10px;
  background: url(../images/underline-yellow.svg) no-repeat center/contain;
}
.section.section02 .section__title {
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 3rem;
}
.section.section02 .image {
  margin-bottom: 2rem;
}
.section.section02 .image.image01 {
  position: relative;
}
.section.section02 .image.image01 .main-image {
  width: 70%;
}
.section.section02 .image.image01 .absolute {
  position: absolute;
  bottom: -20px;
  right: 14%;
}
@media (max-width: 480px) {
  .section.section02 .image.image01 .absolute {
    right: 10%;
  }
}
.section.section02 .image.image02 {
  position: relative;
}
.section.section02 .image.image02 .main-image {
  width: 50%;
  margin-left: auto;
}
.section.section02 .image.image02 .absolute {
  position: absolute;
  top: 40%;
  right: 47%;
  opacity: 0.7;
}
.section.section02 .image.image03 img {
  width: 90%;
  margin-inline: auto;
}
.section.section02 p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.8;
  padding-left: 70px;
  margin-bottom: 2rem;
}
.section.section03 .section-title {
  position: relative;
  text-align: center;
  padding: 60px 0;
}
.section.section03 .section-title__label {
  position: relative;
  display: inline-block;
  padding: 1px 10px 2px;
  background: #43b7cf;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  z-index: 1;
  outline: 3px solid #43b7cf;
  outline-offset: 8px;
}
.section.section03 .section-title__label::before, .section.section03 .section-title__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  height: 3px;
  background: #43b7cf;
  transform: translateY(-50%);
  z-index: -1;
}
.section.section03 .section-title__label::before {
  right: 100%;
  margin-right: 8px;
}
.section.section03 .section-title__label::after {
  left: 100%;
  margin-left: 8px;
}
.section.section03 .section__title.has-paw {
  margin-bottom: 2rem;
}
.section.section03 .section__title.has-paw .absolute {
  position: absolute;
  bottom: -20px;
  right: 12%;
  opacity: 0.7;
}
.section.section03 .image {
  margin-bottom: 1.5rem;
}
.section.section03 .image img {
  margin-inline: auto;
}
.section.section03 p {
  padding: 0 50px;
  margin-bottom: 4rem;
  text-align: center;
}
.section.section04 {
  margin-bottom: 2rem;
}
.section.section04 .section__title {
  margin-bottom: 3rem;
}
.section.section04 .image {
  margin-bottom: 2rem;
}
.section.section04 .image img {
  margin-inline: auto;
  padding: 0 30px;
}
.section.section04 .data {
  background-color: rgba(67, 183, 207, 0.2);
  padding: 40px 12px;
  clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
}
.section.section04 .data .data-wrap {
  margin-bottom: 2rem;
  position: relative;
}
.section.section04 .data .data-wrap .title {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 4px;
  justify-content: center;
}
.section.section04 .data .data-wrap .title img {
  width: 26px;
}
.section.section04 .data .data-wrap .title h3 {
  font-size: 18px;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0px;
}
.section.section04 .data .data-wrap .absolute {
  position: absolute;
  right: -10px;
  bottom: 40px;
  opacity: 0.8;
  width: 70px;
}
@media (max-width: 350px) {
  .section.section04 .data .data-wrap .absolute {
    bottom: 20px;
    width: 60px;
  }
}
.section.section04 .data p {
  letter-spacing: 2px;
  line-height: 1.8;
}
.section.section05 .badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.section.section05 .badge {
  display: inline-block;
  padding: 30px 10px;
  background: #43b7cf;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  border-radius: 32px;
  position: relative;
  outline: 6px solid #43b7cf;
  outline-offset: 8px;
}
@media (max-width: 390px) {
  .section.section05 .badge {
    font-size: 7vw;
  }
}
.section.section05 p {
  line-height: 2;
  padding: 0 30px;
  margin-bottom: 1rem;
}
.section.section05 .img-wrap {
  position: relative;
  padding-bottom: 30px;
}
.section.section05 .img-wrap img {
  margin-inline: auto;
}
.section.section05 .img-wrap .vocfree {
  width: 160px;
}
.section.section05 .img-wrap .absolute {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 68px;
}
@media (max-width: 350px) {
  .section.section05 .img-wrap .absolute {
    right: 0;
  }
}
.section.section06 {
  background-color: #eeeae3;
  padding: 60px 0;
}
.section.section06 .section__title {
  margin-bottom: 2rem;
  padding: 0 24px;
}
.section.section06 .intro {
  margin-bottom: 2rem;
  padding: 0 24px;
  line-height: 1.8;
  letter-spacing: -1px;
}
.section.section06 .btn-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4rem;
  padding: 0 24px;
}
.section.section06 .tg-card-wrap {
  margin-bottom: 3rem;
}
.section.section06 .tg-card-wrap .tg-card {
  position: relative;
  padding: 3rem 0 2rem;
}
.section.section06 .tg-card-wrap .tg-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: #fff;
  border-radius: 32px;
  border: solid 3px #24a8c9;
  z-index: 0;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner {
  position: relative;
  z-index: 2;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-card__head {
  padding: 0 20px 30px;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-card__head .tg-logo img {
  margin-inline: auto;
  width: 200px;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-card__ribbon {
  text-align: center;
  background-color: #24a8c9;
  color: #fff;
  padding: 10px 10px 12px;
  font-weight: 500;
  margin-bottom: 2rem;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-reasons .tg-reason {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-right: 24px;
  align-items: ce;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-reasons .tg-reason__badge {
  background-color: #24a8c9;
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 12px;
  border-radius: 0 20px 20px 0;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-reasons .tg-reason__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-reasons .tg-reason__title {
  font-size: 18px;
  color: #24a8c9;
  font-weight: 500;
  letter-spacing: -1px;
}
.section.section06 .tg-card-wrap .tg-card .tg-card-inner .tg-reasons .tg-reason__desc {
  font-size: 13px;
  letter-spacing: -1px;
}
.section.section06 .tg-card-wrap .tg-card__photo {
  margin-bottom: 2rem;
}
.section.section06 .tg-card-wrap .tg-card__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__title {
  text-align: center;
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
  padding: 0 24px;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__note {
  text-align: center;
  color: #24a8c9;
  font-size: 12px;
  margin-bottom: 1rem;
  padding: 0 24px;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__company {
  display: inline-block;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__company .tg-foot__name {
  font-size: 12.5px;
  display: inline-block;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__company .tg-foot__addr {
  font-size: 12.5px;
  display: inline-block;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__btns {
  width: 80%;
}
.section.section06 .tg-card-wrap .tg-card__foot .tg-foot__btns .tg-btn {
  background: #24a8c9;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.section.section06 .diy {
  padding: 0 24px;
}
.section.section06 .diy .diy-inner {
  border: solid 3px #231815;
  border-radius: 50px;
  background-color: #fff;
  padding: 30px 20px 40px;
}
.section.section06 .diy .diy-inner img {
  margin-inline: auto;
}
.section.section06 .diy .diy-inner img.title {
  margin-bottom: 1.5rem;
}
.section.section06 .diy .diy-inner p {
  line-height: 1.8;
  padding: 0 10px;
  margin-bottom: 1rem;
}
.section.section06 .diy .diy-inner .nuri {
  margin: 2rem auto;
}
.section.section06 .diy .diy-inner .nuri2 {
  border-radius: 20px;
  margin-bottom: 2rem;
}
.section.section06 .diy .diy-inner .point {
  padding-left: 24px;
  margin-bottom: 1rem;
}
.section.section06 .diy .diy-inner .point li {
  font-size: 20px;
  color: #43b7cf;
  margin-bottom: 1rem;
  letter-spacing: 0px;
}
.section.section06 .diy .diy-inner .material {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section.section06 .diy .diy-inner .material img {
  border-radius: 10px;
}
.section.section06 .diy .diy-inner .material p {
  text-align: center;
}
.section.section06 .diy .diy-inner .marker-wrap {
  text-align: center;
  margin: 1rem 0;
}
.section.section06 .diy .diy-inner .marker-wrap .marker {
  margin: 1rem 0;
  font-size: 22px;
  display: inline;
  background: linear-gradient(transparent 60%, #fff343 60%);
  padding: 0 4px;
}
@media (max-width: 390px) {
  .section.section06 .diy .diy-inner .marker-wrap .marker {
    font-size: 5.5vw;
  }
}
.section.section07 {
  background-color: #eeeae3;
  padding: 30px;
}
.section.section07 .logo {
  margin-inline: auto;
  margin-bottom: 2rem;
}
.section.section07 .title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.section.section07 .title-wrap h2 {
  font-weight: 400;
  color: #24a8c9;
  display: inline-block;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 390px) {
  .section.section07 .title-wrap h2 {
    font-size: 4.5vw;
  }
}
.section.section07 .project {
  padding: 2rem;
  background-color: #fff;
  margin-bottom: 3rem;
}
.section.section07 .project img {
  margin-inline: auto;
  margin-bottom: 1rem;
}
.section.section07 .project p {
  line-height: 1.8;
}
.section.section07 .section__title.has-paw {
  margin-bottom: 2rem;
}
.section.section07 .section__title.has-paw .absolute {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 0;
}
.section.section07 .section__title.has-paw h2 {
  position: relative;
  z-index: 2;
}
.section.section07 .reel {
  margin-bottom: 2rem;
}
.section.section07 .c2c-wrap {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
@media (max-width: 390px) {
  .section.section07 .c2c-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.section.section07 .c2c-wrap img {
  width: 126px;
}

/* CTA */
.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* =========================
    スライダー
  ========================= */
.voice-slider {
  padding: 24px 0;
  margin-bottom: 2rem;
}

.voice-swiper {
  overflow: hidden;
  padding: 0 20px 30px !important;
}

.voice-slider__slide {
  position: relative;
  padding-top: 40px;
  width: calc(100% - 30px) !important;
  box-sizing: border-box;
}

.voice-card {
  position: relative;
  background: #f8cbc6;
  border-radius: 18px;
  padding: 20px 16px;
}
@media (max-width: 430px) {
  .voice-card {
    padding: 40px 20px 24px;
  }
}
.voice-card .icon {
  position: absolute;
  top: -40px;
  left: 30px;
  z-index: 9;
}
.voice-card__inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 350px) {
  .voice-card__inner {
    display: flex;
    flex-direction: column;
  }
}
.voice-card__thumb {
  margin: 0;
  display: grid;
  place-items: center;
}
.voice-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100px;
  border-radius: 14px;
}
.voice-card__title {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 400;
  color: #6b6b6b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-feature-settings: "palt";
  letter-spacing: -1px;
}
.voice-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: -1px;
}

/* pagination位置 */
.swiper-pagination {
  bottom: 0px !important;
}

/* 非アクティブ */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #777777 !important;
  opacity: 1;
  margin: 0 6px !important;
  transition: background 0.3s ease;
}

/* アクティブ */
.swiper-pagination-bullet-active {
  background: #4a4a4a !important;
}

.swiper-button-prev.tgw,
.swiper-button-next.tgw {
  color: #4a4a4a;
}
@media (max-width: 1200px) {
  .swiper-button-prev.tgw,
  .swiper-button-next.tgw {
    display: none;
  }
}

.swiper-button-prev.tgw {
  left: 6px;
}

.swiper-button-next.tgw {
  right: 40px;
}

.swiper-button-prev.tgw::after,
.swiper-button-next.tgw::after {
  font-size: 24px;
}

/* =========================
    ビフォー・アフター
  ========================= */
.ba-grid {
  --gap: 24px;
  --radius: 16px;
  --border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 24px 24px 40px;
  position: relative;
  margin-bottom: 2rem;
}
.ba-grid__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}
.ba-grid .jirei {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 12px;
  font-weight: 400;
}

.ba-card {
  margin: 0;
}
.ba-card__label {
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: #2b2b2b;
}
.ba-card__link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e7e7e7;
  text-decoration: none;
  cursor: zoom-in;
  aspect-ratio: 10/12;
}
.ba-card__link:focus-visible {
  outline: 3px solid rgba(0, 120, 255, 0.6);
  outline-offset: 4px;
  border-radius: var(--radius);
}
.ba-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ba-card__hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #333;
}

/* ===== モーダル（最前面 + 背景は擬似要素 + 画像は不透明固定）===== */
.ba-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647 !important;
  display: none;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  isolation: isolate;
}

.ba-modal:target {
  display: grid;
  place-items: center;
}

.ba-modal:target::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.ba-modal__img {
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: block;
}

.ba-modal {
  cursor: zoom-out;
}

/* =========================
    Instagram
  ========================= */
.reels {
  --gap: 16px;
  --radius: 16px;
  margin: 0 0 3rem;
}
.reels__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}
.reels__item {
  min-width: 0;
}
.reels__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #333;
}
.reels__embed {
  border-radius: var(--radius);
  overflow: hidden;
  background: #e0e0e0;
  aspect-ratio: 1/1.15;
}
.reels__embed .instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.reels__embed iframe,
.reels__embed blockquote {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 430px) {
  .reels {
    --gap: 12px;
  }
  .reels__title {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */