/* 2026/07/31 */
@charset "utf-8";

:root {
  --cl-grd-btn01: linear-gradient(74deg, #7bb5ec 0%, #c884ff 80%);
  --cl-grd-btn01hover: linear-gradient(74deg, #69aeed 20%, #d384ff 100%);
  --cl-grd-border: linear-gradient(134deg, #c884ff 0%, #7bb5ec 80%);
}
/* # =================================================================
   # 全ページ共通
   # ================================================================= */
html {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Segoe UI",
    "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN",
    YuGothic,
    Meiryo,
    sans-serif !important;
  /* background: #f5f5f5; */
  color: #00004a;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-variant-ligatures: common-ligatures;
  font-size: 18px; /*以降em指定厳守*/
  font-weight: 400;
  text-overflow: ellipsis;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
img {
  object-fit: contain;
}
::selection {
  /*文字選択時*/
  color: #fff;
  text-shadow: 0 0 0 transparent;
}
a {
  color: #2752b3;
  text-decoration: underline;
}
a:hover,
button:hover {
  opacity: 0.8;
  text-decoration: none;
  cursor: pointer;
}
body {
  line-height: 1.1;
  -webkit-tap-highlight-color: rgba(149, 117, 117, 0.5);
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

/* # =================================================================
   # header/footer
   # ================================================================= */
header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 70px;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
header .inner .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.05em;
  color: #0f172a;
}
header .inner .logo p {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  margin-left: 23px;
}
header .inner .logo img {
  max-width: 250px;
  height: 100%;
  object-fit: contain;
}
header nav {
  margin-left: auto;
  margin-right: 60px;
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 1300px) {
  header .inner .logo {
    flex-direction: column;
    align-items: flex-start;
  }
  header .inner .logo p {
    margin-left: 0;
    line-height: 18px;
    margin-top: 5px;
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  header nav,
  header .inner .logo p {
    display: none;
  }
  header {
    padding: 5px 0;
  }
}
@media screen and (max-width: 800px) {
  header {
    height: 90px;
    padding: 20px 0;
  }
}
header nav a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #475569;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
/* header nav a[href="#zero"],
header nav a[href="#point"] {
  color: #475569;
} */
header nav a:hover {
  color: #fe786b;
  opacity: 1;
}
header .inner > div:last-child a {
  display: block;
  background: linear-gradient(to bottom right, #ff4d4d, #ff8c00);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  width: 230px;
  height: 40px;
  padding: 6px 0;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .inner > div:last-child a:hover {
  opacity: 0.8;
}
header .inner > div:last-child a .header-cta-br {
  display: none;
}
@media screen and (max-width: 640px) {
  header .inner > div:last-child a {
    width: auto;
    height: auto;
    min-height: 56px;
    padding: 8px 14px;
    font-size: 18px;
    line-height: 1.3;
    display: block;
    text-align: center;
  }
  header .inner > div:last-child a .header-cta-br {
    display: block;
  }
}
@media screen and (max-width: 490px) {
  header .inner .logo img {
    max-width: 150px;
  }
}
/* .footer {
  background-color: #edf2f7;
  position: relative;
  z-index: 2;
  height: 70px;
  display: flex;
  color: #020617;
  justify-content: center;
  padding: 0;
  align-items: center;
}
.footer .inner {
  width: 1200px;
  z-index: 2;
  font-size: 28px;
  font-weight: 900;
} */
@media screen and (max-width: 1200px) {
  .footer .inner {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer .inner {
    font-size: 22px;
  }
}

/* 背景アニメーション用css */
.custom-hero-section {
  /* position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem; */
  /* overflow: hidden; */
  margin-top: 120px;
  height: 663px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
}
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* # =================================================================
   # article
	 # - top:ファーストビュー
	 # - zero:「分からないから買わない」をゼロにする
	 # - solution:「声」で聞いて、「スライド」で理解する。
	 # - point:BAKUUREの特徴
   # - sense:利用シーン
   # - why:なぜ、「音声＋スライド」なのか？
   # - last:説明の変革を、あなたのビジネスに。
   # ================================================================= */
#top,
#zero,
#solution,
#point,
#sense,
#why,
#last {
  position: relative;
  z-index: 2;
}
/*-------------
ファーストビュー
--------------*/
#top {
  width: 100%;
}

#top section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  /* height: 663px; */
  position: relative;
}

#top section .fv-left,
#top section .fv-right {
  position: relative;
  z-index: 2;
}

#top section .fv-left {
  width: 63%;
  max-width: 702px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  /* height: 663px; */
}
#top section .custom-hero-arrows {
  position: absolute;
  bottom: -100px;
  left: calc(50% - 130px);
  width: 261px;
  height: 89px;
  z-index: 3;
}
#top section .custom-hero-arrows img {
  width: 261px;
  height: 89px;
  object-fit: contain;
}

#top section .fv-left p {
  text-align: center;
  width: 100%;
  margin-top: 10px;
  font-size: 22px;
}

#top section .fv-left h2,
#top section .fv-left img {
  height: 308px;
}

