/* common/common.css */
/* 
button
section-title
pc-only
sp-only
共通アニメーション
 */

/* ベース */
html,
body {
  overflow-x: hidden;
}

html{
  scroll-behavior: smooth;
} 

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}


a {
  color: inherit;
  text-decoration: none;
}
.inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
}
.inner-nopadding{
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
.text-center {
  text-align: center;
}
.sr-only,
.case-study__title .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* レスポンシブ */
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}
.sp-br {
  display: inline;
}

/* フォント */
.font-ZenMaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.Roboto {
  font-family: "Roboto", sans-serif;
}
.font-15px {
  font-size: 15px;
}

.font-16px {
  font-size: 16px;
}

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

.font-24px {
  font-size: 24px;
}

.font-32px {
  font-size: 32px;
}

.font-36px {
  font-size: 36px;
}
.font-48px {
  font-size: 48px;
}

.cl-orange {
  color: #fb8b18;
}

.cl-blue {
  color: #379faa;
}
/* セクションタイトル */
.section-heading {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #379faa;
  z-index: 1;
  letter-spacing: 5%;
}
.section-heading::before {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 5%;
  font-size: 48px;
  font-weight: 700;
  color: #e5f4f5;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;

  z-index: -1;
}

/* アンダーライン */
.under-line {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.under-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.35em;
  background: #ffff66;
  z-index: -1;
}
@media screen and (min-width: 769px) {
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
.sp-br {
  display: none;
}
.section-heading {
  font-size: 40px;
}
.section-heading::before{
  font-size: 96px;
}
.inner{
    transform: translateX(-11px);
}

}


/* layout/header.css */
.header {
  position: relative;
  height: 45px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.header__logo {
  width: 150px;
}
.header__menus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  margin-inline: 20px;
}
/* ハンバーガー */
.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 3px;
  width: 38px;
  height: 3px;
  background: #333;
  border-radius: 999px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 8px;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 8px;
}
/* ハンバーガーopen */
.hamburger.show span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.show span:nth-child(2) {
  opacity: 0;
}

.hamburger.show span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
/* ナビゲーション */
.header__nav {
  background-color: #e5f4f5;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
}
.header__nav .header__logo {
  margin: 15px 0 0 20px;
  width: 150px;
}
.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin-top: 32px;
  font-size: 20px;
}
.header__cta-button {
  display: flex;
  background-color: #fb8b18;
  color: #fff;
  margin-inline: auto;
  justify-content: center;
  padding-inline: 12px;
  margin-block: 24px 32px;
  padding-bottom: 15px;
  padding-top: 21px;
  border-radius: 10px;
  font-size: clamp(16px, 5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  width: min(315px, calc(100% - 40px));
  height: 72px;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}
.header__cta-button::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;

  background-image: url("../images/common/icon-download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  margin-left: 6px;
  flex-shrink: 0;
}
.header__cta-button:hover,
.header__cta-button:focus-visible {
  transform: translateY(-2px);
}
.header__list li {
    transition: opacity 0.3s ease;
  }
.header__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 8px;
}
  .header__list li:hover,
  .header__list li:focus-visible {
    opacity: 0.8;
  }

body.is-menu-open {
  overflow: hidden;
}

.header__nav.show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

}
.hamburger.show{
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1001;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 200px;
    margin-top: -4px;
  }
  .header__menus {
    margin-inline: 0;
    display: flex;
  }
  .header__logo img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: 80px;
  }

  .header__list li{
    font-size: 16px;
    margin-top: -7px;
  }
  .header__nav {
    display: block;
    position: static;
    width: auto;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .header__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-right: 79px;
    font-weight: 500;
    letter-spacing: 4%;
    margin-top: 0;
  }

  .sp-only,
  .hamburger {
    display: none;
  }
}


/* content/download-cta.css */
.download-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 0;
  border-radius: 12px;
  background: #f87808;
  box-shadow: 0 5px 0 #b95d0d, 0 11px 18px rgb(89 51 19 / 17%);
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.download-cta:hover,
.download-cta:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 5px 0 #b95d0d, 0 13px 22px rgb(89 51 19 / 23%);
}

.download-cta:focus-visible {
  outline: 3px solid #333;
  outline-offset: 4px;
}

.download-cta__badge {
  position: absolute;
  top: -15px;
  left: 22px;
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 29px;
  padding: 2px 12px;
  border: 2px solid #f87808;
  border-radius: 999px;
  background: #fff;
  color: #e76800;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.download-cta__icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
}

.download-cta__label {
  display: block;
  min-width: 0;
}

