@charset "UTF-8";
/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable-next-line at-rule-no-unknown */
/* stylelint-disable-next-line scss/double-slash-comment-empty-line-before */
/* reset
-------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  color: #000;
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
}

i {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

sup {
  font-size: x-small;
  vertical-align: super;
}

address {
  font-style: normal;
}

/* base
-------------------------- */
/* stylelint-disable property-no-unknown */
/* stylelint-disable no-descending-specificity */
html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  background-color: #fff;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  color: #000;
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 3.7333333333vw;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.7;
}

a,
button {
  text-decoration: none;
  color: #333;
  transition: color 0.4s ease, opacity 0.2s ease, background-color 0.2s ease;
}
a img,
button img {
  overflow: hidden;
  outline: none;
  transition: opacity 0.2s ease;
}
a svg,
button svg {
  transition: fill 0.2s ease;
}
a.pcmo:hover img,
button.pcmo:hover img {
  opacity: 0.8;
}

a:link,
a:visited,
a:active,
a:hover,
a:focus {
  outline: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-style: none;
  outline: none;
  vertical-align: middle;
  pointer-events: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  display: block;
  padding: 0;
  width: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  text-align: left;
  letter-spacing: 0.05em;
  color: #000;
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 400;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  transition: color 0.4s ease, opacity 0.2s ease, background-color 0.2s ease;
  font-size: 3.7333333333vw;
}
@media (min-width: 769px) {
  button {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

table {
  width: 100%;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select,
textarea {
  padding: 0.5em;
  width: 100%;
  border: 1px solid #666;
  border-radius: 0;
  background-color: #fff;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}
select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border: 1px solid #333;
  outline: 1px solid #333;
}

@media (min-width: 769px) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=tel],
  select,
  textarea {
    padding: 0.7em;
  }
}
/* common
-------------------------- */
.pc {
  display: none;
}

.width-01 {
  margin: 0 auto;
  width: 94.6666%; /* 710 / 750 */
}

.width-02 {
  margin: 0 auto;
  width: 89.3333%; /* 670 / 750 */
}

.width-03 {
  margin: 0 auto;
  width: 84%; /* 630 / 750 */
}

.width-04 {
  margin: 0 auto;
  width: 94.366%; /* 670 / 710 */
}

.width-05 {
  margin: 0 auto;
  width: 88.7323%; /* 630 / 710 */
}

.page-wrapper {
  overflow-x: hidden;
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .width-01,
  .width-02 {
    width: 89.3333%;
    max-width: 1150px;
  }
}
/* keyframes
-------------------------- */
/* header
-------------------------- */
/* stylelint-disable no-descending-specificity */
.header {
  width: 100%;
  height: 3em;
}

.header-sticky {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3em;
  background-color: #46bc54;
}

.header-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 2.6666%;
  width: 30.4%;
  height: 5.3em;
}
.header-logo a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #212121;
}
.header-logo svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 61.842%;
  fill: #ceff00;
}

.header-nav {
  position: absolute;
  top: 50%;
  right: 5.333%;
  transform: translate(0, -50%);
}

.header-nav-pc {
  display: none;
}

.header-contact-btn a {
  display: block;
  padding: 0.5em 3em;
  border-radius: 5em;
  background-color: #fff;
  white-space: nowrap;
  color: #46bc54;
  font-weight: 800;
  font-size: 2.6666666667vw;
}

