@charset "UTF-8";
.font-14 {
  font-size: clamp(14px, 0.9259259259vw, 14px);
}

.font-24 {
  font-size: clamp(24px, 1.5873015873vw, 24px);
}

.font-32 {
  font-size: clamp(32px, 2.1164021164vw, 32px);
}

.font-48 {
  font-size: clamp(32px, 3.1746031746vw, 48px);
}

.font-54 {
  font-size: clamp(36px, 3.5714285714vw, 54px);
}

.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, p {
  margin-bottom: 0;
}

.yellow {
  color: #FFC400;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.top {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  background: linear-gradient(90deg, #48C7CC, #0082C8);
}
.top__inner {
  display: flex;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 16px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.top__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.top__left .label-p {
  font-size: clamp(14px, 1.3227513228vw, 20px);
  background: #FFC400;
  color: #3E4241;
  font-weight: bold;
  padding: 20px 40px;
  text-align: center;
  -webkit-clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
          clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
  display: inline-block;
}
.top__left h1 {
  font-size: clamp(24px, 3.1746031746vw, 48px);
  color: #fff;
  font-weight: 700;
}
.top__left h1 .small {
  font-size: clamp(18px, 1.5873015873vw, 24px);
  font-weight: 400;
  margin-bottom: 0;
}
.top__left img {
  width: 100%;
}
.top__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 16px);
}
.top__right .speech-bubble {
  font-size: clamp(14px, 1.455026455vw, 22px);
  background: #FFC400;
  color: #3E4241;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.top__right .speech-bubble:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFC400;
}
.top__right .btn-area {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.top__right .btn-area h2 {
  font-size: clamp(18px, 2.1164021164vw, 32px);
  text-align: center;
  font-weight: 600;
  color: #fff;
}
.top__right .btn-area a {
  font-size: clamp(18px, 1.8518518519vw, 28px);
  color: #3E4241;
  background-color: #FFC400;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 24px 48px;
  position: relative;
  width: 100%;
  box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0.16);
}
.top__right .btn-area a .arrow-right {
  position: absolute;
  width: 18px;
  height: 18px;
  border-right: 4px solid #3E4241;
  border-bottom: 4px solid #3E4241;
  transform: rotate(-45deg) translateY(-50%);
  top: calc(50% - 4px);
  right: 16px;
}
.top__specifics {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 16px);
  margin: 0 auto;
  padding-left: 0;
}
.top__specific {
  width: clamp(100px, 11vw, 180px);
  height: clamp(100px, 11vw, 180px);
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-weight: bold;
  font-size: clamp(14px, 1.3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.appeal, .achive {
  max-width: 1280px;
  padding: 48px 0;
  margin: 0 auto;
}
.appeal img, .achive img {
  width: 100%;
}

.points {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
}
.points h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
  text-align: center;
}
.points__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.points__li {
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.points__li .points__head {
  font-size: clamp(18px, 1.8518518519vw, 28px);
  background: linear-gradient(90deg, #48C7CC, #0082C8);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 36px 16px;
}
.points__li .points__body {
  padding: 16px;
  font-size: clamp(14px, 1vw, 16px);
  color: #3E4241;
  line-height: 1.6;
}

.feature-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(48px, 5vw, 96px) clamp(24px, 7vw, 114px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
}
.feature--right {
  flex-direction: row-reverse;
}
.feature__num {
  font-size: clamp(48px, 4.2328042328vw, 64px);
  font-weight: 600;
  color: #fff;
}
.feature__title {
  font-size: clamp(24px, 3.1746031746vw, 48px);
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
}
.feature__desc {
  font-size: clamp(16px, 1.1904761905vw, 18px);
  line-height: 1.7;
  color: #eee;
}
.feature__text {
  flex: 1 1 45%;
  color: #fff;
}
.feature__image {
  flex: 1 1 45%;
}
.feature__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.about {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.about h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
  text-align: center;
}
.about p {
  font-size: clamp(16px, 1.5873015873vw, 24px);
  color: #3E4241;
  margin-bottom: clamp(16px, 1.6vw, 24px);
}
.about h3 {
  font-size: clamp(18px, 2.380952381vw, 36px);
  background: linear-gradient(90deg, #48C7CC, #0082C8);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.about__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.about__li {
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.about__head {
  font-size: clamp(18px, 2.1164021164vw, 32px);
  background: linear-gradient(90deg, #48C7CC, #0082C8);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 36px 16px;
}
.about__body img {
  width: 100%;
}

.function {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.function h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
  text-align: center;
}
.function__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: clamp(24px, 5vw, 32px);
}
.function__li {
  flex: 1 1 23%;
  min-width: 280px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid linear-gradient(90deg, #48C7CC, #0082C8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.function__title {
  font-size: clamp(18px, 2.1164021164vw, 32px);
  background: linear-gradient(90deg, #48C7CC, #0082C8);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 36px 16px;
}
.function__desc {
  font-size: clamp(18px, 1.5873015873vw, 24px);
  color: #3E4241;
  padding: clamp(16px, 5vw, 24px);
}
.function__desc img {
  height: 100px;
  width: auto;
  margin-bottom: clamp(16px, 5vw, 24px);
}
.function__desc p {
  text-align: left;
}

.compare {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.compare h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
  text-align: center;
}
.compare .compare__table-area {
  width: 100%;
  overflow-x: scroll;
}
.compare__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}
.compare__table th, .compare__table td {
  padding: 16px 8px;
  border-bottom: 1px dotted #17A2B8;
}
.compare__table thead th {
  font-size: clamp(16px, 1.19vw, 18px);
  background: none;
  padding: clamp(16px, 2.323vw, 24px) clamp(16px, 0.529vw, 24px);
  color: #fff;
  border-bottom: 0;
  background-color: #A2A2A2;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.compare__table thead th.highlight {
  background-color: #17A2B8;
}
.compare__table thead th.none {
  background-color: transparent;
}
.compare__table tbody th {
  text-align: center;
  font-weight: bold;
  color: #17A2B8;
  font-size: clamp(18px, 1.19vw, 24px);
  border-right: 1px solid #17A2B8;
}
.compare__table tbody tr td {
  font-weight: bold;
  color: #17A2B8;
  font-size: clamp(18px, 1.19vw, 24px);
  border-right: 1px solid #17A2B8;
}
.compare__table tbody tr td:last-child {
  border-right: none;
}
.compare__table .android {
  color: #17A2B8;
}

.plan-area {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.plan-area h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
}
.plan-area .plan-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.plan-area table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: clamp(18px, 1.5873015873vw, 24px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
}
.plan-area table th {
  border-right: 1px solid #fff;
  width: 50%;
}
.plan-area table td {
  width: 50%;
}
.plan-area table tr:not(:last-child) th {
  border-bottom: 1px dotted #fff;
}
.plan-area table tr:not(:last-child) td {
  border-bottom: 1px dotted #fff;
}
.plan-area table th, .plan-area table td {
  padding: 16px 8px;
}
.plan-area .plan {
  background: #3C9BD5;
  border: 1px solid #3C9BD5;
  color: #fff;
  border-radius: 16px;
  width: clamp(300px, 45%, 800px);
  position: relative;
}
.plan-area .plan__badge {
  position: absolute;
  top: -32px;
  left: 16px;
}
.plan-area .plan img {
  width: clamp(80px, 11vw, 120px);
  height: clamp(80px, 11vw, 120px);
}
.plan-area .plan__title {
  font-size: clamp(18px, 2.6vw, 28px);
  padding: clamp(16px, 2.6vw, 24px);
  border-radius: 16px 16px 0 0;
  font-weight: bold;
  text-align: center;
  color: #3C9BD5;
  background-color: #fff;
}
.plan-area .plan__text {
  padding: clamp(12px, 2.6vw, 24px);
}
.plan-area .plan__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.plan-area .plan__features li {
  background: #fff;
  color: #3C9BD5;
  padding: 8px;
  font-size: clamp(14px, 2.6vw, 18px);
  text-align: center;
  border-radius: 6px;
  font-weight: 500;
}
.plan-area .plan__features li.transparent {
  background: transparent;
  color: #fff;
  opacity: 0.8;
  border: 1px solid #fff;
}
.plan-area .plan--recommended {
  background: #17A2B8;
}
.plan-area .plan--recommended .plan__title {
  color: #17A2B8;
}
.plan-area .plan--recommended .plan__features li {
  color: #17A2B8;
}

.simulation {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.simulation h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
}
.simulation__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
  margin-bottom: clamp(16px, 1.6vw, 24px);
}
.simulation__table th, .simulation__table td {
  padding: 16px 8px;
  border-bottom: 1px dotted #17A2B8;
}
.simulation__table thead th {
  font-size: clamp(14px, 1.19vw, 28px);
  background: none;
  padding: clamp(8px, 2.323vw, 24px) clamp(8px, 0.529vw, 24px);
  color: #3E4241;
  border-bottom: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.simulation__table thead th.none {
  background-color: transparent;
}
.simulation__table tbody th {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: clamp(12px, 1.19vw, 24px);
  border-right: 1px solid #17A2B8;
}
.simulation__table tbody tr td {
  font-weight: bold;
  color: #17A2B8;
  font-size: clamp(14px, 1.19vw, 24px);
  border-right: 1px solid #17A2B8;
}
.simulation__table tbody tr td:last-child {
  border-right: none;
}
.simulation__table tbody tr:last-child th {
  border-bottom: 0px;
}
.simulation__table tbody tr:last-child td {
  border-bottom: 0px;
}
.simulation__table tbody tr.own th {
  background-color: #17A2B8;
}
.simulation__table tbody tr.other th {
  background-color: #A2A2A2;
}
.simulation__table .android {
  color: #17A2B8;
}
.simulation__text-area {
  color: #17A2B8;
}
.simulation__text-area h3 {
  font-size: clamp(18px, 2.380952381vw, 36px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  font-weight: 400;
}
.simulation__text-area p {
  font-size: clamp(14px, 2.1164021164vw, 32px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
}
.simulation__text-area p.chose {
  font-size: clamp(18px, 3.1746031746vw, 48px);
  font-weight: 700;
}
.simulation__ul {
  display: flex;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.simulation__li {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}
.simulation__li p {
  font-size: clamp(14px, 2.1164021164vw, 32px);
  color: #17A2B8;
  text-align: center;
  padding: clamp(12px, 1.6vw, 16px);
  background-color: #fff;
}
.simulation__li img {
  width: 100%;
}

.flow {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
  background: linear-gradient(90deg, #48C7CC, #0082C8);
}
.flow h2 {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #fff;
}
.flow__steps {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.flow__step {
  width: clamp(100%, 20vw, 30%);
}
.flow__image-wrapper {
  position: relative;
  border-radius: 8px;
}
.flow__image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
}
.flow__image-wrapper .flow__step-label {
  font-size: clamp(24px, 2.1164021164vw, 32px);
  position: absolute;
  top: -24px;
  left: 0px;
  font-weight: 500;
  color: #FFC400;
}
.flow__image-wrapper .flow__step-label span {
  font-size: clamp(14px, 1.1904761905vw, 18px);
}
.flow__caption {
  font-size: clamp(18px, 1.5873015873vw, 24px);
  background: white;
  color: #3E4241;
  padding: 16px;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  margin-top: -4px;
}

.voice {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.voice__title {
  font-size: clamp(24px, 3.4391534392vw, 52px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
}
.voice__ul {
  display: flex;
  gap: 16px;
  padding: 0;
  list-style: none;
}
.voice .voice__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-size: 14px;
}
.voice .voice__card__header {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: left;
  padding: clamp(16px, 2.323vw, 24px) clamp(16px, 0.529vw, 24px);
}
.voice .voice__card__logo {
  height: clamp(14px, 1.322vw, 20px);
  width: -moz-min-content;
  width: min-content;
}
.voice .voice__card__info {
  line-height: 1.4;
  text-align: left;
  color: #3E4241;
}
.voice .voice__card__company {
  font-size: clamp(18px, 1.5873015873vw, 24px);
  font-weight: 700;
  margin: 0;
}
.voice .voice__card__meta {
  font-size: clamp(14px, 1.1904761905vw, 18px);
}
.voice .voice__card__tag__area {
  padding: 0 clamp(16px, 2.323vw, 24px) clamp(16px, 0.529vw, 24px) clamp(8px, 2.323vw, 8px);
}
.voice .voice__card__tag {
  background: #FFE3C1;
  color: #3E4241;
  font-weight: bold;
  padding: 8px;
  font-size: clamp(14px, 1.0582010582vw, 16px);
  text-align: center;
}
.voice .voice__card__body {
  background: linear-gradient(90deg, #48C7CC, #0082C8);
  color: white;
  padding: 16px;
  text-align: left;
}
.voice .voice__card__reason-title {
  color: #3E4241;
  background: #FFC400;
  font-weight: bold;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: clamp(14px, 1.0582010582vw, 16px);
  margin-bottom: 12px;
  -webkit-clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
          clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
}
.voice .voice__card__text {
  font-size: clamp(14px, 1.0582010582vw, 16px);
  line-height: 1.7;
}
.voice .voice__card__text strong {
  font-weight: bold;
}

.faq {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  text-align: center;
}
.faq__title {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #17A2B8;
}
.faq__ul {
  padding: 0;
}

.qa-box {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px 16px 0 16px;
  max-width: 960px;
  margin: 0 auto;
  font-size: 14px;
}
.qa-box:not(:last-child) {
  margin-bottom: 24px;
}
.qa-box__row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #e0e0e0;
}
.qa-box__row:first-child {
  border-top: none;
}
.qa-box__row--q {
  background: #d0f0f3;
  border-radius: 12px 12px 0 0;
  padding: 16px;
}
.qa-box__row--a {
  padding: 16px;
}
.qa-box__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 12px;
}
.qa-box__icon--q {
  background: #00B7CC;
}
.qa-box__icon--a {
  background: #d3b52b;
}
.qa-box__text {
  font-size: clamp(16px, 1.1904761905vw, 18px);
  flex: 1;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.contact {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  background: linear-gradient(90deg, #48C7CC, #0082C8);
}
.contact__title {
  font-size: clamp(24px, 3.5714285714vw, 54px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
  color: #fff;
  text-align: center;
}

form.wpcf7-form {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
}
form.wpcf7-form .form__one {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
form.wpcf7-form .form__one .form__label {
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
form.wpcf7-form .form__one .form__label + p {
  flex: 1 0 0;
  max-width: 550px;
}
form.wpcf7-form .form__one .form__label__mark {
  background: #ff3b30;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}
form.wpcf7-form .form__one .wpcf7-list-item {
  margin-left: 0;
}
form.wpcf7-form .form__one input[type=text],
form.wpcf7-form .form__one input[type=email],
form.wpcf7-form .form__one input[type=tel],
form.wpcf7-form .form__one input[type=number] {
  width: 100%;
  background: #e5e9ef;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}
form.wpcf7-form .wpcf7-checkbox,
form.wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
form.wpcf7-form .wpcf7-checkbox label,
form.wpcf7-form .wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
form.wpcf7-form .wpcf7-checkbox input[type=checkbox],
form.wpcf7-form .wpcf7-checkbox input[type=radio],
form.wpcf7-form .wpcf7-radio input[type=checkbox],
form.wpcf7-form .wpcf7-radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #00a9b5;
  border-radius: 4px;
  position: relative;
  background: #fff;
}
form.wpcf7-form .wpcf7-checkbox input[type=radio],
form.wpcf7-form .wpcf7-radio input[type=radio] {
  border-radius: 50%;
}
form.wpcf7-form .wpcf7-checkbox input[type=checkbox]:checked::before,
form.wpcf7-form .wpcf7-checkbox input[type=radio]:checked::before,
form.wpcf7-form .wpcf7-radio input[type=checkbox]:checked::before,
form.wpcf7-form .wpcf7-radio input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #00a9b5;
  border-radius: 2px;
}
form.wpcf7-form .wpcf7-checkbox input[type=radio]:checked::before,
form.wpcf7-form .wpcf7-radio input[type=radio]:checked::before {
  border-radius: 50%;
}
form.wpcf7-form input[type=submit] {
  display: block;
  margin: 32px auto 0;
  background: #f7941e;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  padding: 24px 32px;
  width: 40%;
  cursor: pointer;
  transition: 0.3s ease;
}
form.wpcf7-form input[type=submit]:hover {
  background: #e87e00;
}
form.wpcf7-form .wpcf7-spinner {
  display: none;
}
form.wpcf7-form .accept {
  text-align: center;
}
form.wpcf7-form .accept .wpcf7-list-item {
  margin-left: 0;
}

.footer {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(24px, 7.5396825397vw, 114px);
  padding-right: clamp(24px, 7.5396825397vw, 114px);
  font-size: clamp(12px, 0.9vw, 14px);
  background: #fff;
  color: #222;
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2vw;
}
.footer__left {
  flex: 1 1 40%;
}
.footer__left .footer__logo img {
  height: clamp(20px, 2vw, 28px);
  width: auto;
}
.footer__left .footer__logo span {
  color: #00B7CC;
}
.footer__left .footer__company {
  margin-top: 2vw;
}
.footer__left .footer__company p {
  margin-bottom: 1vw;
  line-height: 1.6;
}
.footer__left .footer__company a {
  color: inherit;
  text-decoration: underline;
}
.footer__right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__right .footer__badges {
  text-align: center;
  display: flex;
  gap: 2vw;
}
.footer__right .footer__badges img {
  max-width: 120px;
  height: auto;
}
.footer__right .footer__legal {
  text-align: right;
}
.footer__right .footer__legal a {
  margin: 0 0.5vw;
  font-size: clamp(12px, 0.8vw, 14px);
  text-decoration: underline;
  color: #444;
}
.footer__right .footer__legal p {
  margin-top: 0.5vw;
  font-size: 0.8vw;
  color: #999;
}

.header {
  display: flex;
  width: 100%;
  background-color: #fff;
  height: 100px;
}
.header__inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  padding-left: 16px;
}
.header__left p {
  font-size: clamp(8px, 0.9vw, 14px);
}
.header__left img {
  height: clamp(40px, 2.8vw, 32px);
  width: auto;
}
.header__right {
  padding-right: 16px;
  height: 80px;
}
.header__right img {
  width: auto;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.16);
}

#site-header {
  position: fixed;
  top: -100px; /* 最初は画面外 */
  left: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: top 0.4s ease; /* ニュルッと動く */
  z-index: 1000;
}
#site-header.visible {
  top: 0;
}

.short-btn-area {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.short-btn-area .short-btn {
  display: inline-block;
  width: 50%;
  background: linear-gradient(90deg, #48C7CC, #0082C8);
  color: #fff;
  padding: 24px;
  position: relative;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s;
}
.short-btn-area .short-btn:hover {
  opacity: 0.8;
}
.short-btn-area .short-btn span {
  position: absolute;
  display: inline-block;
  padding: 8px;
  color: #333;
  background-color: #FFC710;
  font-size: 14px;
  word-break: keep-all;
  transform: translateX(-50%);
  top: -17px;
  left: 50%;
  border-radius: 20px;
}

@media (max-width: 800px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .top {
    padding: 32px 24px;
  }
  .top__inner {
    flex-direction: column;
  }
  .top__left {
    gap: 16px;
  }
  .top__left .label-p {
    padding: 16px;
  }
  .top__left h1 {
    text-align: center;
  }
  .top__right .speech-bubble {
    padding: 12px 16px;
  }
  .top__specifics {
    gap: 8px;
  }
  .appeal, .achive {
    padding: 24px;
  }
  .points {
    padding: 24px;
  }
  .points__li .points__head {
    padding: 16px;
  }
  .feature-section {
    padding: 24px;
  }
  .feature {
    flex-direction: column;
  }
  .about {
    padding: 24px;
  }
  .about p {
    text-align: left;
  }
  .about__head {
    padding: 16px;
  }
  .function {
    padding: 24px;
  }
  .function__title {
    padding: 16px;
  }
  .plan-area {
    padding: 24px;
  }
  .plan-area .plan-wrapper {
    width: 100%;
  }
  .plan-area .plan {
    width: 100%;
  }
  .plan-area .plan__badge {
    top: -16px;
    left: 0;
  }
  .simulation {
    padding: 24px;
  }
  .simulation ul {
    flex-wrap: wrap;
  }
  .simulation__li {
    flex: 1 1 33%;
  }
  .flow {
    padding: 24px;
  }
  .flow__steps {
    flex-direction: column;
  }
  .flow__steps {
    gap: 16px;
  }
  .flow__image-wrapper .flow__step-label {
    top: -16px;
  }
  .flow__caption {
    padding: 12px;
  }
  .voice {
    padding: 24px;
  }
  .voice__ul {
    flex-direction: column;
    margin-bottom: 0;
  }
  .faq {
    padding: 24px;
  }
  .contact {
    padding: 24px;
  }
  form.wpcf7-form {
    padding: 16px;
  }
  form.wpcf7-form .form__one {
    flex-direction: column;
  }
  form.wpcf7-form .form__one label {
    margin-bottom: 0;
  }
  form.wpcf7-form .wpcf7-checkbox,
  form.wpcf7-form .wpcf7-radio {
    gap: 16px;
  }
  form.wpcf7-form input[type=submit] {
    width: 100%;
  }
  form.wpcf7-form .accept .wpcf7-list-item {
    font-size: 14px;
  }
  .header {
    height: 80px;
  }
  .header__right {
    padding-right: 16px;
    height: 60px;
  }
  .header__right img {
    width: auto;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.16);
  }
  .footer {
    padding: 24px;
  }
  .footer__right {
    align-items: center;
  }
  .short-btn-area {
    padding: 16px;
    width: 100%;
    flex-direction: column;
  }
  .short-btn-area .short-btn {
    width: 100%;
    padding: 16px;
  }
  .short-btn-area .short-btn span {
    font-size: 12px;
    font-weight: 500;
  }
}/*# sourceMappingURL=style.css.map */