@media (max-width: 767px) {
  .download-cta {
    gap: 9px;
    padding: 14px 13px;
    border-radius: 8px;
  }

  .download-cta__badge {
    top: -12px;
    left: 12px;
    min-width: 54px;
    min-height: 23px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .download-cta__icon {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 360px) {
  .download-cta {
    gap: 5px;
    padding-inline: 9px;
  }

  .download-cta__icon {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 340px) {
  .download-cta__label span {
    display: block;
  }
}


/* content/fv.css */
/* FV: supplied background and actual Instagram screenshots in CSS phone frames. */
.fv {
  position: relative;
  overflow: hidden;
  background: #f7feff url("../images/fv/background.svg") center / cover no-repeat;
  color: #333;
}

.fv__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: clamp(620px, 50vw, 720px);
  margin-inline: auto;
}

.fv__copy {
  position: relative;
  z-index: 1;
  width: 56%;
  padding: clamp(64px, 6vw, 96px) 0 130px clamp(40px, 7.5vw, 94px);
}

.fv__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(53px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.fv__title-line {
  display: block;
}

.fv__accent,
.fv__title-result {
  color: #009aa6;
}

.fv__accent {
  position: relative;
}

.fv__accent::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 0;
  bottom: 0.02em;
  height: 0.11em;
  border-radius: 999px;
  background: #a9edf0;
  z-index: -1;
}

.fv__title-result {
  display: block;
  font-size: 1.48em;
  line-height: 1.22;
}

.fv__service {
  margin-top: clamp(8px, 1.5vw, 24px);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.fv__service-line {
  display: block;
}

.fv__phones {
  position: absolute;
  z-index: 1;
  top: 6.5%;
  right: 8%;
  width: 41%;
  max-width: 525px;
  aspect-ratio: 674 / 726;
  margin: 0;
}

.fv__phone {
  position: absolute;
  box-sizing: border-box;
  width: 44%;
  overflow: hidden;
  border: clamp(3px, 0.5vw, 7px) solid #171c21;
  border-radius: clamp(16px, 2.2vw, 28px);
  background: #fff;
  box-shadow: 0 0 0 2px #a1a8ad, 0 14px 28px rgb(0 25 38 / 20%);
}

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

.fv__phone--reel {
  z-index: 2;
  top: 1%;
  left: 7%;
  transform: rotate(-7deg);
}

.fv__phone--profile {
  z-index: 1;
  top: 7%;
  right: 7%;
  transform: rotate(6deg);
}

@media (min-width: 950px) {
  .fv__inner {
    min-height: clamp(600px, calc(30vw + 315px), 720px);
  }

  .fv__copy {
    padding-top: clamp(100px, calc(200px - 6vw), 130px);
    padding-left: clamp(94px, 11.4vw, 144px);
  }

  .fv__phones {
    top: calc(clamp(6.5%, calc(18.5% - 1vw), 9%) - clamp(0px, calc(20vw - 230px), 20px));
    right: 12%;
  }
}

.fv__cta {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 4.3%;
  width: min(44%, 560px);
  min-height: clamp(72px, 5.2vw, 82px);
  font-size: clamp(15px, 1.65vw, 21px);
  transform: translateX(-50%);
}

@media (min-width: 768px) and (max-width: 949px) {
  .fv {
    background: #f7fafb url("../images/fv/background-tablet.svg") center / cover no-repeat;
  }

  .fv__inner {
    min-height: clamp(580px, 72vw, 675px);
  }

  .fv__copy {
    padding: clamp(80px, 10.6vw, 100px) 0 105px 4vw;
  }

  .fv__title {
    font-size: clamp(58px, 7.6vw, 70px);
    line-height: 1.23;
  }

  .fv__title-result {
    font-size: 1.44em;
  }

  .fv__service {
    margin-top: 18px;
    font-size: clamp(33px, 4vw, 38px);
    line-height: 1.25;
  }

  .fv__service-line--name {
    font-size: 1.08em;
  }

  .fv__phones {
    top: calc(3% + clamp(36px, 5vw, 48px));
    right: 4%;
    width: 46%;
  }

  .fv__cta {
    width: 51%;
  }
}

@media (max-width: 767px) {
  .fv {
    background: #fff url("../images/fv/background-sp-clean.svg") center top / cover no-repeat;
  }

  .fv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 36px 20px 22px;
  }

  .fv__copy {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .fv__title {
    font-size: clamp(28px, 8.7vw, 50px);
    line-height: 1.23;
  }

  .fv__title-result {
    display: inline;
    font-size: 1.35em;
  }

  .fv__title-comma {
    display: none;
  }

  .fv__accent {
    font-size: 1.06em;
  }

  .fv__accent,
  .fv__title-result {
    color: #239da5;
  }

  .fv__service {
    margin-top: 14px;
    font-size: clamp(20px, 6.15vw, 32px);
    line-height: 1.28;
  }

  .fv__service-line--name {
    font-size: 1.17em;
  }

  .fv__phones {
    position: relative;
    top: auto;
    right: auto;
    width: min(76vw, 430px);
    aspect-ratio: 296 / 301;
    margin: -4px auto -4px;
  }

  .fv__phone {
    width: 41%;
  }

  .fv__phone--profile {
    right: 4%;
  }

  .fv__cta {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 560px);
    min-height: 58px;
    margin-top: 0;
    font-size: clamp(12px, 3.7vw, 19px);
    transform: none;
  }
}

@media (max-width: 600px) {
  .fv__inner {
    padding-bottom: 19px;
  }

  .fv__phones {
    margin-top: -4px;
  }

  .fv__cta {
    padding-inline: 12px;
  }
}

@media (max-width: 360px) {
  .fv__inner {
    padding-inline: 16px;
  }

  .fv__phones {
    margin-top: 8px;
  }
}

@media (max-width: 340px) {
  .fv__cta {
    font-size: 15px;
  }
}

@media (min-width: 361px) and (max-width: 767px) {
  .fv__phones {
    margin-top: 12px;
  }
}


/* content/case-study.css */
.case-study__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}
.case-study__heading::before{
  content: "CASE STUDY";
  letter-spacing: 5%;
}
.case-study__logo{
  margin: 0 0 1px 0;
  width: 180px;
}
.case-study__title {
  font-size: 32px;
  letter-spacing: 5%;

}
.case-study__title span{
  font-size: 24px;
}
.case-study__copy{
  margin-top: 15px;
  line-height: 1.5;
  font-size: 15px;
}
@media (max-width: 359px) {
  .case-study__logo {
    width: 145px;
  }
  .case-study__title {
    font-size: 27px;
  }
  .case-study__title span {
    font-size: 22px;
  }
  .case02 .case-study__result {
    font-size: 20px;
  }
  .case02 .case-study__result .font-32px {
    font-size: 24px;
  }
  .case02 .case-study__result .font-36px {
    font-size: 26px;
  }
  .case02 .case-study__result .cl-orange {
    white-space: nowrap;
  }
}
/* カード */
.case-study__card {
  position: relative;
  margin-top: 80px;
}

.case-study__tag {
  position: absolute;
  top: -40px;
  left: 0;
  line-height: 1.5;
  display: block;
  padding-block: 6px;
  text-align: center;
  background: #379FAA;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 5px 5px 0 0;
  width: 172px;
}

.case-study__card-body {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #379FAA;
  border-right: 2px solid #379FAA;
  border-top: 2px solid #379FAA;
  border-bottom: none;
  border-radius: 0 12px 12px 12px;
  background: #fff;
  overflow: hidden;
}
.case-study__result{
  margin-top: 19px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 5%;
  line-height: 1.2;
}
.result span {
  display: inline-block;
  vertical-align: baseline;
}
.case-study__image{
  display:block;
  margin:20px auto -30px;
  position: relative;
  z-index:4;
  width: 148px;
}
.case-study__text{
  flex: 1;
  background-color: #379FAA;
  padding-top: 54px;
  padding-bottom: 28px;
  padding-inline: 20px;
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
}

.case02-padding{
  padding-top: 11px;
}
.padding54{
  padding-bottom: 54px;
}
/* 大きめスマホ */
@media (min-width: 576px) and (max-width: 795px) {
.case-study__cards{
  display: flex;
  flex-direction: column;
  margin-inline: 80px;
}

}


/* PC */
@media (min-width: 795px) {
.case-study__logo{
  width: 260px;

}
.case-study__title{
  font-size: 40px;
  margin-top:5px;

}
.case-study__title span{
  font-size: 36px;
}
.case-study__heading::before{
  content: "CASE STUDY";
  top: -60px;
  left: 50.5%
}
.case-study__heading{
  margin-top: 94px;

}
.case-study__copy{
  font-size: 20px;
  margin-top: 25px;
  margin-left: 17px;
}
/* カード */
.case-study__cards{
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 2vw, 30px);
  margin-top: 43px;
  margin-left: 0;
}
.case-study__card{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.case-study__card-body{
  flex: 1;
  min-height: 0;
  width: 100%;
}
.case-study__result{
  margin-top: 17px;
}

.case01 .case-study__result span{
letter-spacing: -0.8%;
}
.case-study__text{
  padding-bottom: 32px;
  letter-spacing: -0.5%;
  position: relative;
  z-index: 1;
}
.case01 .case-study__text {
  padding-bottom: 32px;
}
.case02-padding{
  padding-top: 15px;
  padding-bottom: 6px;
}
.case02 .case-study__text{
  height: auto;
}
}
/* タブレット のみ*/
@media (min-width: 795px) and (max-width: 1050px) {
  .case-study__result {
    font-size: clamp(18px, 2.2vw, 22px);
  }
  .case-study__result .font-32px {
    font-size: clamp(26px, 3vw, 30px);
  }
  .case-study__result .font-36px {
    font-size: clamp(28px, 3.3vw, 34px);
  }
  .case-study__card-body{
  height: auto;
  width: auto;
  flex: 1;
}
.case-study__cards{
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-left: 10px;
}
.case-study__text{
  height: auto;
}
}


/* content/problem.css */
.problems {
  background-image: url(../images/SP/problem_sp_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 920px;
}
.problems__visual {
  margin-top: 60px;
  padding-top: 50px;
}
.problems__img img {
  width: 200px;
}
.problems__title {
  font-size: 22px;
  letter-spacing: 5%;
}
.problems__title span {
  font-size: 32px;
  position: relative;
}
.problems__title span::before {
  content: "・・・";
  position: absolute;
  left: 51%;
  top: -20px;
  transform: translateX(-50%);
  letter-spacing: 0.5rem;
  font-size: 25px;
}
/* 吹き出し */
.problems__item {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 999px;
  margin-block: 20px;
  padding-block: 18px;
  width: 87%;
  height: 141px;
  line-height: 1.7;
}

.problems__item-text {
  margin-inline: 32px;
  margin-block: 0;
  line-height: 1.7;
  font-weight: 500;
  text-wrap: balance;
}
.problems__item-text .cl-blue{
  font-weight: 700;
}
.problems__item::after {
  content: "";
  position: absolute;
  bottom: -29px;
  width: 40px;
  height: 40px;
}
.problems__item-1::after {
  background: url("../images/common/problem__bubble--center__after.svg")
    center / contain no-repeat;
  left: 50%;
  bottom: -32px;
}
.problems__item-2::after {
  background: url("../images/common/problem__bubble--left_after.svg")
    center / contain no-repeat;
  left: 33%;
  width: 32px;
  height: 32px;
  bottom: -23px;
}
.problems__item-3::after {
  background: url("../images/common/problem__bubble--right__after.svg")
    center / contain no-repeat;
  left: 55%;
  width: 32px;
  height: 32px;
  bottom: -23px;
}
.problems__item-1 {
  margin-left: 72px;
  margin-top: 35px;
  max-width: 369px;
  width: 78%;
}
.problems__item-2 {
  margin-left: 0px;
  margin-top: 50px;
  max-width: 348px;
  width: 88%;
}
.problems__item-3 {
  margin-left: 40px;
  margin-top: 42px;
  max-width: 366px;
  width: 87.5%;
}
/* ーーーーーー */
.problems__text {
  margin-top: 21px;
  line-height: 1.5;
  font-weight: 500;
}
/* 大きめスマホ */
@media (min-width: 476px) and (max-width: 767px) {
  .problems__item {
    width: 300px;
  }
}

@media (max-width: 767px) {
  .problems__item .cl-blue {
    display: block;
  }
  .problems__item .cl-blue .sp-br,
  .problems__item .cl-blue + br {
    display: none;
  }
  .problems__item {
    width: min(100%, 420px);
    max-width: none;
    height: auto;
    min-height: 141px;
    margin-inline: auto;
    justify-content: center;
  }
  .problems__item-text {
    width: max-content;
    max-width: calc(100% - 48px);
    margin-inline: 0;
  }
  .problems__item::after {
    left: 50%;
    bottom: -32px;
    width: 40px;
    height: 40px;
    transform: translateX(-50%);
    background: url("../images/common/problem__bubble--center__after.svg") center / contain no-repeat;
  }
}

@media (max-width: 360px) {
  .problems__title {
    font-size: 18px;
    letter-spacing: 0;
  }
  .problems__title span {
    font-size: 26px;
  }
}



/* PC タブレット*/
@media (min-width: 768px) {
  .problems {
    background-image: url(../images/PC/problem_pc_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 970px;
  }

  .problems__visual {
    margin-top: 100px;
    padding-top: 67px;
  }

  /* 吹き出し */
  .problems-pc {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 8vw, 120px);
  }
  .problems__item {
    width: 420px;
    max-width: 420px;
    height: 162px;
    padding-block: 18px;
  }
  .problems__title {
    font-size: 36px;
    margin-left: 32px;
  }
  .problems__title span {
    font-size: 48px;
  }
  .problems__item-text {
    flex: 1;
    min-width: 0;
    margin-inline: 24px;
    font-size: 20px;
    text-wrap: initial;
    text-align: center;
  }
  .problems__item-text .cl-blue {
    white-space: nowrap;
  }
  .problems__title span::before {
    content: "・・・";
    position: absolute;
    left: 53%;
    top: -21px;
    transform: translateX(-50%);
    letter-spacing: 1rem;
    font-size: 35px;
  }
  .problems__item-1 {
    margin-top: 63px;
    margin-inline: auto;
    padding-block: 18px;
    transform: none;
  }
  .problems__item-1::after {
    left: 59%;
  }
  .problems__item-2 {
    margin-top: 0px;
    margin-left: 0;
    transform: none;
  }
  .problems__item-2::after {
    left: 46%;
  }
  .problems__item-3 {
    margin-top: 15px;
    margin-left: 0;
    transform: none;
    letter-spacing: -1.2%;
  }
  .problems__item-3::after {
    left: 45%;
  }
  .problems__img img {
    width: 399px;
    margin-top: -45px;
    transform: translateX(10px);
  }
  .problems__text {
    font-size: 24px;
    margin-top: 41px;
    padding-left: 15px;
  }
  .problems__item::after {
    content: "";
    position: absolute;
    bottom: -35px;
    width: 46px;
    height: 51px;
  }
}
/* タブレット のみ*/
@media (min-width: 768px) and (max-width: 1023px) {
  .problems__item {
    height: auto;
  }
  .problems__item-text {
    margin-inline: 20px;
    font-size: 16px;
  }
  .problems-pc {
    gap: 20px;
  }
  .problems__item-2,
  .problems__item-3 {
    width: calc((100% - 20px) / 2);
    max-width: none;
  }
}


/* content/strengths.css */
.strengths {
  margin-top: 18px;
}
.strengths__title .cl-orange {
  font-size: 32px;
  line-height: 1.7;
  letter-spacing: 5%;
}
.strengths__title {
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 5%;
}
.strengths__text {
  max-width: 780px;
  margin: 20px auto 0;
  padding-inline: 16px;
  font-size: clamp(16px, 2.35vw, 18px);
  line-height: 1.7;
}
.strengths__text p {
  text-wrap: balance;
}
.strengths__text p + p {
  margin-top: 1em;
}
@media (max-width: 600px) {
  .strengths__title {
    text-wrap: balance;
  }
  .strengths__title .cl-orange {
    font-size: clamp(25px, 7vw, 32px);
  }
  .strengths__title .under-line {
    max-width: 100%;
    font-size: clamp(18px, 5.25vw, 24px);
    text-wrap: balance;
  }
}
.strengths__arrow {
  width: 60px;
  margin-top: 23px;
}
.strengths__message span {
  font-size: 20px;
}
.strengths__message .cl-orange {
  font-size: 24px;
}
.strengths__message strong {
  font-size: 24px;
}
.strengths__message {
  margin-top: 20px;
  font-weight: 700;
  position: relative;
  line-height: 1.8;
  text-wrap: balance;
}
@media (min-width: 400px) and (max-width: 500px) {
  .strengths__message .sp-br {
    display: inline;
  }
}
.strengths__message::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -2px;

  width: 19.7px;
  height: 19.7px;

  border-top: 1px solid #333;
  border-left: 1px solid #333;
}
.strengths__message::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0px;
  width: 19.7px;
  height: 19.7px;

  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
}
/* カード */
.strengths__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 58px;
}
.strengths__card {
  border: 2px solid #c5c5c5;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}
.strengths__card-label {
  display: block;
  width: fit-content;
  margin: -25px auto;
  font-size: 16px;
  padding: 10px 24px;
  background: #999;
  color: #fff;
  border-radius: 999px;
}
.strengths__card-img {
  margin-top: 66px;
  margin-inline: auto;
  width: 200px;
}
.strengths__card-list {
  line-height: 2;
  margin-block: 35px;
  list-style: none;
}
.strengths__card-list li {
  position: relative;
  padding-left: 27px;
  text-wrap: balance;
}
.list-x {
  font-weight: 500;
}
.strengths__card-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .52em;
  width: 15px;
  height: 15px;
  background-image: url("../images/common/VectorX.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.strengths__card-2 {
  border: 2px solid rgb(55, 159, 170);
  box-shadow: 3px 3px 5px rgba(55, 159, 170, 0.5);
}
.strengths__card-2 .strengths__card-label {
  background-color: #379faa;
  border-radius: 15px 0;
  font-size: 20px;
  padding-block: 5px 5px;
  margin: -22px auto;
}
@media (max-width: 359px) {
  .strengths__card-2 .strengths__card-label {
    font-size: 16px;
    padding-inline: 12px;
    white-space: nowrap;
  }
}
.list-v {
  color: #379faa;
  font-weight: 700;
}

.strengths__card-list .list-v::before {
  background-image: url("../images/common/VectorV-blue.svg");
}
.strengths__card-list {
  padding-inline: clamp(18px, 6vw, 46px);
}
.strengths__note {
  margin-top: 40px;
  margin-bottom: 60px;
  margin-inline: auto;
  width: min(calc(100% - 32px), 660px);
  font-size: 15px;
  line-height: 1.7;
  text-wrap: balance;
}
@media (max-width: 1023px) {
  .strengths__note {
    margin-bottom: 36px;
    font-size: clamp(15px, 2.35vw, 18px);
  }
}
/* 大きめスマホ */
@media (min-width: 470px) and (max-width: 680px) {
.strengths__cards {
max-width: 80%;
margin-inline: auto;
}
}

/* タブレット のみ*/
@media (min-width: 681px) and (max-width: 767px) {
  .strengths__cards {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .strengths__text {
    max-width: 900px;
    font-size: 20px;
  }
  .strengths__message span {
    font-size: 26px;
  }
  .strengths__message strong,
  .strengths__message .cl-orange {
    font-size: 30px;
  }
  .strengths__cards {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .list-x { line-height: 1.9; }
  .strengths__card-2,.strengths__card-1{
    flex:1;
  }
}

/* PC タブレット*/
@media (min-width: 1024px) {
  .strengths {
    margin-top: 36px;
  }
  .strengths__title .cl-orange {
    font-size: 48px;
  }
  .strengths__title {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 5%;
  }
  .strengths__title .under-line {
    font-size: 40px;
    transform: translateY(-7px);
  }
  .strengths__text {
    font-size: 20px;
    transform: translateY(-6px);
    letter-spacing: -1%;
  }
  .strengths__arrow {
    width: 98px;
  }
  .strengths__message {
    font-size: 32px;
    line-height: 1.5;
    transform: translateY(-6px);
  }
  .strengths__message span {
    font-size: 32px;
    letter-spacing: -1%;
  }
  .strengths__message strong {
    font-size: 32px;
  }
  .strengths__message .cl-orange {
    font-size: 36px;
  }
  .strengths__message::before {
    top: -10px;
    left: 165px;
    height: 40px;
    width: 40px;
  }
  .strengths__message::after {
    right: 146px;
    bottom: -10px;
    height: 40px;
    width: 40px;
  }
  .strengths__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 40px);
  } 
  .strengths__card {
    min-width: 0;
    margin-top: 5px;
  }
  .strengths__card-2 .strengths__card-label {
    font-size: 24px;
    transform: translateX(-2px);
  }
  .strengths__card-label {
    font-size: 20px;
    padding: 9px 24px;
  }
  .strengths__card-img {
    width: 300px;
  }
  .strengths__card-2 img{
    transform: translateY(-4px);
  }
  .strengths__card-img img {
    width: 100%;
  }
  .strengths__card-list {
    font-size: 20px;
    transform: translateY(-4px);
    margin-bottom: 30px;
  }
  .list-v, .list-x { line-height: 1.9; }
  .strengths__card-list li::before { width: 20px; height: 20px; top: .5em; }
  .strengths__card-list li { padding-left: 34px; }
  .strengths__note {
    width: min(calc(100% - 32px), 900px);
    margin-inline: auto;
    font-size: clamp(18px, 1.65vw, 22px);
    margin-top: 18px;
    padding-inline: 16px;
  }
}



/* content/features.css */
.features__sub-title {
  margin-top: 58px;
  font-weight: 500;
  line-height: 1.5;
}
.features__logo {
  flex: 0 1 auto;
  width: clamp(110px, 32vw, 180px);
  margin: 0;
}
.features__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-inline: 16px;
  font-weight: 700;
  margin-top: -4px;
}
.features__title {
  flex: 0 0 auto;
  font-size: clamp(18px, 4.5vw, 24px);
  letter-spacing: 4%;
  margin: 0;
  white-space: nowrap;
}
.features__title strong {
  font-weight: 400;
  font-size: clamp(36px, 9vw, 48px);
  margin-right: -5px;
  letter-spacing: 3%;
}
.features__title .under-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 15px;
  background: #ffff66;
  z-index: -1;
}
@media (max-width: 629px) {
  .features__heading {
    flex-wrap: wrap;
    column-gap: 4px;
    row-gap: 0;
    margin-top: 4px;
  }
  .features__logo { flex: 0 0 auto; width: clamp(110px, 31vw, 145px); }
  .features__title { flex: 0 1 auto; font-size: clamp(17px, 4.6vw, 21px); }
  .features__title strong { font-size: clamp(32px, 8vw, 38px); margin-right: 0; }
}
.features__text {
  margin: 18px auto 0;
  padding-inline: 20px;
  font-size: clamp(16px, 2.35vw, 18px);
  line-height: 1.5;
}
/* カード */
.features__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  margin-inline: 20px;
}
.features__card {
  border: 2px solid #379faa;
  border-radius: 10px;
  min-width: 0;
}
.features__card-title {
  margin: 8px 12px 0;
  line-height: 1.35;
  text-wrap: balance;
}
.features__card-title span {
  display: inline-block;
  max-width: 100%;
  text-wrap: balance;
}
.features__card-title .font-32px {
  font-size: clamp(19px, 2.2vw, 26px);
}
.features__card-title .font-20px {
  font-size: clamp(15px, 1.6vw, 18px);
}