#top section .fv-left img {
  width: 100%;
  max-width: 778px;
}

#top section .fv-right {
  width: 37%;
  max-width: 460px;
  height: 578px;
  position: relative;
}
#top section .fv-right img {
  position: absolute;
  right: -38px;
}

#top section .fv-left .fv-button {
  display: block;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff8c00 100%);
  width: 384px;
  height: 90px;
  border-radius: 50px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 50px auto 0;
  text-align: center;
  padding-top: 27px;
}
@media screen and (max-width: 1024px) {
  #top {
    background-size: cover;
  }
  #top section {
    flex-wrap: wrap;
    padding: 140px 30px 0;
  }
  #top section .fv-left {
    margin-bottom: 50px;
    width: 100%;
    justify-content: center;
  }
  #top section .fv-left h2,
  #top section .fv-left img {
    height: auto;
  }
  #top section .fv-right {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    margin-right: 0;
    height: auto;
    position: static;
  }
  #top section .fv-right img {
    position: static;
  }
  #top section .custom-hero-arrows {
    display: none;
  }

  #top section .fv-left .fv-button {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 800px) {
  #top section .fv-left h2 {
    /* max-width: 400px; */
    padding: 0 30px;
  }
  #top section .fv-left p {
    /* margin-top: 0; */
    font-size: 18px;
  }
  #top section .fv-left .fv-button {
    height: 70px;
    font-size: 18px;
  }
}

/*--------------------------
「分からないから買わない」をゼロにする
----------------------------*/
#zero {
  width: 100%;
}
#zero section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 290px auto 130px;
}
#zero section .section-top {
  font-size: 46px;
  font-weight: 900;
  color: #3d4356;
  border-bottom: 2px solid #fe786b;
  padding-bottom: 15px;
}
#zero section .section-top.sp-only {
  display: none;
}
#zero section .section-top span {
  background: linear-gradient(135deg, #ff4d4d 0%, #f9cb28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 72px;
}
#zero section p {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
}
#zero section .img_sc_01 {
  max-width: 237px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #zero section {
    margin: 490px auto 130px;
  }
  #zero section .section-top {
    font-size: 30px;
    font-weight: 900;
    color: #3d4356;
    border-bottom: 2px solid #fe786b;
    padding-bottom: 15px;
  }
  #zero section .section-top span {
    font-size: 47px;
  }
  #zero section p {
    margin-top: 30px;
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  #zero section {
    margin: 320px auto 130px;
  }
  #top section .fv-right {
    width: 70%;
  }
  #zero section .section-top.pc-only {
    display: none;
  }
  #zero section .section-top.sp-only {
    display: block;
    text-align: center;
  }
  #zero section .img_sc_01 {
    margin-top: 30px;
  }
}

/*--------------------------
声で聞いてスライドで理解する
----------------------------*/
#solution {
  width: 100%;
  padding: 96px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

#solution section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

#solution section .img_sc_02_1,
#solution section .img_sc_02_2 {
  position: absolute;
  top: 0;
  height: 408px;
}
#solution section .img_sc_02_1 {
  left: 0;
  width: 133px;
}
#solution section .img_sc_02_2 {
  right: -178px;
  width: 329px;
}

#solution section .section-sub {
  color: #fb7a4b;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 30px;
}

#solution section .section-top {
  font-size: 46px;
  font-weight: 900;
  border-bottom: 2px solid #fe786b;
  padding-bottom: 15px;
  color: #3d4356;
  width: 608px;
  text-align: center;
}

#solution section .section-top .marker01,
#solution section .section-top .marker02 {
  position: relative;
}
#solution section .section-top .marker01::before,
#solution section .section-top .marker02::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 21px;
  height: 0.4em;
  background-color: #ffea45;
  transform: translateY(-50%);
  z-index: -1;
}
#solution section .section-top .marker01::before {
  width: 67%;
}
#solution section .section-top .marker02::before {
  width: 84%;
}

#solution section p {
  text-align: center;
  width: 100%;
  margin-top: 54px;
  font-size: 22px;
}

#solution section .trio-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 86px;
}

#solution section .trio-wrap li {
  list-style: none;
  max-width: 377px;
  width: 31%;
  height: 216px;
  position: relative;
  z-index: 4;
}

#solution section .trio-wrap li .check {
  width: 45px;
  height: 45px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

#solution section .trio-wrap li .inner-li {
  width: 100%;
  height: 216px;
  background: #fff;
  border: 1px solid #fe786b;
  border-radius: 10px;
  align-items: center;
  color: #3d4356;
  position: relative;
  z-index: 4;
}

#solution section .trio-wrap li::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  max-width: 377px;
  width: 100%;
  height: 216px;
  background: #fe786b;
  border-radius: 10px;
  z-index: 3;
}

#solution section .trio-wrap li .trio_title {
  font-size: 22px;
  font-weight: 900;
  padding: 54px 0 27px 0;
  text-align: center;
}

#solution section .trio-wrap li p {
  font-size: 16px;
  margin-top: 7px;
}