@media (min-width: 769px) {
  .header {
    height: 86px;
  }
  .header-sticky {
    height: 86px;
  }
  .header-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
  .header-logo {
    left: 2.5%;
    width: 186px;
    height: 125px;
  }
  .header-logo a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #212121;
  }
  .header-logo svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -56%);
    width: 61.842%;
    fill: #ceff00;
  }
  .header-nav {
    right: 1%;
  }
  .header-contact-btn a {
    padding: 0.6em 3.2em;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media (min-width: 990px) {
  .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header-nav-pc {
    display: flex;
    justify-content: flex-end;
  }
  .header-nav-pc li {
    margin-left: 10%;
  }
  .header-nav-pc li a {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .header-nav-pc li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
  }
  .header-nav-pc li a.pcmo:hover::after {
    width: 100%;
  }
  .header-contact-btn {
    margin-left: 7%;
  }
}
/* footer
-------------------------- */
/* stylelint-disable no-descending-specificity */
.footer {
  padding: 0.5em 0;
  background-color: #000;
}

.footer-copyright {
  text-align: center;
  color: #fff;
  font-size: 1.8666666667vw;
}

@media (min-width: 769px) {
  .footer {
    padding: 12px 0;
  }
  .footer-copyright {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* main
-------------------------- */
/* stylelint-disable no-descending-specificity */
.sec {
  padding: 2.75em 0;
}

.sec-inner {
  /* margin: 0 auto;
  width: 94.6666%; */
}

.sec-title-01 {
  margin-bottom: 1em;
}

.sec-content {
  margin: 0 auto;
  width: 89.3333%; /* 670 / 750 */
}

.sec-main-text {
  margin-bottom: 2em;
}

.common-btn-01 {
  position: relative;
  margin: 0 auto;
  width: 91.79%;
}
.common-btn-01::after {
  content: "";
  position: absolute;
  right: -1.5em;
  bottom: -1.3em;
  width: 19.1869%;
  height: auto;
  background-image: url("../images/btn_icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 59/41;
  pointer-events: none;
}
.common-btn-01 a {
  display: block;
}

.kv {
  position: relative;
  padding-bottom: 1.5em;
}
.kv::before {
  content: "";
  position: absolute;
  top: -1em;
  right: 0;
  width: 13%;
  height: auto;
  background-image: url("../images/kv_bg_text_sp.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 194/2427;
}

.kv-inner {
  position: relative;
  z-index: 1;
}

.kv-img {
  padding: 3.85em 0 2.5em;
}

.kv-text-box {
  position: relative;
  margin: 0 auto;
  padding: 2em 0;
  width: 89.3333%;
}
.kv-text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 63%;
  height: 1px;
  background-color: #000;
}

.kv-text {
  margin-bottom: 2em;
  width: 86%;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.9;
}

.kv-logo {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 89.3333%;
  height: auto;
  background-image: url("../images/kv_logo_img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 379/56;
}

.about {
  margin: 0 auto;
  padding: 2em 0 6em;
  width: 94.6666%;
  border-top: 1px solid #000;
}

.about-inner {
  margin: 0 auto;
  width: 94.366%;
}

.about-title {
  margin-bottom: 2.5em;
}

.about-text {
  margin-bottom: 2em;
  text-align: justify;
  line-height: 2;
}

.about-youtube-iframe {
  margin-bottom: 0.5em;
  width: 100%;
  aspect-ratio: 16/9;
}
.about-youtube-iframe iframe {
  width: 100%;
  height: 100%;
}

.about-youtube-text {
  text-align: justify;
}

.nayami {
  position: relative;
  padding: 4.1em 0 3em;
  background-color: #f2f2f2;
}
.nayami::before {
  content: "";
  position: absolute;
  top: -3em;
  left: 50%;
  transform: translateX(-50%);
  width: 30.8%;
  height: auto;
  background-image: url("../images/nayami_img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 276/209;
}

.nayami-inner {
  margin: 0 auto;
  width: 89.3333%;
}

.nayami-title {
  margin: 0 auto 2em;
  width: 96.7154%;
}

.nayami-text-01 {
  position: relative;
  margin-bottom: 6em;
}
.nayami-text-01::after {
  content: "";
  position: absolute;
  bottom: -4.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 15.5223%;
  height: auto;
  background-image: url("../images/nayami_arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 4/3;
}

.nayami-text-02 {
  margin: 0 auto 2em;
  width: 91.94%;
}

.nayami-list li {
  position: relative;
  margin: 0 0 3em auto;
  padding: 1.2em 4% 0;
  width: 93.1343%;
  border-radius: 0.54em;
  background-color: #fff;
}
.nayami-list li:last-child {
  margin-bottom: 0;
}
.nayami-list li .title {
  position: absolute;
  top: -1em;
  left: -6%;
  width: 57.2115%;
}
.nayami-list li ol li {
  margin: 0;
  padding: 1em 0 1em 9%;
  width: 100%;
  border-bottom: 1px solid #b5b5b5;
  border-radius: 0;
  line-height: 1.9;
  font-size: 4.2666666667vw;
}
.nayami-list li ol li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 12%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 1/1;
}
.nayami-list li ol li:nth-of-type(1)::before {
  background-image: url("../images/nayami_list_icon_01.png");
}
.nayami-list li ol li:nth-of-type(2)::before {
  background-image: url("../images/nayami_list_icon_02.png");
}
.nayami-list li ol li:nth-of-type(3) {
  border-bottom: none;
}
.nayami-list li ol li:nth-of-type(3)::before {
  background-image: url("../images/nayami_list_icon_03.png");
}
.nayami-list li ol li .marker {
  background-color: #fffd48;
}

.point {
  position: relative;
  padding: 3em 0 2.5em;
}
.point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: auto;
  aspect-ratio: 20/1;
  background-image: url("../images/bg_01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.point-inner {
  margin: 0 auto;
  width: 94.6666%;
}

.point-main-title {
  margin: 0 auto 1.5em;
  width: 85.7746%;
}

.point-list {
  margin: 0 auto;
  width: 94.366%;
}

.point-item {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #b7b7b7;
}
.point-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.point-item-text {
  margin-top: 1em;
  text-align: justify;
  line-height: 1.9;
}

.example {
  padding: 1em 0 2em;
  border-bottom: 1px solid #000;
}

.example-inner {
  position: relative;
  margin: 0 auto;
  width: 89.3333%;
}

.example-title {
  margin-bottom: 3em;
}

.example-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.example-item {
  margin-bottom: 2em;
  padding: 0 5% 1em;
  width: 46.567%;
  border-radius: 0.5357em;
  background-color: #f5f5f6;
}
.example-item .title {
  margin: -1em auto 1em;
  width: 90%;
}
.example-item ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1em;
  font-weight: bold;
  line-height: 1.5;
}
.example-item ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.example-etc {
  position: absolute;
  right: 24%;
  bottom: 2em;
  width: 21.194%;
}

.plan {
  padding-bottom: 5.7em;
}
.plan .sec-title-01 {
  margin-bottom: 2em;
}
.plan .sec-content {
  width: 84%;
}
.plan .sec-main-text {
  margin-bottom: 0;
}

.plan-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.plan-item {
  margin: 0 2% 0.7em 0;
  width: 49%;
  border: 2px solid #ddd;
  border-radius: 0.7142em;
  text-align: center;
}
.plan-item:nth-of-type(2n) {
  margin-right: 0;
}

.plan-item-img {
  margin: 0 auto;
  padding: 1em 0;
  width: 54.8387%;
}

.plan-item-text {
  margin-bottom: 0.8em;
  letter-spacing: 0;
  font-weight: 800;
  font-size: 3.2vw;
}

.plan-item-price {
  padding: 0.8em 0;
  border-top: 2px solid #ddd;
  font-weight: 800;
}

.voice {
  background-color: #46bc54;
}
.voice .sec-title-01 {
  margin: -5.7em 0 2em;
}

.voice-list {
  margin: 0 auto;
  width: 94.0298%;
}

.voice-item {
  margin-bottom: 2em;
}
.voice-item:last-child {
  margin-bottom: 0;
}

.voice-item-title {
  width: 46.0317%;
}

.voice-item-detail {
  margin-top: -0.1em;
  padding: 1.5em 5.6%;
  border-radius: 1em;
  background-color: #fff;
}

.voice-item-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}

.voice-item-img {
  width: 35.7142%;
}

.voice-item-case {
  width: 59%;
}
.voice-item-case tr th {
  width: 6.2em;
  border-right: 2px solid #e6e6e6;
  text-align: left;
  letter-spacing: 0;
  font-weight: 800;
  font-size: 3.3333333333vw;
}
.voice-item-case tr td {
  padding-left: 0.8em;
  letter-spacing: 0;
  font-weight: 800;
}
.voice-item-case tr td span {
  font-size: 4.5333333333vw;
}

.voice-item-name {
  position: relative;
  margin-bottom: 0.7em;
}
.voice-item-name span {
  position: relative;
  z-index: 1;
  padding-right: 0.3em;
  background-color: #fff;
  font-weight: 800;
  font-size: 4vw;
}
.voice-item-name::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 3px;
  background-color: #e6e6e6;
}

.voice-item-text-01 {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0 0.3em;
  background-color: #46bc54;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  font-size: 5.2vw;
}

.voice-item-text-02 {
  text-align: justify;
  font-size: 3.3333333333vw;
}
.voice-item-text-02 span {
  background-color: #fffd48;
}

.flow {
  padding-bottom: 5.7em;
}

.flow-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flow-item:nth-of-type(1) {
  margin-bottom: 5em;
}
.flow-item:nth-of-type(1) .img::after {
  top: calc(100% + 1.5em);
}
.flow-item:nth-of-type(2) {
  margin-bottom: 2em;
}
.flow-item:nth-of-type(2) .img::after {
  top: calc(100% + 2.5em);
}
.flow-item:nth-of-type(3) {
  margin-bottom: 1.5em;
}
.flow-item:nth-of-type(3) .img::after {
  top: calc(100% + 3em);
}
.flow-item:nth-of-type(4) {
  margin-bottom: 3em;
}
.flow-item:nth-of-type(4) .img::after {
  display: none;
}
.flow-item .img {
  position: relative;
  width: 31.6417%;
}
.flow-item .img::after {
  content: "";
  position: absolute;
  top: calc(100% + 1em);
  left: 50%;
  width: 4.25%;
  height: auto;
  aspect-ratio: 6/49;
  background-image: url("../images/flow_arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.flow-item .right {
  padding-top: 1em;
  width: 64%;
}
.flow-item .title {
  margin-bottom: 0.2em;
  font-weight: 800;
  font-size: 4.5333333333vw;
}

.company {
  background-color: #f2f2f2;
}
.company .sec-title-01 {
  margin-top: -5.3em;
}

.company-member {
  margin-bottom: 3em;
}

.company-member-title,
.company-company-title {
  margin: 0 auto 1em;
  width: 36.2686%;
}

.company-member-item {
  position: relative;
  margin: 0 3% 1.6em auto;
  padding: 1.5em 6%;
  width: 91%;
  border-radius: 1em;
  background-color: #fff;
}

.company-member-img {
  position: absolute;
  top: 1em;
  left: -7%;
  width: 30%;
}

.company-member-top {
  margin-left: auto;
  width: 74%;
}

.company-member-name {
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 0.8em;
  width: 86%;
}
.company-member-name img {
  width: 61%;
}
.company-member-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f2f2f2;
}

.company-member-text {
  text-align: justify;
  font-size: 3.6vw;
}

.company-company-detail {
  margin: 0 3% 1.6em auto;
  padding: 0.5em 6%;
  width: 91%;
  border-radius: 1em;
  background-color: #fff;
}
.company-company-detail dl {
  display: flex;
  align-items: center;
  padding: 1.5em 0;
  border-bottom: 1px solid #cfd2d4;
}
.company-company-detail dl:last-child {
  border: none;
}
.company-company-detail dl dt {
  width: 5em;
  text-align: center;
  white-space: nowrap;
}
.company-company-detail dl dd {
  flex: 1;
  padding-left: 2em;
}

.qa {
  position: relative;
  padding-bottom: 2em;
}
.qa::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 89.3333%;
  height: auto;
  aspect-ratio: 20/1;
  background-image: url("../images/bg_01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.qa-list dl {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #999;
}
.qa-list dl dt,
.qa-list dl dd {
  position: relative;
}
.qa-list dl dt::before,
.qa-list dl dd::before {
  content: "";
  position: absolute;
  width: 10%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 1/1;
}
.qa-list dl dt {
  padding: 0.4em 0 1.5em 13%;
  font-weight: 800;
}
.qa-list dl dt::before {
  top: 0;
  left: 0;
  background-image: url("../images/qa_icon_01.png");
}
.qa-list dl dd {
  margin-left: auto;
  padding: 1.5em 1.5em 1.5em 2.2em;
  width: 95.2238%;
  border-radius: 0.7em;
  background-color: #f2f2f2;
  text-align: justify;
  font-size: 3.2vw;
}
.qa-list dl dd::before {
  top: 1em;
  left: -4.7762%;
  background-image: url("../images/qa_icon_02.png");
}

.contact-title {
  margin: 0 auto 1.5em;
  width: 90.4225%;
}

.contact-hubspot {
  margin-bottom: 3em;
  padding: 2em;
  border-radius: 0.7em;
  background-color: #f2f2f2;
}

.contact-submit {
  margin: 0 auto;
  width: 76%;
}

/* ─── Contact Form ─── */
#contact-form .form-group {
  margin-bottom: 1.5em;
  display: block;
}
#contact-form > .form-group > label,
#contact-form .form-row .form-group > label {
  display: block !important;
  font-size: 0.9em;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.4em;
}
#contact-form .form-group input[type="text"],
#contact-form .form-group input[type="email"],
#contact-form .form-group input[type="tel"],
#contact-form .form-group select,
#contact-form .form-group textarea {
  display: block !important;
  width: 100% !important;
}
#contact-form .checkbox-label input[type="checkbox"] {
  display: inline-block !important;
  width: auto !important;
  margin-right: 0.4em;
  vertical-align: middle;
}
#contact-form .required {
  color: #e74c3c;
  margin-left: 2px;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form select,