.features__card-point {
  display: inline-block;
  margin-left: 6px;
  margin-top: 4px;
}
.features__image {
  margin-top: 20px;
}
.features__list {
  line-height: 2;
  margin-block: 22px 30px;
  margin-inline: 12px;
  list-style: none;
}
.features__list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  margin-top: 8px;
  text-wrap: balance;
}
.features__list .keep-word {
  white-space: nowrap;
}
.list02 li {
  margin-top: 10px;
}
.features__list li::before,
.list02 .features__item::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.5em;

  background-image: url("../images/common/VectorV.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 13px;
  height: 10px;
}
.list02 li::before {
  top: 0.5em;
}

.list03 li {
  padding-left: 43px;
}
.list03 li::before {
  left: 1.4em;
}
.features__list .cl-orange {
  font-weight: 700;
}
.features {
  margin-bottom: 60px;
}

/* タブレットのみ */
@media (min-width: 630px) and (max-width: 949px) {
.features__cards {
  width: min(560px, calc(100% - 40px));
  margin-inline: auto;
}
}
/* PC タブレット*/
@media (min-width: 950px) {
  .features__sub-title {
    font-size: 24px;

  }
  .features__heading {
    gap: 20px;
}
  .features__logo {
    width: 240px;
  }
  .features__title {
    font-size: 32px;
  }
  .features__title span {
    font-size: 36px;
    margin-left: -3px;
  }
  .features__title strong {
    font-size: 64px;
  }
  .features__text {
    font-size: 20px;
    margin-top: 36px;
  }
  .features__cards {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
  }
  .features__card {
    flex: 1;
    max-width: 350px;
  }
  .features__card-title {
    min-height: 96px;
  }
  .features__list {
    margin-inline: 0px;
  }
  .features__list li {
    position: relative;
    padding-left: 48px;
  }
  .features__list li::before {
    content: "";
    position: absolute;
    left: 2em;
    top: 0.5em;
  }
  .list02 li {
    padding-left: 23px;
    line-height: 1.4;
  }
  .list02 li::before{
    content: "";
    position: absolute;
    left: 0.4em;
    top: 0.5em;
  }
.list03 li{
  line-height: 1.5;
  padding-left: 61px;
}

.list03 li::before {
  left: 3em;
}
}
@media (min-width: 950px) and (max-width: 1149px) {
  .features__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 920px;
    margin-inline: auto;
  }
  .features__card {
    max-width: none;
  }
  .features__card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 20px) / 2);
    justify-self: center;
  }
}




/* content/price.css */
.price__title::before {
  content: "PRICE";
  font-size: 64px;
  top: -38px;
}
.price__title {
  margin-top: 56px;
  letter-spacing: 5%;
}
.price__text {
  margin-top: 13px;
  line-height: 1.5;
}

