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

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1.1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

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

.pc,
.sp {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}
:root {
  --primary-blue: #1C64F4;
  --navy: #0940AF;
  --semi-blue-bg: #9ABCFF;
  --semi-blue-bg02: #6498FF;
  --semi02-blue-bg: #D1E0FF;
  --light-blue-bg: #E5EEFF;
  --light-blue-bg02: #F0F5FF;
  --accent-orange: #FF710B;
  --gray-bg: #f5f5f5;
  --darker-gray-bg: #eeeeee;
  --yellow-highlight: #ffeb3b;
  --yellow-text: #FCF805;
  --black: #000000;
  --white: #ffffff;
}

/* 2. カラーリストの定義（全ての変数を網羅） */
/* 3. ループでクラスを自動生成 */
.t-primary-blue {
  color: var(--primary-blue) !important;
}

.bg-primary-blue {
  background-color: var(--primary-blue) !important;
}

.t-navy {
  color: var(--navy) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.t-light-blue-bg {
  color: var(--light-blue-bg) !important;
}

.bg-light-blue-bg {
  background-color: var(--light-blue-bg) !important;
}

.t-light-blue-bg02 {
  color: var(--light-blue-bg02) !important;
}

.bg-light-blue-bg02 {
  background-color: var(--light-blue-bg02) !important;
}

.t-semi-blue-bg {
  color: var(--semi-blue-bg) !important;
}

.bg-semi-blue-bg {
  background-color: var(--semi-blue-bg) !important;
}

.t-semi-blue-bg02 {
  color: var(--semi-blue-bg02) !important;
}

.bg-semi-blue-bg02 {
  background-color: var(--semi-blue-bg02) !important;
}

.t-accent-orange {
  color: var(--accent-orange) !important;
}

.bg-accent-orange {
  background-color: var(--accent-orange) !important;
}

.t-gray-bg {
  color: var(--gray-bg) !important;
}

.bg-gray-bg {
  background-color: var(--gray-bg) !important;
}

.t-darker-gray-bg {
  color: var(--darker-gray-bg) !important;
}

.bg-darker-gray-bg {
  background-color: var(--darker-gray-bg) !important;
}

.t-yellow-highlight {
  color: var(--yellow-highlight) !important;
}

.bg-yellow-highlight {
  background-color: var(--yellow-highlight) !important;
}

.t-yellow-text {
  color: var(--yellow-text) !important;
}

.bg-yellow-text {
  background-color: var(--yellow-text) !important;
}

.t-black-text {
  color: var(--black) !important;
}

.bg-black-text {
  background-color: var(--black) !important;
}

.t-white-text {
  color: var(--white) !important;
}

.bg-white-text {
  background-color: var(--white) !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-width: 1200px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.font-bold {
  font-weight: 900;
}

.font-20 {
  font-size: 20px;
  font-weight: 900;
}

.hidden-md {
  display: none;
}
@media (max-width: 768px) {
  .hidden-md {
    display: block;
  }
}

@media (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}

@media (max-width: 768px) {
  .flex-col-sm {
    flex-direction: column;
  }
}

.slash {
  position: relative;
  display: inline-block;
  padding: 0 35px;
  margin-bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
}
.slash::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(75deg);
  width: 25px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.slash::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(-75deg);
  width: 25px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .slash {
    font-size: 20px;
  }
}
.slash .slash-02 {
  position: relative;
  display: inline-block;
}
.slash .slash-02::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 60%;
  transform: translateY(-50%) rotate(75deg);
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.slash .slash-02::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 60%;
  transform: translateY(-50%) rotate(-75deg);
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px;
  padding-top: 57px;
  min-width: 1200px;
}
header .container {
  height: 100%;
  max-width: 1310px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  width: 298px;
  height: 30px;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: 0.3s;
}

.header-sp-btns {
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
}
.nav-links a {
  color: var(--black);
}
.nav-links a:hover {
  color: var(--primary-blue);
}
.nav-links .header-btns {
  display: flex;
  gap: 14px;
}
.nav-links .header-btns a {
  color: white;
  border-radius: 20px;
}

.btn-header-tel {
  background: var(--black);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.btn-header-contact {
  background: var(--black);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../img/hero_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: relative;
  min-height: 745px;
  /* 文字は常に最前面 */
}
.hero-content {
  position: relative;
  top: 20px;
  z-index: 1;
  width: 66%;
  margin-top: 40px;
}
.hero .container {
  max-width: 1280px;
}
.hero .hero-tag {
  display: inline-block;
  position: relative;
  z-index: 1;
  top: 50px;
  padding: 12px 52px 12px 0px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.7;
  /* 左側にだけ「画面左端まで伸びる青」を作る（矩形） */
  /* タグ本体の青（右端だけ斜め） */
}
.hero .hero-tag::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: 100vw;
  background: var(--primary-blue);
  z-index: 0;
}
.hero .hero-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-blue);
  -webkit-clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
  z-index: 0;
}
.hero .hero-tag__text {
  position: relative;
  z-index: 1;
  left: 10px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--black);
  text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.781);
}
.hero h1 span {
  color: var(--accent-orange);
  font-size: 64;
}
.hero h1 .font-56 {
  color: var(--black);
  font-size: 56px;
}
.hero-sub {
  font-size: 25px;
  margin-bottom: 17px;
}
.hero-sub span {
  color: var(--accent-orange);
}