#solution section .trio-wrap li:last-of-type p {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  #solution section .section-top {
    width: initial;
    font-size: 30px;
  }
  #solution section .section-sub {
    margin-bottom: 15px;
  }
  #solution section .img_sc_02_1,
  #solution section .img_sc_02_2 {
    position: absolute;
    top: 400px;
  }
  #solution section .img_sc_02_1 {
    left: calc(50% - 220px);
  }
  #solution section .img_sc_02_2 {
    right: calc(50% - 300px);
  }
  #solution section p {
    margin-top: 30px;
    font-size: 16px;
  }
  #solution section .trio-wrap {
    margin-top: 550px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  #solution section .trio-wrap li {
    width: 377px;
  }
}
@media screen and (max-width: 800px) {
  #solution section p {
    font-size: 16px;
    margin-top: 30px;
  }
  #solution section .trio-wrap {
    margin-top: 450px;
  }
  #solution section .img_sc_02_1,
  #solution section .img_sc_02_2 {
    position: absolute;
    top: 360px;
    height: auto;
  }
  #solution section .img_sc_02_1 {
    left: calc(50% - 190px);
    width: 110px;
  }
  #solution section .img_sc_02_2 {
    right: calc(50% - 190px);
    width: 240px;
  }
}
/*--------------------------
CTA
----------------------------*/
#cta {
  width: 100%;
  height: 360px;
  background: #fff3c1;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
#cta section {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#cta section .cta-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  color: #3d4356;
}
#cta section .cta-catch::before,
#cta section .cta-catch::after {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  background-color: #ff7c15;
  flex-shrink: 0;
}
#cta section .cta-catch::before {
  transform: rotate(45deg); /* ＼ */
}
#cta section .cta-catch::after {
  transform: rotate(-45deg); /* ／ */
}
#cta section a {
  max-width: 90%;
  width: 500px;
  height: 90px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  padding-top: 32px;
  transition: opacity 0.2s ease;
}
#cta section a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  #cta {
    height: 280px;
  }
  #cta section a {
    font-size: 32px;
    height: 70px;
    padding-top: 25px;
  }
  #cta section .cta-catch::before,
  #cta section .cta-catch::after {
    width: 20px;
    height: 2px;
  }
  #cta section .cta-catch {
    font-size: 24px;
    margin-bottom: 15px;
    gap: 10px;
  }
}
/*--------------------------
BAKUUREの特徴
----------------------------*/
#point {
  width: 100%;
}

#point section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  padding: 96px 0;
}

#point section .section-sub {
  color: #fb7a4b;
  font-size: 22px;
  font-weight: 900;
  /* margin-bottom: 20px; */
}

#point section .section-top {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 62px;
  color: #3d4356;
  width: initial;
  text-align: center;
}

#point section .point-wrap {
  width: 100%;
}

#point section .point-wrap li {
  width: 100%;
  list-style: none;
  display: flex;
  margin-bottom: 60px;
}

#point section .point-wrap li .right,
#point section .point-wrap li .left {
  width: 50%;
}

#point section .point-wrap li.point-01 .left,
#point section .point-wrap li.point-03 .left,
#point section .point-wrap li.point-02 .right {
  min-width: 546px;
}

#point section .point-wrap li .point-title {
  border-left: 5px solid #ff7777;
  height: 266px;
  width: 100%;
  padding-left: 38px;
}

#point section .point-wrap li .point-title .img {
  width: 212px;
  height: 125px;
}

/* 左右のタイトルテキストまとめ */
#point section .point-wrap li .left .point-title p,
#point section .point-wrap li .right .point-title p {
  font-size: 50px;
  font-weight: 900;
  color: #3d4356;
  text-align: start;
  margin-top: 0;
}

/* 詳細テキストまとめ */
#point section .point-wrap li .left .detail,
#point section .point-wrap li .right .detail {
  margin: 35px 0;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  #point section .section-top {
    font-size: 30px;
  }
  #point section .point-wrap li {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #point section .point-wrap li.point-02 {
    flex-direction: column-reverse;
  }
  #point section .point-wrap li .left .point-title p,
  #point section .point-wrap li .right .point-title p {
    font-size: 40px;
  }
  #point section .point-wrap li .right,
  #point section .point-wrap li .left {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #point section .point-wrap li.point-01 .left,
  #point section .point-wrap li.point-03 .left,
  #point section .point-wrap li.point-02 .right {
    min-width: unset;
  }
  #point section .point-wrap li .point-title {
    height: auto;
    padding-left: 28px;
  }
  #point section .point-wrap li .left .point-title p,
  #point section .point-wrap li .right .point-title p {
    font-size: 30px;
  }
  #point section .point-wrap li .left .detail,
  #point section .point-wrap li .right .detail {
    margin: 30px 0;
    font-size: 16px;
  }
}