.price__table-wrapper {
  margin-top: 37px;
  width: calc(100% - 32px);
  max-width: 960px;
  margin-inline: auto;
}
.price__scroll-hint {
  display: none;
}
.price__table {
  width: 100%;
  margin-inline: auto;
  table-layout: fixed;
}
/* 上の表題 */
.price__plan {
  background-color: #379faa;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 15px;
  padding-block: 9px;
  width: 95px;
  line-height: 1.6;
  height: 64px;
  border-right: 1px solid #fff;
}
.price__plan-orange {
  background-color: #fb8b18;
  border-radius: 0;
  position: relative;
}
.price__plan-orange::after {
  content: "";
  position: absolute;
  background-color: #fb8b18;
  height: 8px;
  width: 100%;
  left: 0;
  top: -6px;
  border-radius: 10px 10px 0 0;
}
.price__plan-orange::before {
  content: "";
  position: absolute;
  background: url(../images/common/recommend.svg) center / contain no-repeat;
  top: -28px;
  left: 4px;
  width: 89px;
  height: 34px;
  z-index: 2;
}

/* 左の表題 */
.price__category {
  vertical-align: middle;
  font-size: 15px;
  font-weight: 400;
  width: 90px;
  line-height: 1.5;
}
.price__category div {
  background-color: #e5f4f5;
  display: block;
  box-sizing: border-box;
  position: relative;
  height: 48px;
  margin-left: 0px;
}
.category-bold {
  font-weight: 700;
}
.category-bold div {
  height: 64px;
  width: 90%;
  padding-top: 8px;
}
.price__category01 div {
  padding: 19px 6px;
}
.category-else {
  height: 48px;
  width: 90%;
  font-size: 13px;
  padding-top: 4px;
  font-weight: 500;
}
.else-center {
  padding-top: 12px;
  line-height: 1.7;
}
.category-bold div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%; /* 本体の右端からスタート */
  width: 11%; /* 本体幅の10% */
  height: 100%;
  background: #e5f4f5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.category-else::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%; /* 本体の右端からスタート */
  width: 10%; /* 本体幅の10% */
  height: 100%;
  background: #e5f4f5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/* 中身 */
.price__cell {
  font-size: 12px;
  line-height: 1.5;
}
.price__amount {
  margin-top: -8px;
}
.price__amount-note {
  margin-top: 2px;
}
.td-orange td {
  background-color: #fffbf8;
}
.price__cell--company strong {
  font-size: 15px;
}
/* border */

.price__cell {
  border-left: 1px solid #379faa;
}
.price__cell-orange {
  border-left: 2px solid #fb8b18;
  border-right: 2px solid #fb8b18;
}
.last-blue {
  border-bottom: 1px solid #379faa;
}
.last-orange {
  border-bottom: 2px solid #fb8b18;
}
.price__table {
  border-collapse: collapse;
  border-spacing: 0;
}
tr td {
  height: 52px;
}
.hi-90px {
  height: 90px;
}
.hi-74px {
  height: 74px;
}
/* ○ */
.price__circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #333;
  border-radius: 50%;
}
.price__circle-orange {
  border: 2px solid #fb8b18;
}
/* 終わりのテキスト */
.price__notes {
  font-size: 12px;
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 20px auto 0;
  line-height: 1.5;
}
@media (min-width: 901px) {
  .price__notes {
    box-sizing: border-box;
    padding-left: 25px;
  }
}
.price {
  margin-bottom: 60px;
  overflow-x: clip;
}
/* 大きめスマホ */
@media (min-width: 400px) and (max-width: 813px) {
/* 上の表題 */
.price__plan {
  width: auto;
}
.category-bold div{
  padding: 19px 6px;
}
.category-else {
  padding-top: 11px;
}
}


/* PC */
@media (min-width: 813px) {
  .price__title::before {
    content: "PRICE";
    font-size: 96px;
    top: -60px;
  }
  .price__title {
    margin-top: 90px;
    font-size: 36px;
  }
  .price__text {
    font-size: 20px;
    margin-top: 34px;
  }
  /* テーブル */
  .price__table-wrapper {
    margin-top: 60px;
    margin-inline: auto;
  }
  .price__table {
    width: 100%;
    margin-inline: auto;
    table-layout: fixed;
  }
  /* 上の表題 */
  .price__plan {
    width: auto;
    height: 54px;
    font-size: 20px;
  }
  .price__plan-orange {
    font-size: 24px;
    padding-block: 4px 12px;
  }
  .price__plan-orange::before {
    top: -35px;
    left: 0px;
    width: 100%;
    height: 44px;
  }
  .price__plan-orange::after {
    height: 10px;
    width: 100%;
    left: 0;
    top: -9px;
    border-radius: 10px 10px 0 0;
  }
  /* 中身 */
  .price__cell--amount {
    height: 116px !important;
  }
  .price__amount {
    font-size: 16px;
    font-weight: 500;
    transform: translateY(-1px);
  }
  .price__amount span {
    font-size: 36px;
  }
  .price__amount-note {
    font-size: 15px;
    font-weight: 500;
  }
  .price__cell--company {
    height: 92px !important;
    font-size: 18px;
    font-weight: 700;
  }
  .price__cell--company span,
  .price__cell--company strong {
    font-size: 20px;
  }

  .price__cell {
    font-size: 16px;
    font-weight: 700;
    height: 72px;
  }
  .price__circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #333;
    border-radius: 50%;
  }
  .price__circle-orange {
    border: 2px solid #fb8b18;
  }
  /* 左の表題 */
  .price__blank,
  .price__category {
    vertical-align: middle;
    font-weight: 400;
  }
  .price__category div {
    height: 64px;
    margin-left: 25px;
  }
  .category-bold div {
    height: 64px;
    padding-top: 14px;
    font-weight: 700;
    font-size: 20px;
    width: 80%;
  }
  .category-else {
    font-size: 18px;
    font-weight: 500;
    padding-top: 16px;
    width: 80%;
  }
  .pc-else {
    padding-top: 6px;
  }

  .price__notes {
    font-size: 14px;
  }
}
/* タブレット */
@media (min-width: 813px) and (max-width: 1439px) {
    .price__plan {
    width: auto;
    height: 54px;
    font-size: 18px;
  }
  .price__table {
    width: 100%;
  }
}

@media (min-width: 1500px)  {
      .price__plan {
    width: auto;
    height: 54px;
    font-size: 18px;
  }

}

/* 20260917 追記: SP時に左の項目名が枠からはみ出して見切れるのを防ぐ */
@media (max-width: 812px) {
  .price__category .category-else {
    height: auto;
    min-height: 48px;
    padding-bottom: 4px;
  }
  .category-bold div {
    height: auto;
    min-height: 64px;
  }
}

@media (max-width: 680px) {
  .price__scroll-hint {
    display: block;
    width: calc(100% - 24px);
    margin: 24px auto -22px;
    color: #267f89;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
  }
}