#contact-form textarea {
  width: 100% !important;
  padding: 0.8em !important;
  border: none !important;
  border-bottom: 2px solid #ccc !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 1em !important;
  color: #333;
  transition: border-color 0.3s;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  outline: none;
  border-bottom-color: #6abf40;
}
#contact-form select {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
  color: #999;
}
#contact-form select:valid {
  color: #333;
}
#contact-form .form-row {
  display: flex;
  gap: 1em;
}
#contact-form .form-group.half {
  flex: 1;
}
#contact-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  margin-top: 0.3em;
}
#contact-form .checkbox-label {
  font-weight: normal !important;
  font-size: 0.95em;
  display: flex !important;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}
#contact-form textarea {
  resize: vertical;
  border: 2px solid #ccc;
  border-radius: 0.4em;
  background: #fff;
}
#contact-form .form-submit {
  text-align: center;
  margin-top: 2em;
}
#contact-form .form-submit button {
  background: #6abf40 !important;
  color: #fff !important;
  border: none !important;
  padding: 0.9em 3em !important;
  font-size: 1.1em !important;
  font-weight: bold !important;
  border-radius: 2em !important;
  cursor: pointer !important;
  transition: background 0.3s, opacity 0.3s;
  width: auto !important;
  display: inline-block !important;
}
#contact-form .form-submit button:hover {
  background: #5aad35 !important;
}
#contact-form .form-submit button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#form-status.success {
  color: #6abf40;
  font-weight: bold;
}
#form-status.error {
  color: #e74c3c;
  font-weight: bold;
}