/*--------------------------
利用シーン
----------------------------*/
#sense {
  width: 100%;
  background: #f8fafc;
}
#sense section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  padding: 96px 0;
}
#sense section .section-sub,
#sense section .section-top,
#sense section .section-detail {
  width: initial;
  text-align: center;
  font-weight: 900;
}
#sense section .section-sub {
  color: #fb7a4b;
  font-size: 22px;
}
#sense section .section-top {
  font-size: 38px;
  margin-bottom: 20px;
  color: #3d4356;
}
#sense section .section-detail {
  font-size: 20px;
  margin-bottom: 42px;
  color: #475569;
  font-weight: normal;
}
#sense section .seenLi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 2%;
  width: 100%;
  min-height: 516px;
  height: auto;
  position: relative;
}
/* ラベル行をつなぐライン（デスクトップ） */
#sense section .seenLi::before {
  content: "";
  position: absolute;
  /* 1枚目左端〜3枚目右端に合わせる（icon 71px × 3 の auto margin 分を差し引き） */
  left: calc((100% - 71px * 3) / 6);
  right: calc((100% - 71px * 3) / 6);
  top: 36px;
  transform: translateY(-50%);
  height: 2px;
  background: #fe786b;
  opacity: 0.4;
  z-index: 0;
}
#sense section .seenLi > li {
  display: contents;
}
#sense section .seenLi .seenLiLabel {
  grid-row: 1;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
#sense section .seenLi .seenLiLabel p {
  font-size: 18px;
  font-weight: 900;
  color: #fb7a4b;
  margin-top: 8px;
}
#sense section .seenLi .seenLiLabel img {
  width: 71px;
  height: 71px;
  margin: 0 auto;
  object-fit: cover;
  object-position: 0 47%;
  overflow: clip;
}
#sense section .seenLi .seenLiCard {
  grid-row: 2;
  max-width: 380px;
  width: 100%;
  height: auto;
  border: 1px solid #ffe3d5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  justify-self: stretch;
}
#sense section .seenLi .seenLiCard .imgBox {
  width: 100%;
  height: 246px;
}
#sense section .seenLi .seenLiCard .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 47%;
  overflow: clip;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#sense section .seenLi .seenLiCard .underBox {
  height: calc(100% - 246px);
  width: 100%;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#sense section .seenLi .seenLiCard .underBox .boxTitle {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 15px;
}
#sense section .seenLi .seenLiCard .underBox p,
#sense section .seenLi .seenLiCard .underBox .underBoxUl {
  font-size: 14px;
}
#sense section .seenLi .seenLiCard .underBox p {
  line-height: 26px;
}
#sense section .seenLi .seenLiCard .underBox .underBoxUl {
  width: 100%;
  margin: 25px auto 0;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background: #fcfcfc;
  min-height: 120px;
  height: auto;
  padding: 14px 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#sense section .seenLi .seenLiCard .underBox .underBoxUl li {
  border: none;
  width: unset;
  background: none;
  height: unset;
  display: flex;
  align-items: center;
  box-shadow: none;
}
#sense section .seenLi .seenLiCard .underBox .underBoxUl li img {
  width: 14px;
  height: 11px;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  #sense section .seenLi .seenLiCard span {
    text-indent: -1em;
    padding-left: 1em;
  }
  #sense section .seenLi .seenLiCard .underBox .underBoxUl {
    padding: 14px;
  }
}

@media screen and (max-width: 1024px) {
  #sense section .seenLi::before {
    display: none;
  }
  #sense section .section-top {
    font-size: 30px;
  }
  #sense section .section-detail {
    font-size: 16px;
  }
  #sense section .seenLi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  #sense section .seenLi > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: unset;
    height: auto;
    width: 60%;
  }
  #sense section .seenLi .seenLiLabel {
    margin-bottom: 20px;
  }
  #sense section .seenLi .seenLiCard {
    max-width: unset;
    width: 100%;
  }
  #sense section .seenLi .seenLiCard .imgBox {
    height: 280px;
  }
  #sense section .seenLi .seenLiCard .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 40%;
    overflow: clip;
  }
}
@media screen and (max-width: 800px) {
  #sense section .seenLi > li {
    width: 95%;
  }
  #sense section .seenLi .seenLiCard .imgBox {
    height: 320px;
  }
}

/*--------------------------
なぜ、「音声＋スライド」なのか？
----------------------------*/

#why {
  width: 100%;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
#why section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#why section .img_sc_02_1,
#why section .img_sc_02_2 {
  position: absolute;
  top: 0;
  height: 408px;
}
#why section .img_sc_02_1 {
  left: 0;
  width: 133px;
}
#why section .img_sc_02_2 {
  right: -178px;
  width: 329px;
}
#why section .section-sub {
  color: #fb7a4b;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 30px;
}
#why section .section-top {
  font-size: 46px;
  font-weight: 900;
  color: #3d4356;
  border-bottom: 2px solid #fe786b;
  padding-bottom: 15px;
  text-align: center;
  margin-bottom: 62px;
}
#why section .section-top .marker01,
#why section .section-top .marker02 {
  position: relative;
}
#why section .section-top .marker01::before,
#why section .section-top .marker02::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 21px;
  width: 90%;
  height: 0.4em;
  background-color: #ffea45;
  transform: translateY(-50%);
  z-index: -1;
}
#why section p {
  text-align: center;
  width: 932px;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  #why section .section-top {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #why section p {
    width: 100%;
    font-size: 16px;
  }
}