@media (max-width: 900px) {
  .price__table-wrapper {
    width: calc(100% - 24px);
    overflow-x: auto;
    padding-top: 38px;
    scrollbar-width: auto;
    scrollbar-color: #379faa #e5f4f5;
  }
  .price__table-wrapper::-webkit-scrollbar {
    height: 10px;
  }
  .price__table-wrapper::-webkit-scrollbar-thumb {
    background: #379faa;
    border-radius: 999px;
  }
  .price__table-wrapper::-webkit-scrollbar-track {
    background: #e5f4f5;
  }
  .price__table {
    width: 900px;
    min-width: 900px;
  }
  .price__blank,
  .price__category {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 120px;
    min-width: 120px;
    background: #fff;
  }
  .price__category div {
    margin-left: 0;
  }
  .price__plan {
    width: 260px;
  }
  .price__cell {
    font-size: 15px;
  }
  .price__cell--company {
    font-size: 15px;
    font-weight: 600;
  }
  .price__amount-note {
    font-size: 13px;
  }
  .price__notes {
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .price__table {
    width: 660px;
    min-width: 660px;
  }
  .price__blank,
  .price__category {
    width: 90px;
    min-width: 90px;
  }
  .price__plan {
    width: 190px;
    font-size: 16px;
  }
  .price__cell,
  .price__cell--company {
    font-size: 14px;
  }
}

/* 比較表は小さな画面でも文字と記号を読み取れる大きさにする。表内だけ横スクロールさせる。 */
@media (max-width: 900px) {
  .price__table {
    width: 100%;
    min-width: 645px;
  }
  .price__blank,
  .price__category {
    width: 120px;
    min-width: 120px;
  }
  .price__plan {
    width: 175px;
    font-size: 18px;
  }
  .price__plan .sp-br {
    display: inline;
  }
  .price__category .sp-br {
    display: inline;
  }
  .price__category.category-bold div,
  .price__category .category-else {
    box-sizing: border-box;
    width: calc(100% - 14px);
    font-size: 16px;
    line-height: 1.35;
    align-content: center;
    margin-left: 0;
    padding: 6px 8px;
    text-align: center;
  }
  .price__category.category-bold div {
    min-height: 68px;
  }
  .price__category .category-else {
    height: 76px;
    min-height: 76px;
  }
  .price__table tbody tr:nth-child(n+4) > * {
    height: 76px;
  }
  .price__cell,
  .price__cell--company {
    font-size: 16px;
  }
  .price__amount {
    font-size: 18px;
  }
  .price__amount span {
    font-size: 30px;
  }
  .price__amount-note {
    font-size: 14px;
  }
  .price__circle {
    width: 28px;
    height: 28px;
    border-width: 2px;
    vertical-align: middle;
  }
  .price__circle-orange {
    border-width: 3px;
  }
  .price__dash {
    font-size: 22px;
  }
}

/* スマホでは比較表全体の高さを一画面程度に収め、プランは横方向に送る。 */
@media (max-width: 680px) {
  .price__scroll-hint { margin: 12px auto -16px; font-size: 12px; }
  .price__table-wrapper { margin-top: 20px; padding-top: 26px; }
  .price__table { min-width: 600px; width: 600px; }
  .price__blank, .price__category { width: 108px; min-width: 108px; }
  .price__plan {
    width: 164px;
    height: 50px;
    padding: 3px 2px;
    font-size: 14px;
    line-height: 1.25;
  }
  .price__plan-orange::before { top: -24px; height: 28px; }
  .price__table tr.hi-90px { height: 66px; }
  .price__table tr.hi-74px { height: 61px; }
  .price__table tbody tr > * { height: 43px !important; }
  .price__table tbody tr:first-child > * { height: 66px !important; }
  .price__table tbody tr:nth-child(3) > * { height: 61px !important; }
  .price__category.category-bold div,
  .price__category .category-else {
    display: block;
    box-sizing: border-box;
    width: calc(100% - 10px);
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 2px 3px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    align-content: normal;
  }
  .price__cell, .price__cell--company { font-size: 12px; line-height: 1.25; }
  .price__amount { margin-top: 0; font-size: 14px; }
  .price__amount span { font-size: 23px; }
  .price__amount-note { margin-top: 1px; font-size: 10px; line-height: 1.2; }
  .price__circle { width: 19px; height: 19px; }
  .price__circle-orange { border-width: 2px; }
  .price__dash { font-size: 18px; }
}
@media (max-width: 680px) and (max-height: 700px) {
  .price__plan { height: 43px; font-size: 13px; }
  .price__table tr.hi-90px { height: 57px; }
  .price__table tr.hi-74px { height: 52px; }
  .price__table tbody tr > * { height: 34px !important; }
  .price__table tbody tr:first-child > * { height: 57px !important; }
  .price__table tbody tr:nth-child(3) > * { height: 52px !important; }
  .price__category.category-bold div,
  .price__category .category-else { font-size: 11px; padding-block: 1px; }
  .price__cell, .price__cell--company { font-size: 11px; }
  .price__amount span { font-size: 21px; }
  .price__amount-note { font-size: 9px; }
  .price__circle { width: 16px; height: 16px; }
}


/* content/flow.css */
.flow__title::before{
  content: "FLOW";
  font-size: 64px;
  top: -38px;
}
.flow__title{
  letter-spacing: 5%;
}
.flow{
  background-color: #FFFBF8;
  padding-bottom: 60px;
}
.flow__heading{
  padding-top: 54px;
}
.section-heading span{
  position: relative;
  z-index: 1;
}
/* カード */
.flow__items{
  display: flex;
  flex-direction: column;
  gap: 33px;
  margin-top: 30px;
}
.flow__item{
  border: 2px solid #379FAA;
  background-color: #FFF;
}
.flow__item::after{
  content: "";
  display: block;
  width: 25px;
  height: 13px;
  margin: 0 auto -13px;

  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #379FAA;
}
.flow__item:last-child::after{
  display: none;
}
.flow__number{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background-color: #379FAA;
  color: #FFF;
  font-size: 20px;
}
.flow__number strong{
  font-size: 40px;
  font-weight: 400;
}
.flow__content{
  margin-block: 20px 20px;
  padding-inline: 11px;

}
.flow__item-title{
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
  text-wrap: balance;
}
@media (max-width: 359px) {
  .flow__item-title {
    font-size: 19px;
  }
}
.flow__item-text{
  font-size: 15px;
  padding-top: 7px;
  border-top: 1px dashed #379FAA;
  line-height: 1.71;
}
.flow__item-text .cl-orange{
  font-weight: 700;
}
  .inner{
    transform: translateX(0px);
}
/* 大きめスマホ のみ*/
@media (min-width: 400px) and (max-width: 779px) {

.sp-br {
  display: none;
}
.flow__item{
  width: 90%;
}
.flow__items{
  align-items: center;
}
}
/* 大きめスマホ のみ*/
@media (min-width: 780px) and (max-width: 1129px) {
  .flow__item{
  width: 80%;
}
.flow__items{
  align-items: center;
}
}

/* PC */
@media (min-width: 1130px) {
.flow__title::before{
  content: "FLOW";
  font-size: 96px;
  top: -60px;
}

.flow__title{
  font-size: 36px;
}
.flow__heading{
  padding-top: 92px;
  margin-left: 17px;
}
.flow__items{
  margin-top: 52px;
  margin-left: -11px;
  margin-right: -28px;
    gap: 23px;
    align-items: stretch;
}

.flow__item{
  display: flex;
  box-sizing: border-box;
  position: relative;
  gap: 14px;
}
.flow__number{
  flex-direction: column;
  gap: 0px;
  width: 150px;
  height: 176px;
  font-size: 32px;
  padding-block: 36px;
  box-sizing: border-box;
}
.flow__number strong{
  font-size: 64px;
}

.flow__item::after{
  content: "";
  position: absolute;

  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 17px solid #379FAA;
}
.flow__item-title{
  font-size: 24px;
  text-align: left;
  margin-top: 8px;
}
.flow__item-text{
  font-size: 20px;
  line-height: 1.5;
}
.flow__item02 .flow__item-title{
  margin-top: -5px;
}
.flow__item02 .flow__item-text{
  margin-top: -3px;
} 
}


/* content/steps.css */
.steps {
  background-color: #e5f4f5;
}
.steps__heading {
  padding-top: 41px;
}

.steps__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 5%;
}
.steps__title .cl-orange {
  font-size: 32px;
  font-weight: 700;
}
.steps__title-intro,
.steps__title-highlight {
  display: block;
}
.steps__title .steps__title-highlight {
  font-size: clamp(26px, 7vw, 32px);
  white-space: nowrap;
}
.steps__title strong {
  position: relative;
}
.steps__lead {
  margin-top: 19px;
  font-size: 15px;
  line-height: 1.6;
}
.steps__lead strong {
  font-weight: 700;
}
/* カード */
.steps__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.steps__item-number {
  display: block;
  width: fit-content;
  margin: -27px auto;
  font-size: 24px;
  padding: 11px 12.5px;
  background: #909090;
  color: #fff;
  border-radius: 999px;
}
.steps__item {
  border: 2px solid #909090;
  background-color: #fff;
  height: 231px;
  width: 200px;
}
.steps__item-title {
  margin-top: 30px;
  line-height: 1.5;
  font-size: 16px;
}
.steps__item-image {
  margin-top: 16px;
}
.steps__item-text {
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.5;
}
.steps__item-text .cl-orange {
  font-weight: 700;
  white-space: nowrap;
}
.steps__item-blue .steps__item-number {
  background-color: #379faa;
}
.steps__item-blue {
  border: 2px solid #379faa;
}
/* 帯 */
.steps__blue {
  display: block;
  position: relative;
  background-color: #379faa;
  color: #fff;
  writing-mode: vertical-rl;
  padding-block: 7.5px;
  padding-top: 70px;
  height: 1260px;
  text-orientation: upright;
}
.steps__blue::after {
  content: "";
  position: absolute;

  bottom: -25px;
  left: 0;
  width: calc(100% + 40px);

  width: 100%;
  height: 26px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #379faa;
}
.steps__gray {
  display: block;
  position: relative;
  background-color: #909090;
  color: #fff;
  writing-mode: vertical-rl;
  padding-block: 8.5px;
  padding-top: 70px;
  height: 473px;
  text-orientation: upright;
}
.steps__gray::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: calc(100% + 40px);

  width: 100%;
  height: 21px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #909090;
}
.steps__blue-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 31%;
}
.steps__blue-text {
  margin-top: 135px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 40%;
}
.steps__gray-text {
  letter-spacing: 18%;
}
/*　配置　 */
.steps__body {
  display: flex;
  justify-content: center;
  gap: 22.5px;
  margin-top: 40px;
}
/* 下のコメント */
.steps__note {
  font-size: 12px;
  margin-top: 20px;
  padding-bottom: 60px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .steps__body {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
    align-items: start;
  }
  .steps__blue {
    width: 32px;
    height: 100%;
    padding-block: 0;
  }
  .steps__blue-title {
    width: 32px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .steps__blue-text {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .steps__gray {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    padding-top: 0;
  }
  .steps__gray-text {
    margin: 0;
  }
  .steps__items {
    min-width: 0;
    width: 100%;
  }
  .steps__item {
    width: 100%;
    height: auto;
    min-height: 231px;
  }
  .steps__item-text {
    padding-inline: 8px;
  }
  .steps__blue::after,
  .steps__gray::after {
    left: 0;
    width: 0;
    border-left-width: 16px;
    border-right-width: 16px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .steps__body {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* PCタブレット */
@media (min-width: 768px) {
  .steps__title-intro,
  .steps__title-highlight {
    display: inline;
  }
  .steps__title-highlight {
    white-space: normal;
  }
  .steps__title {
    font-size: 36px;
    margin-top: 12px;
  }
  .steps__title .cl-orange {
    font-size: 36px;
  }
  .steps__lead {
    font-size: 20px;
    margin-top: 8px;
    transform: translateX(10px);
  }
  .steps__body {
    margin-top: 56px;
    margin-left: -9px;
    flex-direction: column;
  }
  .steps__item {
    height: auto;
    min-height: 231px;
    width: 200px;
    padding-bottom: 12px;
    flex-shrink: 0;
    position: relative;
  }
  .steps__items {
    margin-top: 20px;
    gap: 12px;
    flex-direction: row;
    align-items: stretch;
    order: 3;
  }
  .steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44%;
    right: -11px; /* カードとの距離を調整 */
    width: 12px;
    height: 12px;
    border-top: 3px solid #379faa;
    border-right: 3px solid #379faa;
    transform: translateY(-50%) rotate(45deg);
  }
  .steps__item:first-child::after {
    content: "";
    position: absolute;
    top: 44%;
    right: -11px; /* カードとの距離を調整 */
    width: 12px;
    height: 12px;
    border-top: 3px solid #909090;
    border-right: 3px solid #909090;
    transform: translateY(-50%) rotate(45deg);
  }
  .steps__blue {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    padding-block: 0;
    height: 50px;
    width: 100%;
    order: 1;
  }
  .steps__blue-title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .steps__gray-text {
    line-height: 1.5;
    letter-spacing: 0;
  }

  .steps__blue::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 1px);
    transform: translateY(-50%);
    height: 100%;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    border-left: 25px solid #379faa;
  }
  .steps__gray {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    padding-block: 0;
    height: 50px;
    width: 37.5%;
    order: 2;
  }
  .steps__gray::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 1px);
    transform: translateY(-50%);
    height: 100%;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    border-left: 25px solid #909090;
  }

  .steps__item-title {
    font-size: 18px;
  }
  .steps__item-text {
    font-size: 16px;
  }
  .steps__blue-title {
    text-align: center;
    font-size: 32px;
    margin: 0;
    line-height: 1.2;
  }
  .steps__gray-text {
    text-align: center;
    font-size: 20px;
    margin: 0;
  }
  .steps__blue-text {
    margin: 0 0 0 18px;
    font-size: 24px;
    letter-spacing: 1%;
  }
  .steps__note {
    font-size: 14px;
  }
  .steps__note {
    margin-left: 23px;
  }
}
/* タブレット のみ*/
@media (min-width: 768px) and (max-width: 1149px) {
  .steps__body{
    width: 98%;
    margin-inline: auto;
  }
  .steps__item {
    height: auto;
    width: calc((100% - 40px) / 3);
    flex: 0 0 calc((100% - 40px) / 3);
    position: relative;
  }
  .steps__items {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 44px 20px;
  }
  .steps__items .steps__item::after {
    display: none;
  }
  .steps__gray {
    width: 66%;
  }
  .steps__gray-text {
    font-size: 15px;
  }
}