.price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.price-label {
  font-size: 40px;
  margin-right: 10px;
}

.price-val {
  font-size: 56px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.price-unit {
  font-size: 40px;
  margin-left: 5px;
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 560px;
}

.tag-item {
  background: var(--accent-orange);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
}

.stats-bar {
  background-color: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.2px;
  max-width: 1250px;
}

.stats-text {
  font-size: 22px;
  font-weight: 700;
  margin-right: 90px;
}

.stats-item {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
.stats-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 63px;
  background-image: url("../img/state_before.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stats-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 63px;
  background-image: url("../img/state_after.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stats-item span {
  position: relative;
  bottom: 6px;
}

.stats-label {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.stats-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-orange);
}

.stats-unit,
.t-accent-orange {
  font-size: 18px;
}

.blue-banner {
  background-color: var(--primary-blue);
  background-image: url("../img/banner_bg.png");
  background-size: 300px auto;
  background-repeat: no-repeat;
  background-position: 41% center;
  color: white;
  padding: 92px 0px 97px 0px;
}

.banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1270px;
}

.banner-left {
  text-align: left;
}

.banner-text-sm {
  font-size: 20px;
  margin-bottom: 5px;
}

.phone-block {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  margin: 18px 0px 15px 0px;
}
.phone-block .tel-icon {
  width: 32px;
  height: 42px;
  margin-right: 16px;
  display: flex;
  align-items: center;
}

.hours {
  font-size: 18px;
  margin-top: 5px;
  color: #e0f2fe;
}

.banner-text-bottom {
  font-size: 18px;
  margin-bottom: 19px;
}

.banner-right {
  text-align: center;
}

.contact-btn-top {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 30px 100px;
  border-radius: 50px;
  margin-top: 5px;
  font-size: 20px;
}
.contact-btn-top .material-icons-outlined {
  width: 29px;
  height: 20px;
  margin-right: 8px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  text-decoration: underline;
  -webkit-text-decoration-color: #C4D7FF;
          text-decoration-color: #C4D7FF;
  text-decoration-thickness: 11px;
  text-underline-offset: 1px;
}
.section-title.trans-underline {
  -webkit-text-decoration-color: rgba(196, 215, 255, 0.5);
          text-decoration-color: rgba(196, 215, 255, 0.5);
}
.section-title.dark-underline {
  -webkit-text-decoration-color: #A9C6FF;
          text-decoration-color: #A9C6FF;
}
.section-title span {
  color: var(--primary-blue);
  position: relative;
}
.section-title.white-title {
  color: white;
}
.section-title.white-title span {
  color: var(--yellow-text);
}
.section-title .t-primary-blue {
  color: var(--primary-blue);
  font-size: 42px;
}

.section-desc {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.section-problem {
  background-color: var(--light-blue-bg);
  background-image: radial-gradient(circle, #D1E0FF 2px, transparent 2px);
  background-size: 15px 15px;
  background-repeat: repeat;
  padding: 90px 0px 140px 0px;
  position: relative;
}
.section-problem::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* 三角形のサイズを指定 */
  width: 180px;
  height: 90px;
  /* 背景色と背景画像（ドット）の両方を指定 */
  background-color: var(--light-blue-bg);
  background-image: radial-gradient(circle, #D1E0FF 2px, transparent 2px);
  background-size: 20px 20px;
  /* ドットの間隔を調整 */
  /* 要素を逆三角形に切り抜く */
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 311px);
  justify-content: center;
  gap: 104px 83px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  width: 311px;
  height: 281px;
  padding: 30px;
  border-radius: 20px 20px 20px 0px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 18px;
}
.problem-card .problem-img {
  position: absolute;
  bottom: 0;
}
.problem-card .problem-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.problem-card .cartd-text {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}
.problem-card p {
  font-size: 18px;
}
.problem-card:nth-child(1) .problem-img {
  width: 77px;
  left: 50%;
  transform: translateX(-50%);
}
.problem-card:nth-child(2) {
  top: 30px;
}
.problem-card:nth-child(2) .problem-img {
  width: 96px;
  right: 10%;
}
.problem-card:nth-child(3) .problem-img {
  width: 86px;
  right: 10%;
}
.problem-card:nth-child(4) .problem-img {
  width: 79px;
  left: 50%;
  transform: translateX(-50%);
}
.problem-card:nth-child(5) {
  top: 30px;
}
.problem-card:nth-child(5) .problem-img {
  width: 81px;
  left: 50%;
  transform: translateX(-50%);
}
.problem-card:nth-child(6) .problem-img {
  width: 85px;
  left: 10%;
}

.quote-mark {
  position: absolute;
  top: -10px;
  /* 位置は微調整してください */
  left: 15px;
  width: 43px;
  /* 画像のサイズ（お好みで） */
  height: 36px;
  /* 画像のサイズ（お好みで） */
  /* 背景画像としてオレンジのマークを設定 */
  background-image: url("../img/icon/quote-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.problem-title {
  display: inline-block;
  font-size: 22px;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.6;
}
.problem-title span {
  color: var(--primary-blue);
}

.problem-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  height: 40px;
}

.section-solution {
  background-color: var(--primary-blue);
  padding: 133px 0px 100px 0px;
}

.solution-intro {
  text-align: center;
  margin-bottom: 39px;
  color: white;
}
.solution-intro .slash {
  left: unset;
  transform: unset;
}
.solution-intro h2 {
  font-size: 32px;
}
.solution-intro h2 .t-yellow-box {
  width: 339px;
  height: 34px;
  display: inline-block;
  margin-right: 10px;
}
.solution-intro h2 .highlight-yellow {
  font-size: 40px;
  display: inline-block;
  background-image: url("../img/wavy_bg.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 100% auto;
  /* 波の大きさを調整 */
  padding-bottom: 5px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 347px));
  gap: 30px;
  justify-content: center;
}

.solution-card {
  background: white;
  border-radius: 20px;
  padding: 10px 10px 30px 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: auto;
  min-height: 487px;
}

.solution-img-box {
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}
.solution-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.solution-sub {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.solution-head {
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.solution-text {
  font-size: 16px;
  padding: 0 33px;
}

.section-icons {
  background-color: var(--light-blue-bg);
  background-image: radial-gradient(circle, #D1E0FF 2px, transparent 2px);
  background-size: 15px 15px;
  background-repeat: repeat;
  padding: 93px 0px 99px 0px;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 252px);
  gap: 40px 40px;
  max-width: 1120px;
  margin: 55px auto 0px auto;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-item .icon-circle {
  width: 252px;
  height: 252px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.icon-item .icon-circle img {
  width: 113x;
  height: 67px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item .icon-circle .icon-label {
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
.icon-item .icon-circle .material-icons-outlined {
  font-size: 40px;
  color: var(--primary-blue);
}
.icon-item:nth-child(2) img {
  width: 69px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(3) img {
  width: 88px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(4) img {
  width: 81px;
  height: 81px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(5) img {
  width: 77px;
  height: 83px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(6) img {
  width: 84px;
  height: 68px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(7) img {
  width: 75px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(8) img {
  width: 58px;
  height: 81px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(9) img {
  width: 72px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(10) img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(11) img {
  width: 89px;
  height: 68px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.icon-item:nth-child(12) img {
  width: 103px;
  height: 78px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}

.section-reasons {
  padding: 100px 0;
  background-color: var(--semi-blue-bg);
}
.section-reasons .font-20 {
  width: 284px;
  height: 25px;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 9px;
}
.section-reasons .font-20 img {
  width: 249px;
  height: auto;
  display: inline-block;
}

.row-container {
  background-color: white;
  padding: 56px 50px;
  border-radius: 20px;
  margin-top: 40px;
}

.reason-row {
  display: flex;
  align-items: start;
  gap: 38px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .reason-row {
    flex-direction: column;
  }
}

.reason-img {
  width: 380px;
  height: 285px;
}
.reason-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-content {
  width: 682px;
}

.reason-num {
  color: var(--accent-orange);
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.reason-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.reason-text {
  font-size: 16px;
  line-height: 1.8;
  font-weight: normal;
  letter-spacing: 0.4px;
}

.section-pricing {
  background-color: var(--primary-blue);
  padding: 86px 0px 93px 0px;
  color: #fff;
}

.section-pricing .section-desc {
  font-size: 16px;
  font-weight: normal;
}

/* 横並びにする */
.price-swiper .swiper-wrapper {
  transform: none;
  justify-content: center;
}

/* スライド1枚あたりの幅を固定解除 */
.price-swiper .swiper-slide {
  width: 347px;
  /* 3枚並び（gap分を引く） */
  height: auto;
}

/* 矢印を隠す */
.price-swiper .swiper-button-next,
.price-swiper .swiper-button-prev {
  display: none;
}

.price-swiper {
  margin-top: 44px;
  padding: 10px 0 30px;
}
.price-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  color: var(--black);
  padding: 29px;
  position: relative;
  border: 4px solid transparent;
  transition: 0.3s;
  width: 347px;
  height: 526px;
}

.plan-badge {
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 5px;
  border-radius: 20px;
  margin: 0 auto 20px;
  width: 286px;
}

.plan-desc {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
  height: 36px;
}

.plan-price {
  text-align: center;
  margin-bottom: 5px;
}

.plan-price-val {
  font-size: 40px;
  color: var(--accent-orange);
  font-weight: 900;
  margin-right: 5px;
}

.plan-price-sub {
  font-size: 16px;
  color: var(--accent-orange);
  font-weight: 900;
}

.plan-list {
  border-top: 3px solid #DEDFE1;
  padding-top: 20px;
}
.plan-list li {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.plan-list li:last-child {
  border-bottom: none;
}

.check_icon_orange {
  width: 19px;
  height: 15px;
  /* 背景画像の設定 */
  background-image: url("../img/icon/checkicon.png");
  background-repeat: no-repeat;
  background-size: contain;
  /* 枠内に画像を収める */
  background-position: center;
  /* 中央に配置 */
  flex-shrink: 0;
  margin-right: 8px;
  display: block;
  position: relative;
  left: -5px;
}

.price-note {
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
  font-weight: 500;
}

.section-voice {
  background-color: var(--light-blue-bg);
  padding: 90px 0px 100px 0px;
  /* ▶ 右矢印 */
  /* ◀ 左矢印 */
  /* PCではページネーション表示 */
}
.section-voice .swiper-button-next,
.section-voice .swiper-button-prev {
  width: 40px;
  height: 40px;
}
.section-voice .swiper-button-next::after,
.section-voice .swiper-button-prev::after {
  content: none;
}
.section-voice .swiper-button-next::before,
.section-voice .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}
.section-voice .voice-swiper {
  margin-top: 53px;
  padding: 10px 5px 60px 5px;
}
.section-voice .voice-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.section-voice .swiper-button-next::before {
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 12px solid #A9C6FF;
}
.section-voice .swiper-button-prev::before {
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 12px solid #A9C6FF;
}
.section-voice .voice-swiper .swiper-button-next,
.section-voice .voice-swiper .swiper-button-prev {
  display: none;
}
.section-voice .voice-swiper .swiper-pagination {
  display: block;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .voice-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  width: 574px;
  height: auto;
  min-height: 656px;
}

.voice-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 32px;
  overflow: hidden;
}
.voice-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-title {
  font-size: 20px;
  margin-top: 0;
  text-align: left;
}

.voice-text {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin: 20px 0px;
}

.voice-author {
  font-size: 13px;
  text-align: left;
}

.section-flow {
  background-color: var(--semi-blue-bg);
  padding: 90px 0px 100px 0px;
}
.section-flow .slash {
  color: var(--black);
  font-size: 24px;
  margin-top: 20px;
}
.section-flow .slash::before, .section-flow .slash::after {
  color: white;
  width: 45px;
  height: 2px;
  top: 57%;
}
.section-flow .slash::before {
  left: -11px;
}
.section-flow .slash::after {
  right: -11px;
}
.section-flow .slash .slash-02 {
  padding: 0 20px;
}
.section-flow .slash .slash-02 span:first-child {
  color: var(--yellow-text);
  font-size: 40px;
}
.section-flow .slash .slash-02 span:nth-child(2) {
  color: var(--primary-blue);
  font-size: 40px;
}
.section-flow .slash .slash-02::before, .section-flow .slash .slash-02::after {
  color: white;
  width: 25px;
  height: 2px;
  top: 72%;
}
.section-flow .slash .slash-02::before {
  left: -23px;
}
.section-flow .slash .slash-02::after {
  right: -23px;
}
.section-flow .section-desc {
  margin-top: 0px;
}
.section-flow .section-title .t-primary-blue {
  font-size: 40px;
}
.section-flow .container {
  max-width: 1100px;
}

/* PCでは縦並びにする */
.flow-swiper {
  margin: 36px auto 0px auto;
}

.flow-swiper .swiper-wrapper {
  display: block;
  transform: none;
  width: 100%;
}

.flow-swiper .swiper-slide {
  width: 100%;
  height: auto;
  display: block;
}

.flow-list {
  max-width: 800px;
  margin: 0 auto;
}

.flow-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 28px 37px 28px 28px;
  display: flex;
  gap: 29px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.flow-img {
  width: 220px;
  height: 166px;
  flex-shrink: 0;
}
.flow-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow-content {
  flex: 1;
}

.flow-step {
  color: var(--primary-blue);
  font-size: 16px;
  display: block;
}

.flow-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.flow-desc {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.section-box-image img {
  width: 100%;
  height: 446px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section-faq {
  padding: 90px 0px 100px 0px;
}
.section-faq .section-title .t-primary-blue {
  font-size: 32px;
}

.faq-desc {
  font-size: 16px;
  margin: 24px 0px 28px 0px;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 5px;
  overflow: hidden;
}

.faq-summary {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  background-color: var(--light-blue-bg02);
}
.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  flex-shrink: 0;
  margin-left: 10px;
  display: block;
}

.faq-item[open] .faq-icon {
  display: none;
}

.faq-item[open] .faq-summary::after {
  content: "ー";
  font-size: 32px;
  font-weight: bold;
  color: var(--black);
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-q {
  font-size: 32px;
  margin-right: 24px;
  font-weight: 900;
  position: relative;
  top: -5px;
}

.faq-content {
  font-size: 16px;
  border-top: 1px solid #f5f5f5;
  margin-top: 0;
  font-weight: 500;
  padding: 31px 80px 41px 75px;
}

.section-form {
  background-color: var(--semi02-blue-bg);
  padding: 90px 0px 100px 0px;
}
.section-form input[name=username],
.section-form input[name=furigana],
.section-form input[name=email],
.section-form input[name=tel] {
  width: 480px;
}

.form-desc {
  font-size: 26px;
  margin: 16px 0px 31px 0px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.badge-req {
  background: var(--primary-blue);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 16px;
  background: #fff;
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.consent-button {
  font-size: 14px;
}
.consent-button input {
  margin-right: 5px;
}
.consent-button a {
  text-decoration: underline;
}

.form-submit-btn {
  background: #000;
  color: #fff;
  padding: 20px 64px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin: 39px auto 0;
  transition: opacity 0.3s;
}
.form-submit-btn:hover {
  opacity: 0.8;
}

footer {
  padding: 55px 0 30px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 43px;
}

.footer-logo {
  width: 222px;
  height: 60px;
  margin-bottom: 20px;
}

.footer-addr {
  font-size: 14px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 40px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 400;
}
.footer-links a:hover {
  color: #aaa;
}

.copyright {
  font-size: 11px;
}

@media (max-width: 900px) {
  .container {
    padding: 0 25px;
    max-width: 100%;
    min-width: unset;
  }
}
@media (max-width: 768px) {
  body:has(.menu-toggle:checked) {
    overflow: hidden;
  }
  header {
    position: relative;
    z-index: 1001;
    height: 55px;
    max-width: 100%;
    padding-top: 0;
    min-width: unset;
  }
  header .container {
    flex-wrap: wrap;
    padding: 0px;
  }
  .logo {
    font-size: 16px;
    position: relative;
    left: 25px;
    letter-spacing: -1.5px;
    width: 163px;
    height: 16px;
  }
  .header-sp-btns {
    display: flex;
    gap: 1px;
    position: absolute;
    right: 0;
  }
  .sp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
  }
  .sp-btn img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
    position: relative;
  }
  .sp-btn.sp-btn-mail {
    background-color: var(--semi-blue-bg02);
  }
  .sp-btn.sp-btn-tel {
    background-color: var(--semi-blue-bg02);
  }
  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 55px;
    height: 55px;
    background: #000;
    padding: 14x 14px 14px 14px;
    position: relative;
    transform: none;
  }
  .menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: 0.3s;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-blue);
    z-index: 999;
    flex-direction: column;
    justify-content: start;
    padding-top: 65px;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .nav-links .header-btns {
    display: none;
  }
  .nav-links a {
    font-size: 14px;
    color: white;
  }
  .btn-header-tel,
.btn-header-contact {
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
  .menu-toggle {
    background: #000;
  }
  .menu-toggle:checked ~ .nav-links {
    display: flex;
    opacity: 1;
    transform: scale(1);
  }
  .menu-toggle:checked ~ .header-sp-btns .menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }
  .menu-toggle:checked ~ .header-sp-btns .menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle:checked ~ .header-sp-btns .menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }
  .hero {
    background-image: url(../img/hero_bg_sp.png);
    background-repeat: no-repeat;
    /* 1. 比率を保つために cover を指定 */
    background-size: cover;
    /* 2. 画像を下に配置 */
    background-position: top;
    /* 3. 背景の描画範囲を「パディングの内側だけ」に制限する（これが重要！） */
    background-origin: content-box;
    background-clip: content-box;
    /* 4. 上に作りたい余白の分だけ padding-top を入れる */
    /* 5. 余白部分の色を白にする */
    background-color: white;
    position: relative;
    height: 730px;
    min-height: 730px;
    padding-bottom: 0px;
    padding-top: 55px;
  }
  .hero .hero-container {
    position: relative;
    top: -90px;
    width: 100%;
    text-align: center;
  }
  .hero-content {
    width: 100%;
    text-align: center;
    margin-top: 0;
    top: 40px;
  }
  .hero-content h1 {
    font-size: 36px;
    text-shadow: unset;
  }
  .hero-content h1 .font-56 {
    font-size: 36px;
  }
  .hero-content .bottom-content {
    position: relative;
    top: 195px;
  }
  .hero .hero-tag {
    font-size: 18px;
    text-align: left;
    line-height: 1.4;
  }
  .hero .hero-tag__text {
    font-size: 18px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 0px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.781);
    margin-bottom: 20px;
  }
  .price-block {
    display: block;
    justify-content: center;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.781);
  }
  .price-label {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  .price-val {
    font-size: 36px;
  }
  .price-unit {
    font-size: 16px;
  }
  .tags-grid {
    grid-template-columns: repeat(20, 1fr);
    /* 1行目の1番目：6割（10列中6個分） */
    /* 1行目の2番目：4割（10列中4個分） */
    /* 2行目以降（例：5:5にしたい場合） */
  }
  .tags-grid div:nth-child(1) {
    grid-column: span 9;
  }
  .tags-grid div:nth-child(2) {
    grid-column: span 11;
  }
  .tags-grid div:nth-child(3) {
    grid-column: span 11;
  }
  .tags-grid div:nth-child(4) {
    grid-column: span 9;
  }
  .tags-grid div:nth-child(5) {
    grid-column: span 11;
  }
  .tags-grid div:nth-child(6) {
    grid-column: span 9;
  }
  .tags-grid .tag-item {
    font-size: 13px;
    border-radius: 8px;
  }
  .stats-bar {
    padding: 20px 0 40px 0;
  }
  .stats-container {
    flex-direction: column;
    gap: 0px;
    max-width: 100%;
  }
  .stats-container .stats-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    margin-right: unset;
  }
  .stats-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .stats-item:first-of-type {
    margin-bottom: 40px;
  }
  .stats-item::before, .stats-item::after {
    top: 60%;
  }
  .stats-item span {
    font-size: 16px;
    bottom: unset;
  }
  .stats-item .stats-number {
    font-size: 24px;
  }
  .blue-banner {
    padding: 40px 15px;
    background-image: url(../img/banner_bg.png);
    background-size: 177px auto;
    background-repeat: no-repeat;
    /* 右上（横：右、縦：上）に配置 */
    background-position: right 20px top 60px;
    letter-spacing: 0.6;
  }
  .blue-banner .banner-text-sm {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .blue-banner .hours {
    font-size: 13px;
  }
  .banner-flex {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    max-width: 100%;
  }
  .phone-block {
    justify-content: center;
    font-size: 28px;
  }
  .phone-block .material-icons-outlined {
    width: 19px;
    height: auto;
    position: relative;
    bottom: -1px;
  }
  .banner-left {
    text-align: center;
    margin-bottom: 56px;
  }
  .banner-text-bottom {
    font-size: 18px;
  }
  .contact-btn-top {
    font-size: 18px;
    padding: 16px 32px;
    letter-spacing: 0.3px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 34px;
    text-decoration-thickness: 10px;
    text-underline-offset: 0;
  }
  .section-title .t-primary-blue {
    font-size: 24px;
  }
  .section-problem {
    padding: 50px 0;
  }
  .section-problem::after {
    width: 100px;
    height: 50px;
  }
  .section-problem .section-title {
    padding: 0 13px;
    letter-spacing: 0.6px;
  }
  .problem-title {
    margin-top: unset;
    margin-bottom: unset;
    font-size: 14px;
    display: inline-block;
    position: relative;
    width: 240px;
    letter-spacing: 0.7px;
    font-weight: 700;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
    padding: 0 13px;
  }
  .problem-card {
    width: 100%;
    height: 84px;
    padding: 17px;
  }
  .problem-card .quote-mark {
    width: 24px;
    height: 18px;
    top: -5px;
    left: 20px;
  }
  .problem-card .cartd-text {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
  .problem-card .problem-img {
    position: absolute;
    bottom: 0;
  }
  .problem-card .problem-img img {
    width: 100%;
    height: auto;
  }
  .problem-card:nth-child(1) {
    height: 78px;
  }
  .problem-card:nth-child(1) .problem-title {
    width: 177px;
  }
  .problem-card:nth-child(1) .cartd-text {
    left: 57%;
  }
  .problem-card:nth-child(1) .problem-img {
    width: 43px;
    left: 6%;
    right: auto;
    transform: none;
  }
  .problem-card:nth-child(2) {
    top: unset;
    height: 108px;
  }
  .problem-card:nth-child(2) .problem-title {
    width: 240px;
  }
  .problem-card:nth-child(2) .cartd-text {
    left: 47%;
  }
  .problem-card:nth-child(2) .problem-img {
    width: 59px;
    right: 6%;
    left: auto;
    transform: none;
  }
  .problem-card:nth-child(3) {
    height: 84px;
  }
  .problem-card:nth-child(3) .problem-title {
    width: 177px;
  }
  .problem-card:nth-child(3) .cartd-text {
    left: 54%;
  }
  .problem-card:nth-child(3) .problem-img {
    width: 47px;
    left: 6%;
    right: auto;
    transform: none;
  }
  .problem-card:nth-child(4) {
    height: 84px;
  }
  .problem-card:nth-child(4) .problem-title {
    width: 222px;
  }
  .problem-card:nth-child(4) .cartd-text {
    left: 44%;
  }
  .problem-card:nth-child(4) .problem-img {
    width: 46px;
    right: 6%;
    left: auto;
    transform: none;
  }
  .problem-card:nth-child(5) {
    top: unset;
    height: 108px;
  }
  .problem-card:nth-child(5) .problem-title {
    width: 192px;
  }
  .problem-card:nth-child(5) .cartd-text {
    left: 57%;
  }
  .problem-card:nth-child(5) .problem-img {
    width: 45px;
    left: 4%;
    right: auto;
    transform: none;
  }
  .problem-card:nth-child(6) {
    height: 108px;
  }
  .problem-card:nth-child(6) .problem-title {
    width: 193px;
  }
  .problem-card:nth-child(6) .cartd-text {
    left: 39%;
  }
  .problem-card:nth-child(6) .problem-img {
    width: 53px;
    right: 10%;
    left: auto;
    transform: none;
  }
  .problem-card .problem-desc {
    display: none;
    margin-bottom: 0px;
  }
  .section-solution {
    padding: 70px 0px 50px 0px;
  }
  .solution-intro {
    margin-bottom: 32px;
  }
  .solution-intro h2 {
    font-size: 20px;
  }
  .solution-intro h2 .t-yellow-box {
    width: 221px;
    height: 22px;
    display: inline-block;
    margin-right: 8px;
  }
  .solution-intro h2 .highlight-yellow {
    font-size: 24px;
  }
  .solution-intro .section-desc {
    text-align: left;
    font-size: 16px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .solution-card {
    height: auto;
    min-height: unset;
    padding: 10px 10px 26px 10px;
  }
  .solution-card .solution-sub {
    font-size: 14px;
  }
  .solution-card .solution-head {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .solution-card .solution-text {
    font-size: 14px;
    padding: 0 15px;
    letter-spacing: 0.6px;
  }
  .solution-img-box {
    height: 187px;
  }
  .solution-img-box img {
    border-radius: 20px 20px 0px 0px;
  }
  .highlight-yellow {
    font-size: 20px;
  }
  .section-icons {
    padding: 50px 0;
  }
  .section-icons .section-title {
    margin-bottom: 18px;
  }
  .section-icons .section-desc {
    text-align: left;
    margin-top: 0px;
    font-size: 16px;
  }
  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-top: 33px;
  }
  .icon-item {
    width: 153px;
    height: 153px;
  }
  .icon-item .icon-circle {
    width: 153px;
    height: 153px;
    aspect-ratio: 1;
    padding: 15px;
    margin-bottom: 0px;
  }
  .icon-item .icon-circle img {
    width: 73px;
    height: auto;
  }
  .icon-item .icon-circle .icon-label {
    font-size: 13px;
  }
  .icon-item .icon-circle .material-icons-outlined {
    font-size: 32px;
  }
  .icon-item:nth-child(2) .icon-circle img {
    width: 46px !important;
  }
  .icon-item:nth-child(3) .icon-circle img {
    width: 68px !important;
  }
  .icon-item:nth-child(4) .icon-circle img {
    width: 48px !important;
  }
  .icon-item:nth-child(5) .icon-circle img {
    width: 51px !important;
  }
  .icon-item:nth-child(6) .icon-circle img {
    width: 58px !important;
  }
  .icon-item:nth-child(7) .icon-circle img {
    width: 55px !important;
  }
  .icon-item:nth-child(8) .icon-circle img {
    width: 38px !important;
  }
  .icon-item:nth-child(9) .icon-circle img {
    width: 49px !important;
  }
  .icon-item:nth-child(10) .icon-circle img {
    width: 46px !important;
  }
  .icon-item:nth-child(11) .icon-circle img {
    width: 61px !important;
  }
  .icon-item:nth-child(12) .icon-circle img {
    width: 72px !important;
  }
  .section-reasons {
    padding: 40px 0px 50px 0px;
    margin-top: 0px;
  }
  .section-reasons .font-20 {
    justify-content: center;
    margin-bottom: 5px;
  }
  .section-reasons .font-20 img {
    width: 220px;
  }
  .section-reasons .section-title {
    margin-bottom: 24px;
  }
  .row-container {
    padding: 20px 20px 30px 20px;
    margin-top: 0px;
  }
  .reason-row {
    margin-bottom: 30px;
    gap: 20px;
  }
  .reason-row:nth-last-child(1) {
    margin-bottom: 0px;
  }
  .reason-img {
    width: 100%;
    height: 200px;
  }
  .reason-img img {
    height: auto;
  }
  .reason-content {
    width: 100%;
  }
  .reason-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .reason-text {
    font-size: 14px;
    font-weight: 400;
  }
  .section-pricing {
    padding: 50px 0;
  }
  .section-pricing .section-title {
    margin-bottom: 28px;
  }
  .section-pricing .section-desc {
    font-size: 16px;
    text-align: left;
    letter-spacing: 0.5px;
  }
  .section-pricing .pricing-grid {
    display: none;
  }
  .section-pricing .price-swiper {
    display: block;
    padding-bottom: 45px;
    margin-top: 25px;
  }
  .section-pricing .price-swiper .swiper-wrapper {
    justify-content: unset;
  }
  .section-pricing .swiper-pagination-bullet {
    background-color: white;
    --swiper-pagination-bullet-size: 12px;
    --swiper-pagination-bullet-horizontal-gap: 5px;
  }
  .section-pricing .swiper-pagination-bullet-active {
    background-color: var(--semi02-blue-bg);
  }
  .price-card {
    padding: 20px 15px;
    width: 100%;
    height: 500px;
  }
  .price-card .plan-badge {
    font-size: 18px;
    width: 100%;
  }
  .price-card .plan-desc {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .price-card .plan-price-val {
    font-size: 40px;
  }
  .price-card .plan-list {
    font-size: 16px;
  }
  .price-card .check_icon_orange {
    left: 0;
    margin-right: 13px;
  }
  .price-note {
    font-size: 16px;
    margin-top: 10px;
    text-align: left;
    font-weight: 500;
  }
  /* スライド1枚あたりの幅を固定解除 */
  .price-swiper .swiper-slide {
    width: auto;
    /* 3枚並び（gap分を引く） */
    height: auto;
  }
  .section-voice {
    padding: 40px 0px 50px 0px;
    background-color: var(--semi02-blue-bg);
  }
  .section-voice .section-title {
    margin-bottom: 23px;
  }
  .section-voice .section-desc {
    font-size: 16px;
    padding: 0 25px;
    letter-spacing: 0.6px;
  }
  .section-voice .voice-swiper {
    height: auto;
    padding: 23px 25px 0px 25px;
    margin-top: 0;
  }
  .voice-card {
    height: 797px;
    border-radius: 30px;
    padding: 40px 26px 30px 26px;
  }
  .voice-img {
    width: 140px;
    height: 140px;
  }
  .voice-title {
    font-size: 18px;
  }
  .voice-text {
    font-size: 16px;
  }
  .voice-author {
    font-weight: 400;
  }
  .voice-swiper .swiper-button-next,
.voice-swiper .swiper-button-prev {
    display: block !important;
  }
  .voice-swiper .swiper-button-next {
    right: -3px;
  }
  .voice-swiper .swiper-button-prev {
    left: -3px;
  }
  .voice-swiper .swiper-pagination {
    display: none !important;
  }
  .section-flow {
    padding: 43px 0px 50px 0px;
  }
  .section-flow .section-title {
    margin-bottom: 20px;
  }
  .section-flow .section-title .t-primary-blue {
    font-size: 24px;
  }
  .section-flow .slash {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 25px;
  }
  .section-flow .slash::before, .section-flow .slash::after {
    height: 2px;
  }
  .section-flow .slash::before {
    left: -30px;
  }
  .section-flow .slash::after {
    right: -30px;
  }
  .section-flow .slash .slash-02 {
    text-align: center;
  }
  .section-flow .slash .slash-02 span:first-child,
.section-flow .slash .slash-02 span:nth-child(2) {
    font-size: 20px;
  }
  .section-flow .slash .slash-02::before, .section-flow .slash .slash-02::after {
    top: 67%;
    height: 2px;
  }
  .section-flow .slash .slash-02::before {
    left: -40px;
  }
  .section-flow .slash .slash-02::after {
    right: -40px;
  }
  .section-flow .container {
    max-width: 100%;
  }
  .section-flow .flow-swiper {
    display: block;
    margin: 20px auto 0px auto;
  }
  .section-flow .section-desc {
    font-size: 16px;
    text-align: left !important;
  }
  .flow-item {
    flex-direction: column;
    gap: 15px;
    height: 510px;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
  }
  .flow-swiper .swiper-wrapper {
    display: flex;
    padding-bottom: 30px;
  }
  .flow-swiper .swiper-slide {
    width: auto;
  }
  .flow-swiper .swiper-pagination-bullet {
    background-color: white;
    opacity: unset;
  }
  .flow-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-blue);
  }
  .flow-img {
    width: 100%;
    height: 200px;
  }
  .flow-step {
    font-size: 16px;
  }
  .flow-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .flow-desc {
    font-size: 14px;
    font-weight: 500;
  }
  .section-faq {
    padding: 42px 0px 0px 0px;
  }
  .section-faq .container {
    padding: 0;
  }
  .section-faq .section-title {
    margin: 0px 0px 24px 0px;
  }
  .section-faq .section-title .t-primary-blue {
    font-size: 24px;
  }
  .faq-summary {
    padding: 15px;
  }
  .faq-item {
    margin-bottom: 3px;
  }
  .faq-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }
  .faq-q {
    font-size: 24px;
    margin-right: 15px;
    top: unset;
  }
  .faq-icon {
    font-size: 24px;
  }
  .faq-item[open] .faq-summary::after {
    font-size: 24px;
  }
  .faq-content {
    padding: 20px 20px 20px 52px;
    font-size: 14px;
    font-weight: 500;
  }
  .section-form {
    padding: 41px 0px 50px 0px;
  }
  .section-form input[name=username],
.section-form input[name=furigana],
.section-form input[name=email],
.section-form input[name=tel] {
    width: 100%;
  }
  .section-form .section-title {
    margin-bottom: 30px;
  }
  .form-desc {
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .form-group {
    margin-bottom: 17px;
  }
  .form-group:nth-last-child(2) {
    margin-bottom: 32px !important;
  }
  .form-label {
    font-size: 14px;
    margin-right: 5px;
  }
  .form-submit-btn {
    font-size: 16px;
    padding: 12px 40px;
    margin: 29px auto 0;
    padding: 20px 64px;
  }
  .badge-req {
    font-size: 11px;
    border-radius: 8px;
  }
  .section-final-contact {
    padding: 40px 0;
  }
  .final-phone-number {
    font-size: 36px;
  }
  .final-phone-icon {
    font-size: 36px;
  }
  .final-cta-text {
    font-size: 15px;
  }
  .final-btn {
    font-size: 16px;
    padding: 15px 30px;
  }
  .final-btn .material-icons-outlined {
    font-size: 20px;
  }
  footer {
    padding: 15px 0px 30px 0px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
    margin-bottom: 17px;
  }
  .footer-brand {
    order: 2;
    font-size: 13px;
  }
  .footer-brand .footer-logo {
    width: 160px;
    height: auto;
    margin: 0 auto 13px auto;
  }
  .footer-addr {
    font-size: 13px;
  }
  .footer-links {
    gap: 10px;
    font-size: 11px;
    order: 1;
    margin-bottom: 40px;
    /* リンクの間に縦線を入れる */
  }
  .footer-links a {
    font-size: 12px;
    text-decoration: none;
    position: relative;
    padding: 0 10px;
  }
  .footer-links a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    color: black;
    font-size: 1em;
  }
  .copyright {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.6px;
  }
  .section-box-image img {
    height: 111px;
  }
}