/*--------------------------
説明の変革を、あなたのビジネスに。
----------------------------*/
#last {
  width: 100%;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}
#last section .section-img {
  width: 709px;
  max-width: 100%;
  /* height: 115px; */
  margin: 0 auto 30px;
}

#last section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#last section .section-top {
  font-size: 28px;
  font-weight: 900;
  color: #3d4356;
  text-align: center;
  margin-bottom: 30px;
}

#last section .section-detail {
  text-align: center;
  width: 932px;
  font-size: 22px;
}
#last section .section-detail-last {
  text-align: center;
  width: 932px;
  font-size: 20px;
  font-weight: 400;
  padding-top: 19px;
  opacity: 0.6;
}

#last section .serviceBox {
  /* width: 512px;
  height: 206px;
  border-radius: 15px;
  background: #fff;
  padding: 33px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); */
  width: 100%;
  height: auto;
  margin: 60px auto 0;
  text-align: center;
}
.serviceBox .hs-form-frame {
  max-width: 720px;
  margin: 0 auto;
}

#last section .serviceBox input,
#last section .serviceBox .serviceButton {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

#last section .serviceBox input {
  height: 48px;
  border: 2px solid #ccc;
  background: #f5f8fa;
  padding: 0 8px;
}

#last section .serviceBox .serviceButton {
  height: 46px;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff8c00 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

#last section .serviceBox .detail {
  font-size: 12px;
  color: rgba(71, 85, 105, 0.74);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #last section .section-top {
    font-size: 22px;
    margin-bottom: 30px;
  }
  #last section .section-detail {
    width: 100%;
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  #last section .section-img {
    padding: 0 15px;
  }
  #last section .serviceBox {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  #top,
  #point,
  #zero,
  #solution,
  #point,
  #sense,
  #why,
  #last {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  #top,
  #point,
  #zero,
  #solution,
  #point,
  #sense,
  #why,
  #last {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* =======================================
 footer
======================================= */
.l-footer {
  position: relative;
  z-index: 9;
  background: linear-gradient(
    150deg,
    rgb(96, 184, 200) 0%,
    rgb(75, 157, 189) 24.34%,
    rgb(59, 137, 181) 50.06%,
    rgb(49, 124, 176) 75.47%,
    rgb(46, 120, 174) 100%
  );
  color: #fff;
}
.l-footer .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 10vw 7.333vw 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer {
    padding: 9.375vw 0 0.781vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer {
    padding: 100px 0 10px;
  }
}