/* content/operation.css */
.operation {
  margin-block: 52px 60px;
}
.operation__title {
  font-size: clamp(25px, 7.5vw, 32px);
  font-weight: 700;
  text-wrap: balance;
}
.operation__text {
  margin-top: 14px;
  line-height: 1.5;
}
/* カード */
.operation__cards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 53px;
  margin-inline: 20px;
}

.operation__card {
  --op-inset: 22px;
  background-color: #f3ffff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: relative;
}
.operation__card-month {
  display: block;
  box-sizing: border-box;
  width: min(295px, calc(100% - var(--op-inset) - 8px));
  margin: 31px 0 0 var(--op-inset);
  padding-left: 28px;
  padding-block: 0px 5px;
  background-color: #379faa;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.operation__card-month.text-center {
  text-align: left;
}
.operation__card-month span {
  font-size: 32px;
  font-weight: 700;
}
.operation__card-item-label {
  display: block;
  width: fit-content;
  max-width: calc(100% - var(--op-inset) - 8px);
  box-sizing: border-box;
  margin: 18px 0 0 var(--op-inset);
  padding: 6px 16px 6px 28px;
  background-color: #fff;
  border: 1px solid #379faa;
  border-radius: 10px 0;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.operation__card-item-label.text-center {
  text-align: left;
}
.operation__card-item-label span {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 360px) {
  .operation__card-item-label {
    padding-inline: 28px 8px;
    font-size: 14px;
    text-wrap: balance;
  }
  .operation__card-item-label span {
    font-size: 18px;
  }
  .operation__card-item-box > p:first-child {
    text-wrap: balance;
  }
  .operation__card-item-list li,
  .operation__box-list li {
    text-wrap: pretty;
  }
  .operation__narrow-phrase {
    display: block;
  }
}
.operation__card-item-list {
  list-style: none;
  margin: 12px var(--op-inset) 0;
  padding: 0;
  line-height: 1.7;
  font-weight: 500;
}
.operation__card-item-list li {
  position: relative;
  padding-left: 28px;
  text-wrap: balance;
}
.operation__card-item-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;

  background-image: url("../images/common/VectorV-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: 12px;
}
.op-card03 .operation__card-item-list li {
  padding-left: 28px;
}
.op-card03 ul li::after {
  left: 0;
  top: 0.6em;
}
.operation__card-item-box {
  background-color: #fffbf8;
  border: 1px solid #fb8b18;
  border-radius: 10px;
  margin-inline: 16px;
  margin-top: 14px;
  margin-bottom: 24px;
  padding: 14px 12px 16px;
  line-height: 1.6;
  font-weight: 500;
}
.operation__time {
  display: block;
  width: fit-content;
  margin: 7px 0 0 22px;
  padding: 3px 19px;
  background-color: #fff;
  border: 1px solid #fb8b18;
  border-radius: 999px;
  color: #fb8b18;
  font-size: 15px;
  font-weight: 700;
}
.operation__card-item-box > p:first-child {
  text-align: left;
  padding-left: 22px;
}
.operation__box-list {
  padding-left: 22px;
  margin: 10px 0 0;
  line-height: 1.6;
}
.operation__box-list li::marker {
  color: #fb8b18;
}
/* SP オンリー矢印 */
.operation__card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);

  width: 20px;
  height: 30px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid #379faa;
}
.operation__card:last-child::after {
  display: none;
}
/* 大きめスマホ */
@media (min-width: 576px) and (max-width: 1039px) {
  .operation__card {
    --op-inset: 40px;
  }
  .operation__cards {
  max-width: min(calc(100% - 40px), 560px);
  margin-inline: auto;
}
  .operation__card-item-box {
    margin-inline: 30px;
    padding-inline: 15px;
  }
}

/* PC タブレット*/
@media (min-width: 1040px) {
  .operation__title {
    font-size: 36px;
    letter-spacing: 5%;
    margin-left: 6px;
  }
  .operation__text {
    font-size: 20px;
    margin-top: 29px;
  }
  .operation__cards {
    margin-top: 61px;
    flex-direction: row;
    gap: 0;
  }
  .operation__card {
    --op-inset: 32px;
    flex: 1;
    min-width: 0;
    max-width: 360px;
    border-right: 1px dashed #379faa;
  }
  .operation__card:last-child {
    border: none;
  }
  .operation__card::after {
    display: none;
  }
  .operation__card-month {
    width: 82%;
    padding-inline: 39px 0;
    padding-block: 0 12px;
    height: 50px;
    margin-inline: 20.95px auto;
    position: relative;
  }
  .operation__card-month::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    height: 100%;
    border-bottom: 25px solid transparent;
    border-top: 25px solid transparent;
    border-left: 25px solid #379faa;
  }
  .operation__card-item-box {
    height: auto;
    min-height: 243px;
    width: auto;
    transform: none;
    margin-inline: 25px;
    margin-top: 9px;
  }
  .operation__card-item-list {
    transform: none;
    padding: 0;
    line-height: 1.7;
  }
  .operation {
    margin-bottom: 70px;
  }
}


/* content/contact.css */
.contact {
  background-color: #e5f4f5;
  padding-block: 60px 52px;
}
.contact__box {
  position: relative;
  background-color: #fff;
  padding-block: 32px 60px;
  padding-inline: 20px;
  z-index: 10;
}
.contact__box::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 8%;
  background: url("../images/PC/contact_pc_shadow.svg") center / 100% 100% no-repeat;

  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
}
.contact__title {
  font-size: clamp(26px, 8vw, 32px);
}
.contact__text {
  margin-top: 18px;
  line-height: 1.5;
  letter-spacing: 5%;
  text-wrap: balance;
}
.contact__form {
  margin-top: 38px;
}
.contact__group {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 8px;
}
.contact__label {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5%;
}
.contact__required {
  font-size: 10px;
  background-color: #fb8b18;
  color: #fff;
  border-radius: 5px;
  padding: 2px 4px;
  margin-left: 2px;
  line-height: 1.2;
  letter-spacing: 5%;
}
.contact__input {
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  height: 49px;
}
.contact__input::placeholder {
  color: #c5c5c5;
  font-size: 14px;
  padding-left: 16px;
  line-height: 1.2;
}
.contact__select {
  padding-inline: 16px;
  background-color: #fff;
}
.contact__textarea {
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  height: 200px;
}
.contact__textarea::placeholder {
  color: #c5c5c5;
  font-size: 14px;
  padding: 16px;
  line-height: 1.4;
}
.contact__note {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 5%;
}
.contact__privacy {
  text-decoration: underline;
  color: blue;
  transition: opacity 0.2s ease;
}
.contact__privacy:hover,.contact__privacy:focus-visible  {
  opacity: 0.8;
}
.contact__under {
  text-align: center;
}
.contact__under button {
  margin-top: 16px;
  font-size: clamp(16px, 5vw, 20px);
  width: min(315px, 100%);
  margin-left: 0;
}
.contact__under .cta__button-orange::after{
    top: 27px;
  right: 33px;
  width: 17px;
  height: 20px;
}
@media (max-width: 359px) {
  .contact__under button {
    font-size: 15px;
    padding-inline: 8px 28px;
  }
  .contact__under .cta__button-orange::after {
    right: 10px;
  }
}
/* 大きめスマホ */
@media (min-width: 767px) and (max-width: 1039px) {
  .contact__box{
    width: 80%;
    margin-inline: auto;
  }
}




/* PC */
@media (min-width: 1040px) {
  .contact {
    padding-block: 57px 60px;
  }
  .contact__box {
    margin-inline: auto;
    padding-top: 53px;
    padding-inline: 40px;
    width: 800px;
    transform: translateX(9px);
    z-index: 10;
  }
  .contact__box::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 40px;
    background: url("../images/PC/contact_pc_shadow.svg") center / 100% 100%
      no-repeat;
    bottom: -34px;
    z-index: -1;
  }
  .contact__title {
    font-size: 36px;
  }
  .contact__text,
  .contact__label {
    font-size: 20px;
  }
  .contact__group{
      gap: 10px;
  }
  .contact__note {
    font-size: 14px;
    margin-top: 37px;
  }
  .contact__input::placeholder {
    font-size: 16px;
  }
  .contact__textarea::placeholder {
    font-size: 16px;
  }
  .contact .cta__button {
    width: 380px;
    font-size: 20px;
    margin-left: 4px;
  }
  
.contact__under .cta__button-orange::after{
    top: 23px;
  right: 60px;
  width: 23px;
  height: 25px;
}
.contact__box::after {
    width: 770px;
    height: 50px;
    bottom: -40px;
}
}