@media (min-width: 769px) {
  .sec {
    padding: 80px 0;
  }
  .sec-inner {
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1200px;
  }
  .sec-title-01 {
    margin-bottom: 30px;
  }
  .sec-content {
    margin: 0 auto;
    width: 100%;
  }
  .sec-main-text {
    margin: 0 auto 40px;
    width: 93.22%;
    max-width: 1100px;
    line-height: 2;
  }
  .common-btn-01 {
    max-width: 500px;
  }
  .common-btn-01::after {
    right: -35px;
    bottom: -15px;
  }
  .kv {
    padding-bottom: 30px;
  }
  .kv::before {
    inset: auto auto 172px 50%;
    transform: translateX(-50%);
    width: 2122px;
    background-image: url("../images/kv_bg_text_pc.png");
    aspect-ratio: 2122/115;
  }
  .kv-inner {
    margin: 0 auto 6%;
    max-width: 1200px;
  }
  .kv-img {
    padding: 54px 0 0;
  }
  .kv-text-box {
    margin: -20% 0 0;
    padding: 3% 0 0 1%;
    width: 50%;
    max-width: 550px;
  }
  .kv-text-box::before {
    left: -20px;
    width: 76%;
  }
  .kv-text {
    margin-bottom: 7%;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .kv-btn {
    margin: 0;
  }
  .kv-logo {
    width: 100%;
    height: 112px;
    background-image: url("../images/kv_logo_img.png");
    background-repeat: repeat;
    background-size: contain;
    aspect-ratio: auto;
  }
  .about {
    padding: 30px 0 200px;
    width: 100%;
    border-top: none;
  }
  .about-inner {
    position: relative;
    padding: 0 10px;
    width: 100%;
    max-width: 1200px;
  }
  .about-inner::before {
    content: "";
    position: absolute;
    top: 7%;
    left: 0;
    width: 39%;
    height: auto;
    aspect-ratio: 156/101;
    background-image: url("../images/about_img_pc.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .about-title {
    position: relative;
    left: 50%;
    transform: translateX(-13%);
    margin-bottom: 2.5em;
    width: 65.678%;
    max-width: 775px;
  }
  .about-text {
    margin: 0 0 60px auto;
    padding: 0 4% 0 2.5%;
    width: 58.5%;
  }
  .about-youtube-iframe {
    margin: 0 auto 40px;
    max-width: 675px;
  }
  .about-youtube-text {
    margin: 0 auto;
    width: 89.3333%;
    max-width: 1000px;
  }
  .nayami {
    padding: 92px 0 60px;
  }
  .nayami::before {
    top: -153px;
    width: 276px;
  }
  .nayami-inner {
    padding: 0 10px;
    width: 100%;
    max-width: 1200px;
  }
  .nayami-title {
    margin: 0 auto 30px;
    width: 76%;
    max-width: 889px;
  }
  .nayami-text-01 {
    margin: 0 auto 130px;
    width: 87%;
    max-width: 1020px;
  }
  .nayami-text-01::after {
    bottom: -105px;
    left: 50%;
    width: 11%;
    max-width: 104px;
  }
  .nayami-text-02 {
    margin: 0 auto 60px;
    width: 65%;
    max-width: 765px;
  }
  .nayami-list {
    display: flex;
    justify-content: space-evenly;
  }
  .nayami-list li {
    margin: 0 0 0 auto;
    padding: 25px 20px 5px;
    width: 29%;
    border-radius: 15px;
  }
  .nayami-list li .title {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 238px;
  }
  .nayami-list li ol li {
    padding: 15px 0 15px 25px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .nayami-list li ol li::before {
    left: -40px;
    width: 43px;
  }
  .point {
    padding: 140px 0 100px;
  }
  .point::before {
    width: calc(100% - 20px);
    max-width: 1020px;
    aspect-ratio: 34/1;
  }
  .point-inner {
    padding: 0 10px;
    width: 100%;
    max-width: 1200px;
  }
  .point-main-title {
    margin: 0 auto 40px;
    width: 74%;
    max-width: 862px;
  }
  .point-main-img {
    margin: 0 auto 22px;
    width: 93%;
    max-width: 1096px;
  }
  .point-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .point-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #b7b7b7;
  }
  .point-item:nth-of-type(1) {
    margin-bottom: 45px;
    padding-bottom: 70px;
    width: 100%;
  }
  .point-item:nth-of-type(2), .point-item:nth-of-type(3) {
    margin-bottom: 60px;
    padding: 20px 0 55px;
    width: 50%;
  }
  .point-item:nth-of-type(2) {
    position: relative;
  }
  .point-item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    width: 1px;
    height: 90%;
    background-color: #b7b7b7;
  }
  .point-item:nth-of-type(4) {
    position: relative;
  }
  .point-item:nth-of-type(4) .point-item-inner {
    width: 50%;
  }
  .point-item:nth-of-type(4)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: auto;
    background-image: url("../images//point_item_img_04.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 590/353;
  }
  .point-item-text {
    margin: 30px auto 0;
    width: 84%;
  }
  .example {
    padding: 10px 0 30px;
    border-bottom: none;
  }
  .example-inner {
    padding: 0 10px;
    width: 100%;
    max-width: 1200px;
  }
  .example-title {
    margin-bottom: 55px;
  }
  .example-list {
    justify-content: flex-start;
    margin: 0 auto;
    width: 94.9152%;
  }
  .example-item {
    margin: 0 3.125% 50px 0;
    padding: 0 2.5% 15px;
    width: 31.25%;
    border-radius: 15px;
  }
  .example-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .example-item:nth-of-type(7) {
    width: 51.607%;
  }
  .example-item:nth-of-type(7) ul li:nth-of-type(1), .example-item:nth-of-type(7) ul li:nth-of-type(4) {
    width: 35%;
  }
  .example-item:nth-of-type(7) ul li:nth-of-type(2), .example-item:nth-of-type(7) ul li:nth-of-type(5) {
    width: 43%;
  }
  .example-item:nth-of-type(7) ul li:nth-of-type(3), .example-item:nth-of-type(7) ul li:nth-of-type(6) {
    width: 22%;
  }
  .example-item:nth-of-type(-n + 6) ul li, .example-item:nth-of-type(8) ul li {
    width: 50%;
  }
  .example-item:nth-of-type(7), .example-item:nth-of-type(8) {
    margin-bottom: 0;
  }
  .example-item .title {
    margin: -20px auto 15px;
    width: 100%;
    max-width: 198px;
  }
  .example-item ul {
    display: flex;
    flex-wrap: wrap;
  }
  .example-item ul li {
    margin-bottom: 10px;
    letter-spacing: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .example-etc {
    right: 6%;
    bottom: 40px;
    width: 7.8%;
    max-width: 92px;
  }
  .plan {
    padding: 70px 0 80px;
  }
  .plan .sec-title-01 {
    margin-bottom: 35px;
  }
  .plan .sec-content {
    width: 92%;
    max-width: 1080px;
  }
  .plan-list {
    margin-bottom: 15px;
  }
  .plan-item {
    margin: 0 2.6666% 25px 0;
    width: 23%;
    border: 4px solid #ddd;
    border-radius: 20px;
  }
  .plan-item:nth-of-type(2n) {
    margin-right: 2.6666%;
  }
  .plan-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .plan-item-img {
    padding: 20px 0;
  }
  .plan-item-text {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .plan-item-price {
    padding: 10px 0;
    border-top: 4px solid #ddd;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .voice {
    padding: 55px 0 80px;
  }
  .voice .sec-title-01 {
    margin: 0 0 35px;
  }
  .voice-list {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
  }
  .voice-item {
    margin-bottom: 0;
    width: 47.2727%;
  }
  .voice-item-title {
    width: 56%;
    max-width: 290px;
  }
  .voice-item-detail {
    margin-top: -3px;
    padding: 30px 6%;
    border-radius: 30px;
  }
  .voice-item-head {
    margin-bottom: 25px;
  }
  .voice-item-img {
    width: 38%;
  }
  .voice-item-case {
    width: 56%;
  }
  .voice-item-case tr th {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .voice-item-case tr td {
    padding-left: 8%;
  }
  .voice-item-case tr td span {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .voice-item-name {
    margin-bottom: 0.7em;
  }
  .voice-item-name span {
    padding-right: 20px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .voice-item-text-01 {
    margin-bottom: 20px;
    padding: 0 5px;
    font-size: 33px;
    font-size: 3.3rem;
  }
  .voice-item-text-02 {
    line-height: 2;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .flow {
    padding: 70px 0 80px;
  }
  .flow-list {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 60px;
  }
  .flow-item {
    display: block;
    margin-bottom: 0;
    width: 22%;
  }
  .flow-item:nth-of-type(1), .flow-item:nth-of-type(2), .flow-item:nth-of-type(3), .flow-item:nth-of-type(4) {
    margin-bottom: 0;
  }
  .flow-item .img {
    margin: 0 auto;
    width: 66%;
    max-width: 171px;
  }
  .flow-item .img::after {
    display: none;
  }
  .flow-item .right {
    padding-top: 10px;
    width: 100%;
  }
  .flow-item .title {
    margin-bottom: 10px;
    text-align: center;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .company .sec-title-01 {
    margin-top: 0;
  }
  .company .sec-main-text {
    margin-bottom: 80px;
  }
  .company-member {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 10px 60px auto;
    width: 93.22%;
  }
  .company-member-title {
    position: absolute;
    z-index: 1;
    top: -16px;
    left: -45px;
    margin: 0;
    width: 180px;
  }
  .company-member-item {
    margin: 0;
    padding: 25px;
    width: 45.4545%;
    border-radius: 30px;
  }
  .company-member-img {
    top: 40px;
    left: -14%;
    width: 38.4%;
  }
  .company-member-right {
    margin-left: auto;
    width: 72%;
  }
  .company-member-top {
    margin-left: auto;
    width: 100%;
  }
  .company-member-name {
    margin-bottom: 20px;
    padding-bottom: 15px;
    width: 100%;
  }
  .company-member-name img {
    width: 160px;
  }
  .company-member-name::after {
    height: 4px;
  }
  .company-member-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .company-company {
    display: flex;
    align-items: center;
    margin: 0 10px 0 auto;
    width: 93.22%;
    border-radius: 30px;
    background-color: #fff;
  }
  .company-company-title {
    margin: 0;
    width: 36.5%;
    text-align: center;
  }
  .company-company-title img {
    width: 180px;
  }
  .company-company-detail {
    margin: 0;
    padding: 10px 0;
    width: 59%;
    border-radius: 0;
    background-color: transparent;
  }
  .company-company-detail dl {
    padding: 25px 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .company-company-detail dl dt {
    width: 9em;
  }
  .company-company-detail dl dd {
    padding-left: 10%;
  }
  .qa {
    padding-bottom: 65px;
  }
  .qa .sec-title-01 {
    margin-bottom: 10px;
  }
  .qa::after {
    width: calc(100% - 20px);
    max-width: 1020px;
    aspect-ratio: 34/1;
  }
  .qa-list {
    margin: 0 auto;
    max-width: 1020px;
  }
  .qa-list dl {
    margin-bottom: 30px;
    padding: 0 3% 30px;
  }
  .qa-list dl dt::before,
  .qa-list dl dd::before {
    width: 46px;
  }
  .qa-list dl dt {
    padding: 5px 0 20px 65px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .qa-list dl dd {
    padding: 25px 30px 25px 43px;
    width: calc(100% - 23px);
    border-radius: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .qa-list dl dd::before {
    top: 15px;
    left: -23px;
  }
  .contact .sec-main-text {
    margin-bottom: 70px;
    text-align: center;
  }
  .contact-title {
    margin: 0 auto 30px;
    width: 55%;
    max-width: 642px;
  }
  .contact-hubspot {
    margin: 0 auto 40px;
    padding: 50px;
    max-width: 920px;
    border-radius: 20px;
  }
  .contact-submit {
    max-width: 430px;
  }
}
@media (min-width: 1200px) {
  .kv-inner {
    margin: 0 auto 72px;
  }
}/*# sourceMappingURL=style.css.map */