.l-footer__top {
  align-items: center;
  border-bottom: 1px solid #fff;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    flex-direction: column;
    gap: 10vw;
    padding-bottom: 13.333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__top {
    justify-content: space-between;
    /* padding: 0 6.25vw 8.594vw 7.813vw; */
    /* フッターへのPマーク・ISMSマークの追加に伴い修正 */
    padding: 0 0 5.594vw 3.813vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__top {
    padding: 0 0 60px 30px;
  }
}

.l-footer__logo {
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 65.2vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__logo {
    width: 31.563vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__logo {
    width: 404px;
  }
}

.l-footer__nav {
  display: flex;
}
.l-footer__nav ul li {
  display: list-item;
  unicode-bidi: isolate;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    justify-content: space-around;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav {
    gap: 0vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__nav {
    gap: 0px;
  }
}
.l-footer__nav .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .l-footer__nav .menu {
    gap: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav .menu {
    gap: 1.172vw;
    min-width: 15.234vw;
    padding-right: 1.563vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__nav .menu {
    gap: 15px;
    min-width: 195px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav .menu:nth-of-type(1) {
    width: 34vw;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav .menu:nth-of-type(2) {
    width: 42.667vw;
  }
}
.l-footer__nav .menu-item {
  letter-spacing: 0.06em;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .l-footer__nav .menu-item {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav .menu-item {
    font-size: 1.406vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__nav .menu-item {
    font-size: 18px;
  }
}

.l-footer__nav .menu-item a {
  background: url(../img/menu_arrow.svg) no-repeat;
  color: #fff;
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-footer__nav .menu-item a {
    background-position: 0 calc(1.333vw + 3px);
    background-size: 1.333vw auto;
    padding: 0 4.667vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav .menu-item a {
    background-position: 0 calc(0.391vw + 3px);
    background-size: 0.547vw auto;
    padding: 0 0 0 1.563vw;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__nav .menu-item a {
    background-position: 0 8px;
    background-size: 7px auto;
    padding: 0 0 0 20px;
  }
}
@media (any-hover: hover) {
  .l-footer__nav .menu-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}
.l-footer__nav .current-menu-item a {
  text-decoration: underline;
}
.l-copyright {
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;

  a {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-copyright {
    font-size: 2.667vw;
    padding: 4.667vw 0;
  }
}
@media screen and (min-width: 769px) {
  .l-copyright {
    font-size: 1.094vw;
    padding: 3.125vw 0;
  }
}
@media screen and (min-width: 1280px) {
  .l-copyright {
    font-size: 14px;
    padding: 40px 0;
  }
}

.l-pagetop {
  display: none;
  position: fixed;
  z-index: 90;
}
@media screen and (max-width: 768px) {
  .l-pagetop {
    bottom: 2.667vw;
    right: 2.667vw;
    width: 14.4vw;
  }
}
/* @media screen and (min-width: 769px) {
  .l-pagetop {
    bottom: 1.563vw;
    right: 3.906vw;
    width: 6.25vw;
  }
} */
@media screen and (min-width: 769px) {
  /* @media screen and (min-width: 1280px) { */
  .l-pagetop {
    bottom: 20px;
    right: 50px;
    width: 80px;
  }
}

/* =======================================
 breadcrumb
======================================= */
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 4vw 0;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumb {
    padding: 1.953vw 0;
  }
}
@media screen and (min-width: 1280px) {
  .breadcrumb {
    padding: 25px 0;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    gap: 2vw;
    margin: 0 auto;
    width: 96vw;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumb__list {
    gap: 1.172vw;
    margin: 0 0 0 auto;
    width: 90.625vw;
  }
}
@media screen and (min-width: 1280px) {
  .breadcrumb__list {
    gap: 15px;
    width: 1160px;
  }
}

.breadcrumb__item {
  color: #999;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0;
  br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 2.933vw;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumb__item {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .breadcrumb__item {
    font-size: 16px;
  }
}
.breadcrumb__item:not(:last-child)::after {
  background: #999;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:not(:last-child)::after {
    height: 2.133vw;
    margin-left: 2vw;
    width: 1.067vw;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumb__item:not(:last-child)::after {
    height: 0.938vw;
    margin-left: 1.172vw;
    width: 0.469vw;
  }
}
@media screen and (min-width: 1280px) {
  .breadcrumb__item:not(:last-child)::after {
    height: 12px;
    margin-left: 15px;
    width: 6px;
  }
}

.breadcrumb__link {
  color: #0060be;
}
@media (any-hover: hover) {
  .breadcrumb__link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

/* =======================================
 navigation
======================================= */
@media screen and (max-width: 768px) {
  .navigation {
    margin: 18.667vw auto 0;
    width: 84.8vw;
  }
}
@media screen and (min-width: 769px) {
  .navigation {
    margin: 7.031vw auto 0;
    width: 85.938vw;
  }
}
@media screen and (min-width: 1280px) {
  .navigation {
    margin: 90px auto 0;
    width: 1100px;
  }
}

.navigation__links {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .navigation__links {
    gap: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .navigation__links {
    gap: 0.938vw;
  }
}
@media screen and (min-width: 1280px) {
  .navigation__links {
    gap: 12px;
  }
}
.navigation__links .page-numbers {
  border: 1px solid #666;
  color: #666;
  display: block;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .navigation__links .page-numbers {
    font-size: 4vw;
    line-height: 2.667;
    width: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  .navigation__links .page-numbers {
    font-size: 1.406vw;
    line-height: 2.444;
    width: 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .navigation__links .page-numbers {
    font-size: 18px;
    width: 40px;
  }
}
.navigation__links .page-numbers.current {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}
.navigation__links .page-numbers.dots {
  border: none;
  width: auto;
}
@media (any-hover: hover) {
  .navigation__links a.page-numbers:hover {
    background: #d7f0f2;
  }
}

/* 下層ページ用「一覧に戻る」ボタン */

/* Back Button */
.back-button {
  padding: 30px 0 0;
  /* width: 56.25vw; */
}

@media screen and (min-width: 1280px) {
  .back-button {
    /* width: 720px; */
  }
}
@media screen and (min-width: 769px) {
  .post__content {
    /* width: 56.25vw; */
  }
}

.back-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: fit-content; */
  max-width: 300px;
  margin: 0 auto;
  padding: 16px 40px;
  background-color: #fff;
  color: var(--color-tertiary);
  border: var(--color-tertiary) 1px solid;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.back-button__link:hover {
  opacity: 0.8;
  /* transform: translateY(-2px); */
}

.back-button__text {
  font-size: 16px;
  font-weight: bold;
}

/* 導入事例サイドメニュー用 */

.l-sidebar__post-excerpt {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

/* =======================================
 footer
======================================= */

.l-footer__logowrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  @media screen and (max-width: 768px) {
    gap: 24px;
  }
}
.l-footer__isms-wrap {
  display: flex; /* 横並びにする */
  flex-direction: row; /* 左から右へ並べる */
  align-items: flex-start; /* 上揃え */
  gap: 16px; /* 2つの間の隙間 */
}
.l-footer__isms,
.l-footer__ismscloud {
  display: flex;
  flex-direction: column;
  align-items: center;
  img {
    height: 80px;
    width: auto;
    object-fit: contain;
  }
  p {
    font-size: 12px;
    font-weight: bolder;
    margin: 4px 0 0;
    @media screen and (max-width: 1280px) {
      font-size: 1.1vw;
    }
    @media screen and (max-width: 768px) {
      font-size: 2.6vw;
    }
  }
}

@media screen and (max-width: 768px) {
  .l-footer__isms img,
  .l-footer__ismscloud img {
    height: 18vw; /* 画面幅に応じて可変。数値はお好みで調整 */
    width: auto; /* 縦横比を保ったまま幅は自動計算 */
  }
}

.l-footer__pmark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  img {
    height: 80px;
    width: auto;
  }
  p {
    font-size: 12px;
    @media screen and (max-width: 1280px) {
      font-size: 1.1vw;
    }
    @media screen and (max-width: 768px) {
      font-size: 2.7vw;
    }
  }
  a {
    color: #fff;
    text-decoration: underline;
  }
}

/* =======================================
app-wrapper
======================================= */

.app-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  @media screen and (max-width: 768px) {
    margin-top: 0;
  }
}

.app-wrapper__phone {
  width: 220px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  img {
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 1280px) {
    width: 17vw;
  }
  @media screen and (max-width: 1130px) {
    display: none;
  }
}

.app-wrapper__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 990px;
  padding-left: calc(220px + 25px);
  margin-bottom: 12px;
  @media screen and (max-width: 1280px) {
    padding-left: calc(17vw + 25px);
  }
  @media screen and (max-width: 1130px) {
    padding-left: 0;
    justify-content: center;
  }
  @media screen and (max-width: 768px) {
    padding-left: 0;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.app-wrapper__title-icon {
  width: 80px;
  height: 80px;
  border-radius: 17px;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
  }
}

.app-wrapper__title-text {
  @media screen and (max-width: 768px) {
    text-align: center;
  }
  h2 {
    font-size: 29px;
    font-weight: 700;
    color: #113250;
    margin: 0 0 10px 0;
    @media screen and (max-width: 768px) {
      font-size: 5vw;
    }
  }
  p {
    font-size: 16px;
    color: #707070;
    margin: 0;
    font-weight: 500;
  }
}

.app-wrapper__download {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.app-wrapper__download-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-left: calc(220px + 25px);
  @media screen and (max-width: 1280px) {
    padding-left: calc(17vw + 25px);
  }
  @media screen and (max-width: 1130px) {
    padding-left: 0;
    justify-content: center;
  }
  @media screen and (max-width: 768px) {
    padding-left: 0;
  }
  width: 100%;
  max-width: 990px;
}

.app-wrapper_download-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  margin: 20px 0;
}

.app-wrapper_download_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  p {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin: 0;
  }
  img {
    width: auto;
    height: 60px;
  }
}

.app-wrapper_download_right {
  width: 120px;
  height: 120px;
  img {
    width: 100%;
    height: 100%;
  }
}

.app-wrapper_download-item.app-wrapper_pc {
  @media screen and (max-width: 768px) {
    display: none;
  }
}

.app-wrapper_download-item.app-wrapper_sp {
  display: none;
  @media screen and (max-width: 768px) {
    display: flex;
    flex-direction: column;
    margin: 25px;
    padding: 30px;
  }
  img {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   共通: fee セクション
========================================= */
/* 基本ラッパー・コンテナ */
.fee_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fee_wrapper > div {
  width: 100%;
  max-width: 1000px;
}

.fee {
  word-break: keep-all;
}

/* 枠組み・装飾 */
.fee_sub {
  margin-top: 10px;
  margin-bottom: 30px;
  word-break: keep-all;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 780px) {
  .fee_sub {
    font-size: 20px !important;
  }
}

.fee_box {
  border-radius: 20px;
  font-family:
    "Manrope", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", sans-serif;
  padding: 40px;
}
@media (max-width: 780px) {
  .fee_box {
    padding: 15px !important;
  }
}

.fee_price_wrap {
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 10px;
}
.fee_price_cols {
  margin: 0 !important;
  gap: 1em !important;
}

.fee_price_col_left {
  flex-basis: 50%;
}
.fee_price_main {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.fee_price_main_label {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.fee_price_main_title {
  font-size: 64px;
  font-weight: 700;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
}
.fee_price_main_cost {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
.fee_price_main_cost_num {
  font-size: min(80px, 16vw);
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.05em;
  font-weight: 900;
}

/* --- サブカラム（右側） --- */
.fee_price_col_right {
  flex-basis: 50%;
}
.fee_price_sub_cols {
  padding-right: 1.5rem;
  margin: 0;
  gap: 0;
}
@media (max-width: 780px) {
  .fee_price_sub_cols {
    padding: 0 !important;
  }
}

.fee_price_sub_col01,
.fee_price_sub_col02,
.fee_price_sub_col03 {
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.fee_price_sub_col_inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  .wp-block-group__inner-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
  }
}

.fee_price_sub_col_label {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}
@media (max-width: 780px) {
  .fee_price_sub_col_label {
    font-size: 3.4vw !important;
  }
}

.fee_price_sub_col_value {
  font-size: 40px;
  font-weight: 800;
  font-style: normal;
}
.fee_price_sub_col_unit {
  font-size: 16px;
}

/* 上部3カラムの点線 */
.fee_price_sub_col02,
.fee_price_sub_col03 {
  border-left: 1px dashed #cbd5e1;
}

.fee_price_sub_col_strong {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: min(32px, 3.6vw) !important;
  font-weight: 800;
  font-style: normal;
}
@media (max-width: 780px) {
  .fee_price_sub_col_strong {
    font-size: min(32px, 8vw) !important;
  }
}

/* アイコンデザイン */
.fee_icon {
  background: #ecf3fc;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  width: 80%;
  padding: 1.2rem;
  margin-bottom: 15px;
}
.fee_feature_icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

/* 中央の区切り線デザイン */
.fee_divider {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  color: #333333;
}
.fee_divider::before,
.fee_divider::after {
  content: "";
  display: block;
  width: min(80px, 6vw);
  height: 1px;
  background-color: #666666;
}

/* --- 下部機能一覧 --- */
.fee_features_wrap {
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}
.fee_features_cols {
  margin: 0 !important;
  gap: 0;
}

.fee_features_col01,
.fee_features_col02,
.fee_features_col03,
.fee_features_col04,
.fee_features_col05,
.fee_features_col06 {
  display: flex;
  flex-direction: column;
}
.fee_feature_title,
.fee_feature_desc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee_feature_title {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}
.fee_feature_desc {
  font-size: 12px;
  margin-top: 0.5em;
}
@media (max-width: 1000px) {
  .fee_feature_desc br {
    display: none;
  }
}

/* --- カラムの点線区切りとレスポンシブ対応 --- */
@media (min-width: 781px) {
  /* 下部6カラムの点線 */
  .fee_features_col02,
  .fee_features_col03,
  .fee_features_col04,
  .fee_features_col05,
  .fee_features_col06 {
    border-left: 1px dashed #cbd5e1;
  }
}

/* スマホ表示（縦並び時） */
@media (max-width: 780px) {
  .fee_features_wrap {
    padding: 20px;
  }
  .fee_features_col01,
  .fee_features_col02,
  .fee_features_col03,
  .fee_features_col04,
  .fee_features_col05,
  .fee_features_col06 {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 780px) {
  /* スマホでの特大文字縮小 */
  .fee_price_main_title {
    font-size: 40px !important;
  }
  .fee_price_main_cost_num {
    font-size: 48px !important;
  }
  .fee_price_main_cost {
    font-size: 18px !important;
  }
  .fee_divider::before,
  .fee_divider::after {
    width: 40px;
  }
  /* 下部6カラムの点線 (縦並び時は上側にボーダーを引く) */
  .fee_features_col02,
  .fee_features_col03,
  .fee_features_col04,
  .fee_features_col05,
  .fee_features_col06 {
    border-top: 1px dashed #cbd5e1;
    padding-top: 20px;
    margin-top: 10px;
  }
}

/* =========================================
   共通: security セクション
========================================= */

/* --- ラッパー構造（背景全幅＋コンテンツ制限） --- */
.section-bg-wrapper.security_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.security {
  width: 100%;
  max-width: 1000px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  margin: min(100px, 20vw) 0;
}

/* --- タイトル・リード文 --- */
.security_heading {
  font-size: 32px;
  font-weight: bold;
  word-break: keep-all;
}
.security_lead {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.8;
  word-break: keep-all;
}

/* --- グレーの区切り線 --- */
.security_line {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 40px 0;
}

/* --- セキュリティ機能の詳細 (左右の緑線デザイン) --- */
.security_title_deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}
.security_title_deco::before,
.security_title_deco::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #0bb65c;
}

/* --- カードレイアウト --- */
.security_cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.security_cards > .wp-block-group__inner-container {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.security_card {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  background-color: #ffffff;
  gap: 24px;
}

.security_card > .wp-block-group__inner-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.security_card_icon {
  flex-shrink: 0;
  margin: 0;
  width: 60px;
  background: #f4faf6;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50%;
  padding: 10px;
  height: 100%;
}
.security_card_body {
  padding-left: 1rem;
  border-left: 1px #22c55f dashed;
}
.security_card_title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
}
.security_card_desc {
  font-size: 16px;
  margin: 0;
  color: #444444;
  line-height: 1.6;
}

/* --- 最下部の注意書きボックス --- */
.security_notice {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #a5dcb6;
  border-radius: 8px;
  padding: 16px 24px;
  gap: 16px;
}
.security_notice > .wp-block-group__inner-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* CSSで「i」アイコンを描画 */
.security_notice_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #0bb65c;
  border-radius: 50%;
  color: #0bb65c;
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 14px;
  flex-shrink: 0;
  margin: 0;
}
.security_notice_text {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* --- レスポンシブ対応 (スマホ用) --- */
@media (max-width: 780px) {
  .security_card {
    padding: 16px;
    gap: 16px;
  }
  .security_card_icon {
    width: 48px;
  }

  .security_card_title {
    font-size: 20px;
  }

  .security_card_desc {
    font-size: 12px;
    line-height: 1.5;
  }

  /* スマホ等で文章が改行した際、アイコンが中央ではなく上揃えになるよう調整 */
  .security_notice {
    align-items: flex-start;
  }
  .security_notice_icon {
    margin-top: 2px;
  }
}