/* content/lead-form.css */
.kanal-lf {
  --klf-accent: #fb8b18;
  --klf-accent-hover: #e27912;
  --klf-text: #333;
  --klf-border: #c5c5c5;
  max-width: 560px;
  margin: 0 auto;
  font-family: inherit;
  color: var(--klf-text);
  line-height: 1.7;
  text-align: left;
}
.kanal-lf * { box-sizing: border-box; }
.kanal-lf .klf-title { text-align: center; font-size: 1.25rem; font-weight: 700; margin: 0 0 4px; }
.kanal-lf .klf-lead { text-align: center; font-size: .9rem; margin: 0 0 16px; white-space: pre-line; }
.kanal-lf .klf-label { display: block; margin: 14px 0 4px; font-size: .92rem; font-weight: 700; }
.kanal-lf .klf-req { display: inline-block; margin-left: 8px; padding: 1px 9px; border-radius: 4px;
  background: var(--klf-accent); color: #fff; font-size: .7rem; font-weight: 700; vertical-align: 1px; }
.kanal-lf .klf-opt { display: inline-block; margin-left: 8px; padding: 1px 9px; border-radius: 4px;
  background: #e5e5e5; color: #555; font-size: .7rem; font-weight: 700; vertical-align: 1px; }
.kanal-lf .klf-input, .kanal-lf .klf-textarea {
  width: 100%; font: inherit; padding: 11px 12px;
  border: 1px solid var(--klf-border); border-radius: 8px; background: #fff; color: inherit; }
.kanal-lf select.klf-input { height: auto; }
.kanal-lf .klf-textarea { min-height: 90px; resize: vertical; }
.kanal-lf .klf-consent { font-size: .85rem; margin: 16px 0 12px; text-align: center; }
.kanal-lf .klf-consent input { margin-right: 6px; }
.kanal-lf .klf-btn { display: block; width: 100%; font: inherit; font-size: 1.05rem; font-weight: 700;
  color: #fff; background: var(--klf-accent); border: none; border-radius: 10px; padding: 15px; cursor: pointer; }
.kanal-lf .klf-btn:hover { background: var(--klf-accent-hover); }
.kanal-lf .klf-btn:disabled { opacity: .55; cursor: default; }
.kanal-lf .klf-err { color: #dc2626; font-weight: 700; margin-top: 12px; text-align: center; }
.kanal-lf .klf-done { text-align: center; padding: 24px 8px; }
.kanal-lf .klf-done-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 10px; }
.kanal-lf .klf-hp { position: absolute; left: -9999px; top: -9999px; }
.kanal-lf .klf-loading {
  color: #666;
  text-align: center;
  padding-block: 24px;
}

.contact .kanal-lf .klf-label {
  font-size: 16px;
  margin-top: 18px;
}
.contact .kanal-lf .klf-input,
.contact .kanal-lf .klf-textarea {
  min-height: 49px;
  border-radius: 5px;
}
.contact .kanal-lf .klf-input::placeholder,
.contact .kanal-lf .klf-textarea::placeholder {
  color: #999;
}
.contact .kanal-lf .klf-consent {
  margin-top: 32px;
}
.contact .kanal-lf .klf-consent a {
  color: blue;
  text-decoration: underline;
}
.contact .kanal-lf .klf-btn {
  width: min(100%, 380px);
  min-height: 64px;
  margin-inline: auto;
  box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
}

@media (min-width: 1040px) {
  .contact .kanal-lf .klf-label {
    font-size: 20px;
  }
}


/* content/consult-modal.css */
.kcm[hidden] { display: none !important; }
.kcm {
  --kcm-teal: #0d9488; --kcm-teal-dark: #0f766e; --kcm-teal-bg: #e6f7f5; --kcm-teal-border: #b9e5e0;
  --kcm-text: #334155; --kcm-sub: #64748b; --kcm-faint: #94a3b8;
  --kcm-bg: #f5f7f7; --kcm-surface: #ffffff; --kcm-border: #e2e8f0;
  --kcm-danger: #dc2626; --kcm-badge-bg: #fde8e8;
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 2147483000;
  display: flex; align-items: center; justify-content: center; padding: 24px 12px;
  background: rgba(15, 23, 42, .55); color: var(--kcm-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px; line-height: 1.7; text-align: left; letter-spacing: normal;
}
.kcm *, .kcm *::before, .kcm *::after { box-sizing: border-box; }
.kcm .kcm-panel {
  position: relative; width: 100%; max-width: 860px; max-height: 100%;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  background: var(--kcm-surface); border-radius: 14px; padding: 26px 24px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
@media (max-width: 560px) {
  .kcm { padding: 0; align-items: stretch; }
  .kcm .kcm-panel { max-width: none; max-height: none; height: 100%; border-radius: 0; padding: 18px 14px 28px; }
}
/* 閉じるボタンは下へスクロールしても上に残す（スマホは全画面なので、これが無いと閉じ方が分からない） */
.kcm .kcm-x {
  position: sticky; top: 0; float: right; z-index: 2; margin: -12px -10px 0 8px;
  width: 40px; height: 40px; padding: 0; border: none; border-radius: 50%;
  background: var(--kcm-surface); color: var(--kcm-sub); font: inherit; font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.kcm .kcm-x:hover { background: var(--kcm-bg); color: var(--kcm-text); }
.kcm .kcm-title { font-size: 1.3rem; font-weight: 700; line-height: 1.5; margin: 0 0 10px; color: var(--kcm-text); }
.kcm .kcm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }
.kcm .kcm-tag {
  padding: 2px 12px; border-radius: 999px; border: 1px solid var(--kcm-teal-border);
  background: var(--kcm-teal-bg); color: var(--kcm-teal-dark); font-size: .82rem; font-weight: 700;
}
.kcm .kcm-learn { background: var(--kcm-bg); border-radius: 10px; padding: 14px 16px; margin: 0 0 20px; }
.kcm .kcm-learn-title { font-weight: 700; margin: 0 0 4px; }
.kcm .kcm-learn-item { position: relative; padding-left: 28px; margin: 6px 0 0; }
.kcm .kcm-learn-item::before {
  content: "✓"; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--kcm-teal); color: #fff; font-size: .72rem; font-weight: 700; line-height: 20px; text-align: center;
}

/* --- 予約（booking-wakatte.html と同じ見た目。3ステップタブ / 週送りグリッド） --- */
.kcm .steps { display: flex; gap: 6px; margin: 0 0 18px; clear: both; }
.kcm .step {
  flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 4px; border: 1px solid var(--kcm-border); border-radius: 999px;
  font-size: .85rem; color: var(--kcm-faint); background: var(--kcm-surface); white-space: nowrap;
}
.kcm .step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; font-size: .75rem; font-weight: 700;
  background: var(--kcm-border); color: var(--kcm-surface);
}
.kcm .step.active { background: var(--kcm-teal-bg); border-color: var(--kcm-teal-border); color: var(--kcm-teal-dark); font-weight: 700; }
.kcm .step.active .num { background: var(--kcm-teal); }
.kcm .step.done .num { background: var(--kcm-faint); }
@media (max-width: 560px) { .kcm .step { font-size: .72rem; gap: 4px; } }
.kcm .pick-title { font-weight: 700; margin: 0 0 10px; }
.kcm .cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 8px; flex-wrap: wrap; }
.kcm .kcm-swipe-hint { display: none; margin: 0 0 6px; color: var(--kcm-sub); font-size: .75rem; }
.kcm .cal-month { font-weight: 700; }
.kcm .tz { font-size: .78rem; color: var(--kcm-faint); }
.kcm .nav-btn {
  font: inherit; font-size: .85rem; padding: 6px 16px; border-radius: 8px; margin: 0;
  border: 1px solid var(--kcm-border); background: var(--kcm-surface); color: var(--kcm-teal-dark); cursor: pointer;
}
.kcm .nav-btn:hover:not(:disabled) { border-color: var(--kcm-teal); }
.kcm .nav-btn:disabled { color: var(--kcm-faint); cursor: default; opacity: .5; }
.kcm .grid-scroll { overflow-x: auto; }
@media (max-width: 560px) {
  .kcm .cal-head { display: grid; grid-template-columns: 52px minmax(0, 1fr) 52px; gap: 4px; }
  .kcm .cal-head .nav-btn { padding: 6px 2px; }
}
@media (max-width: 360px) {
  .kcm .kcm-learn-item { font-size: 15px; }
  .kcm .step { padding-inline: 2px; }
  .kcm .step .num { display: none; }
}
.kcm .grid { display: grid; grid-template-columns: 48px repeat(7, minmax(74px, 1fr)); min-width: 620px; }
.kcm .mobile-schedule { display: none; }
@media (max-width: 767px) {
  .kcm .grid-scroll { overflow-x: visible; }
  .kcm .grid { display: none; }
  .kcm .mobile-schedule { display: block; }
  .kcm .mobile-dates { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; margin: 4px 0 14px; }
  .kcm .mobile-date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 0; min-height: 54px; padding: 5px 2px; margin: 0; border: 1px solid var(--kcm-border);
    border-radius: 8px; background: var(--kcm-surface); color: var(--kcm-text);
    font: inherit; font-size: .88rem; font-weight: 700; line-height: 1.3; cursor: pointer;
  }
  .kcm .mobile-date[aria-pressed="true"] { border-color: var(--kcm-teal); background: var(--kcm-teal-bg); color: var(--kcm-teal-dark); }
  .kcm .mobile-date:disabled { color: var(--kcm-faint); background: var(--kcm-bg); cursor: default; }
  .kcm .mobile-weekday { font-size: .72rem; font-weight: 400; }
  .kcm .mobile-date.sat .mobile-weekday { color: #2563eb; }
  .kcm .mobile-date.sun .mobile-weekday { color: var(--kcm-danger); }
  .kcm .mobile-times { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .kcm .mobile-time {
    min-width: 0; min-height: 43px; padding: 7px 4px; margin: 0; border: 1px solid var(--kcm-teal-border);
    border-radius: 8px; background: var(--kcm-surface); color: var(--kcm-teal-dark);
    font: inherit; font-size: .86rem; font-weight: 700; white-space: nowrap; cursor: pointer;
  }
  .kcm .mobile-time:hover { border-color: var(--kcm-teal); background: var(--kcm-teal-bg); }
  .kcm .mobile-no-times { grid-column: 1 / -1; margin: 0; padding: 16px 0; color: var(--kcm-sub); text-align: center; }
}
@media (min-width: 561px) and (max-width: 767px) {
  .kcm .mobile-dates { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .kcm .mobile-times { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.kcm .g-corner { border-bottom: 2px solid var(--kcm-border); }
.kcm .g-day { text-align: center; padding: 6px 2px 8px; border-bottom: 2px solid var(--kcm-border); }
.kcm .g-day .d-num { font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.kcm .g-day .d-dow { font-size: .72rem; color: var(--kcm-sub); }
.kcm .g-day.sat .d-dow { color: #2563eb; }
.kcm .g-day.sun .d-dow { color: var(--kcm-danger); }
.kcm .g-time { font-size: .72rem; color: var(--kcm-faint); text-align: right; padding: 10px 8px 0 0; border-right: 1px solid var(--kcm-border); }
.kcm .g-cell { padding: 3px; min-height: 40px; }
.kcm .chip {
  display: block; width: 100%; font: inherit; font-size: .74rem; font-weight: 600; margin: 0;
  padding: 8px 2px; border-radius: 8px; border: 1px solid var(--kcm-teal-border);
  background: var(--kcm-surface); color: var(--kcm-teal-dark); cursor: pointer; text-align: center; white-space: nowrap;
}
.kcm .chip:hover { background: var(--kcm-teal-bg); border-color: var(--kcm-teal); }
.kcm .picked {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--kcm-bg); border-radius: 10px; padding: 14px 16px; margin-bottom: 6px;
}
.kcm .picked .p-label { font-size: .78rem; color: var(--kcm-sub); }
.kcm .picked .p-when { font-size: 1.05rem; font-weight: 700; }
.kcm .picked .p-tz { font-size: .74rem; color: var(--kcm-faint); }
.kcm .btn-back {
  font: inherit; font-size: .85rem; padding: 9px 16px; border-radius: 8px; margin: 0;
  border: 1px solid var(--kcm-teal); background: var(--kcm-surface); color: var(--kcm-teal-dark); font-weight: 700; cursor: pointer;
}
.kcm .btn-back:hover { background: var(--kcm-teal-bg); }
.kcm .f-label { display: block; margin: 16px 0 4px; font-size: .9rem; font-weight: 700; color: var(--kcm-text); }
.kcm .req {
  display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 4px;
  background: var(--kcm-badge-bg); color: var(--kcm-danger); font-size: .7rem; font-weight: 700; vertical-align: 1px;
}
.kcm .f-input {
  display: block; width: 100%; height: auto; font: inherit; padding: 11px 12px; border: 1px solid var(--kcm-border);
  border-radius: 8px; background: var(--kcm-surface); color: var(--kcm-text); margin: 0; box-shadow: none;
}
.kcm .f-input:focus { outline: 2px solid var(--kcm-teal-border); border-color: var(--kcm-teal); }
.kcm textarea.f-input { min-height: 90px; resize: vertical; }
.kcm select.f-input { min-height: 44px; }
.kcm .consent { text-align: center; font-size: .82rem; color: var(--kcm-sub); margin: 22px 0 12px; }
.kcm .btn-book {
  display: block; margin: 0 auto; min-width: 320px; max-width: 100%;
  font: inherit; font-size: 1rem; font-weight: 700; color: #fff;
  background: var(--kcm-teal); border: none; border-radius: 10px; padding: 15px 28px; cursor: pointer;
}
.kcm .btn-book:hover { background: var(--kcm-teal-dark); }
.kcm .btn-book:disabled { opacity: .55; cursor: default; }
@media (max-width: 560px) { .kcm .btn-book { min-width: 100%; } }
.kcm .bk-note { font-size: .8rem; color: var(--kcm-faint); margin: 12px 0 0; }
.kcm .err { color: var(--kcm-danger); font-weight: 700; margin-top: 12px; text-align: center; }
.kcm .loading { color: var(--kcm-faint); padding: 24px 0; text-align: center; }
.kcm .empty { color: var(--kcm-sub); padding: 24px 0; text-align: center; }
.kcm .done-box { text-align: center; padding: 12px 0 4px; }
.kcm .done-check {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; background: var(--kcm-teal-bg);
  color: var(--kcm-teal); font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.kcm .done-title { font-size: 1.15rem; font-weight: 700; margin: 0 0 14px; }
.kcm .done-when { display: inline-block; background: var(--kcm-bg); border-radius: 10px; padding: 12px 22px; font-weight: 700; margin-bottom: 14px; }
.kcm .done-meet a { word-break: break-all; color: var(--kcm-teal-dark); }
.kcm .done-box p { margin: 0 0 10px; }
/* ハニーポット：画面には出さない（bot だけが埋める） */
.kcm .hp-field { position: absolute; left: -9999px; top: -9999px; }


/* content/faq.css */
.faq__title::before {
  content: "FAQ";
  font-size: 64px;
  top: -38px;
}
.faq__title {
  margin-top: 56px;
  letter-spacing: 5%;
}
.faq__text {
  margin-top: 10px;
  line-height: 1.5;
  text-align: left;
  margin-left: 6px;
  text-wrap: balance;
}
@media (max-width: 399px) {
  .faq__text .sp-br,
  .faq__question-text .sp-br {
    display: none;
  }
}
.faq__list {
  margin-top: 23px;
  margin-bottom: 58px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.faq__item {
  border: 2px solid #379faa;
  border-radius: 10px;
  margin-top: 18px;
}
.faq__question-mark {
  font-size: 24px;
  font-weight: 700;
}
.faq__icon {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  height: 3px;
  width: 20px;
  background-color: #fff;
}
.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  width: 3px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq__question {
  background-color: #379faa;
  border-radius: 5px 5px 2px 2px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding-inline: 20px;
  min-height: 76.5px;
  padding-block: 12px;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 5%;
  font-weight: 700;
  cursor: pointer;
}
.faq__question-text {
  margin-right: auto;
  min-width: 0;
  text-wrap: pretty;
}
.faq__question-text .keep-word { white-space: nowrap; }
.faq__question-text .faq-break { display: none; }
@media (max-width: 529px) {
  .faq__question-text .faq-break { display: initial; }
}
.faq__question[aria-expanded="true"] .faq__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 5%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__answer-inner {
  padding-inline: 20px;
  padding-block: 30px;
}
.faq__answer-rich h3 {
  margin: 0 0 14px;
  font-size: 1.1em;
  line-height: 1.5;
}
.faq__answer-rich p {
  margin: 0;
}
.faq__answer-rich p + p,
.faq__answer-rich ul + p {
  margin-top: 14px;
}
.faq__answer-rich ul {
  margin: 14px 0;
  padding-left: 1.4em;
  list-style: disc;
}
.faq__answer-rich li + li {
  margin-top: 6px;
}
.faq__answer-rich li::marker {
  color: #379faa;
}
.faq__answer-rich strong {
  font-weight: 700;
}

/* PC */
@media (min-width: 530px) {
  .faq__title::before {
    content: "FAQ";
    font-size: 96px;
    top: -60px;
  }
  .faq__title {
    font-size: 36px;
    margin-top: 91px;
    margin-left: 16px;
  }
  .faq__text {
    text-align: center;
    font-size: 20px;
    margin-left: 23px;
  }
  .faq__list {
    margin-top: 42px;
    margin-bottom: 56px;
    margin-inline: -20px;
    transform: translateX(9px);
  }
  .faq__item {
    margin-top: 16px;
  }
  .faq__question {
    min-height: 66px;
    padding-left: 30px;
    gap: 16px;
  }
  .faq__question-mark {
    font-size: 24px;
  }
  .faq__icon {
    margin-right: 8px;
  }
  .faq__question-text {
    font-size: 20px;
  }
  .faq__answer {
    font-size: 16px;
    transform: translateX(8px);
  }
  .faq .inner{
    transform: none;
}
}
/* タブレット */
@media (min-width: 530px) and (max-width: 1130px) {
  .faq__list {
    margin-inline: 0px;
    padding-inline: 5px;
    align-items: stretch;
    height: 100%;
  }

  .faq .pc-only {
    display: none;
  }
}


/* content/cta.css */
/* ボタン */
.cta__button-orange {
  display: inline-block;
  background-color: #fb8b18;
  color: #fff;
  padding-inline: 19px 42px;
  padding-block: 24px;

  border-radius: 10px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;

  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}
.cta__button-orange::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 18px;
  width: 17px;
  height: 20px;
  background: url("../images/common/icon-download.svg") no-repeat center;
  background-size: contain;
}

.cta__button-white {
  display: inline-block;
  background-color: #fff;
  color: #fb8b18;
  border: 2px solid #fb8b18;
  padding-inline: 31px 60px;
  padding-bottom: 23px;
  padding-top: 21px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
}
.cta__button-white::after {
  position: absolute;
  content: url("../images/common/icon-mail.svg");
  margin-left: 7px;
  margin-top: 2px;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-inline: 0;
}
.cta__button {
  font-size: 18px;
  width: min(315px, 100%);
  max-width: 100%;
  transition: transform 0.3s ease;
}
.cta__button-orange:hover,
.cta__button-white:hover {
  transform: translateY(-2px);
}
/* セクション */
.cta {
  background-color: #379faa;
  padding-block: 40px;
}
.cta__content {
  background-color: #fff;
  padding: 41px 20px;
}
.cta__title {
  font-weight: 500;
  line-height: 1.5;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .cta--overview .cta__title-first,
  .cta--overview .cta__title-second {
    display: block;
  }
}
.cta__text {
  margin: 24px auto;
  font-size: clamp(15px, 3.4vw, 16px);
  line-height: 1.7;
}
.cta--overview .cta__text-line { display: block; text-wrap: balance; }
@media (min-width: 400px) and (max-width: 529px) {
  .cta--operation .cta__text .sp-br {
    display: inline;
  }
}
@media (max-width: 399px) {
  .cta__button-white,
  .cta__button-orange {
    padding: 20px 32px 20px 12px;
    font-size: clamp(14px, 4.2vw, 16px);
  }
  .cta__button-white::after,
  .cta__button-orange::after {
    position: absolute;
    top: 50%;
    right: 12px;
    margin: 0;
    transform: translateY(-50%);
  }
}
/* 大きめスマホ */
@media (min-width: 650px) and (max-width: 929px) {
.cta__content {
width: 80%;
margin-inline: auto;
}
}

/* PC */
@media (min-width: 930px) {
  .cta__content {
    background-color: #fff;
    width: 850px;
    margin-inline: auto;
    padding-block: 39px;
    transform: translateX(9px);
  }
  .cta__title {
    font-size: 24px;
    margin-left: -2px;
  }
  .cta__text {
    font-size: 16px;
    margin-top: 20px;
  }
  .cta__buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .cta__button {
    font-size: 20px;
    width: 380px;
    height: 72px;
  }
  .cta__button-orange {
    padding-inline: 14px 42px;
    padding-block: 23px;
  }
  .cta__button-white {
    padding-inline: 5px 42px;
    padding-block: 22px;
  }
  .cta__button-orange::after {
    width: 19px;
    height: 30px;
    top: 20px;
    right: 30px;
  }
  .cta__button-white::after {
    top: 22px;
    right: 32px;
  }
  .cta .inner{
    transform: none;
}
}


/* layout/footer.css */
.footer{
  background-color: #E5F4F5;
  text-align: center;
  padding-block: 20px;
  font-size: 12px;
  line-height: 1.5;
}
.footer__nav{
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}
.footer__nav a{
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 8px;
    transition: opacity 0.2s ease;
}
.footer__nav a:hover,.footer__nav a:focus-visible{
    opacity: 0.8;
}
@media screen and (min-width: 769px) {
  .footer{
  background-color: #E5F4F5;
  text-align: center;
  padding-block: 25.25px;
  font-size: 12px;
  line-height: 1.5;
}
.footer__nav{
  margin-bottom: 0px;
}
  .footer-pc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-inline: 120px;
    font-size: 13px;
  }
}


/* content/sticky-cta.css */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 18px 10px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #e4e4e4;
    background: rgb(255 255 255 / 97%);
    box-shadow: 0 -3px 16px rgb(0 0 0 / 8%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-cta__link {
    width: min(calc(100% - 32px), 420px);
    min-height: 58px;
    margin-inline: auto;
    padding-inline: 10px;
    gap: 6px;
    font-size: clamp(12px, 3.4vw, 15px);
  }

  .sticky-cta__link .download-cta__icon {
    width: 20px;
    height: 20px;
  }

  .is-menu-open .sticky-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .footer {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: none;
  }
}

@media (max-width: 340px) {
  .sticky-cta__link {
    font-size: 15px;
  }
}

