@charset "UTF-8";

:root {
  --color-black: #000;
  --color-black-2: #111;
  --color-gray-1: #f7f7f7;
  --color-gray-2: #707070;
  --color-green: #06c755;
  --color-navy: #000048;
  --color-orange: #f77911;
  --color-red: #f03;
  --color-red-1: #ff6969;
  --color-white: #fff;
  --ff-ls-b: "LINESeedJPStd Bold";
  --ff-ls-eb: "LINESeedJPStd ExtraBold";
  --ff-ls-r: "LINESeedJPStd Regular";
  --ff-ls-t: "LINESeedJPStd Thin";
  --hover-duration: 0.3s;
  --hover-opacity-ratio: 0.6;
  --root-fz: 10;
  --root-fz: 10;
}
body {
  color: var(--color-black-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.backBtn {
  margin-top: 40px;
}
html {
  scrollbar-gutter: stable;
}
/* ---------------------------------------------
*  contents__inner
--------------------------------------------- */
.contents__inner {
  padding-block: 80px;
}
.contents__inner-2 {
  padding-block: 120px 80px;
}
@media screen and (max-width: 1023px) {
  .contents__inner {
    padding-block: 40px;
  }
  .contents__inner-2 {
    padding-block: 64px 40px;
  }
}
/* ---------------------------------------------
*  l-bg-gray
--------------------------------------------- */
.l-bg-gray {
  background: var(--color-gray-1);
}
@media screen and (max-width: 1023px) {
  .l-bg-gray .contents__inner {
    padding-bottom: 40px;
  }
}

/* ---------------------------------------------
*  l-cta__link
--------------------------------------------- */
.l-cta__link {
  align-items: center;
  border: 3px solid var(--color-white);
  border-radius: 45px;
  display: flex;
  height: 71px;
  justify-content: center;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  width: 398px;
}
.l-cta__link--orange {
  background: var(--color-orange);
  border: 3px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--ff-ls-b);
  font-size: 2.2rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-cta__link--orange:hover {
    background: var(--color-white);
    border: 3px solid var(--color-orange);
    color: var(--color-orange);
    text-decoration: none;
  }
}
.l-cta__link--white {
  background: var(--color-white);
  border: 3px solid var(--color-white);
  color: var(--color-navy);
  font-family: var(--ff-ls-b);
  font-size: 2.2rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-cta__link--white:hover {
    background: var(--color-navy);
    color: var(--color-white);
    text-decoration: none;
  }
}

/* ---------------------------------------------
*  l-h2title
--------------------------------------------- */
.l-h2title {
  font-family: var(--ff-ls-b);
  font-size: 3.2rem;
  padding-left: 31px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-h2title {
    font-size: 2rem;
    padding-left: 18px;
  }
  .l-h2title-small {
    font-size: 1.6rem;
  }
}
.l-h2title:before {
  background: var(--color-green);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
@media screen and (max-width: 1023px) {
  .l-h2title:before {
    height: 8px;
    width: 8px;
  }
}
/* ---------------------------------------------
*  l-note
--------------------------------------------- */
.l-note {
  color: var(--color-gray-2);
  font-family: var(--ff-ls-r);
  font-size: 1.2rem;
  line-height: calc(1.2rem * 2);
}
/* ---------------------------------------------
*  l-cta
--------------------------------------------- */
.l-cta {
  align-items: center;
  display: flex;
  height: 291px;
  justify-content: center;
  margin-inline: auto;
  margin-top: 40px;
  max-width: 1200px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-cta {
    height: 375px;
    margin-top: 0;
  }
  .l-cta-2 {
    margin-top: 40px;
  }
}
.l-cta__bg {
  bottom: 0;
  height: 291px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .l-cta__bg {
    height: 375px;
  }
}
.l-cta__inner {
  position: relative;
  z-index: 1;
}

.l-cta__bg img {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-cta__bg img {
    border-radius: unset;
    height: 375px;
  }
}
.l-cta__h2title {
  color: var(--color-white);
  font-family: var(--ff-ls-eb);
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .l-cta__h2title {
    font-size: 2.6rem;
    padding-inline: 20px;
  }
}
.l-cta__list {
  align-items: flex-end;
  display: flex;
  gap: min(16px, 16 / 1440 * 100vw);
  justify-content: center;
  margin-top: 16px;
}
@media screen and (max-width: 1023px) {
  .l-cta__list {
    align-items: center;
    flex-direction: column;
    padding-inline: 20px;
  }
}
.l-cta .l-cta__link {
  height: 68px;
}
@media screen and (max-width: 1023px) {
  .l-cta .l-cta__link {
    font-size: 1.4rem;
    height: 50px;
    min-width: 275px;
    width: 100%;
  }
}
.l-cta__item {
  text-align: center;
}
.l-cta__label {
  color: var(--color-white);
  font-family: var(--ff-ls-b);
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .l-cta__item--orange {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .l-cta .c-app-banner {
    margin-top: 26px;
  }
}

/* ---------------------------------------------
*  KV
--------------------------------------------- */
.c-kv {
  padding-inline: min(120px, 120 / 1440 * 100vw) min(38px, 38 / 1440 * 100vw);
  position: relative;
  width: 100%;
}
.c-kv .l-cta__link--orange {
  box-shadow: 0 1px 40px 0 rgba(247, 121, 17, 0.15);
}

@media screen and (max-width: 1023px) {
  .c-kv {
    height: auto;
    padding-inline: 0;
  }
}

.c-kv__inner {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 1282px;
}

@media screen and (max-width: 1023px) {
  .c-kv__inner {
    flex-direction: column;
    height: auto;
  }
}

.c-kv__txt {
  flex: 1;
  padding-top: 25px;
}

@media screen and (max-width: 1023px) {
  .c-kv__txt {
    order: 1;
    padding-inline: 20px;
    padding-top: 40px;
  }
}

.c-kvList {
  display: flex;
  gap: 24px;
  margin-top: 14px;
}

@media screen and (max-width: 1023px) {
  .c-kvList {
    display: none;
  }
}

.c-kvList__item {
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
}

.c-kvList__item:not(:first-of-type)::before {
  border-right: 1px solid var(--color-black);
  border-top: 1px solid var(--color-black);
  content: "";
  display: block;
  height: 4px;
  left: -15px;
  position: absolute;
  top: 6px;
  transform: rotate(45deg);
  width: 4px;
}
.c-kvList__txt {
  color: var(--color-black);
  font-family: var(--ff-ls-r);
}
.c-kvList__item:last-of-type .c-kvList__txt {
  font-family: var(--ff-ls-b);
}
.c-kv__container {
  align-items: center;
  display: flex;
  gap: min(164px, 164 / 1440 * 100vw);
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .c-kv__container {
    flex-direction: column;
    gap: 32px;
  }
}
.c-kv__H1title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}

@media screen and (max-width: 1023px) {
  .c-kv__H1title {
    align-items: center;
    font-size: 3.1rem;
    gap: 12px;
    margin-top: 0;
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .c-kv__H1title img {
    max-width: 300px;
    width: 100%;
  }
}
.c-kv__catch {
  display: inline-block;
  font-family: var(--ff-ls-eb);
  font-size: min(24px, 24 / 1440 * 100vw);
  line-height: calc(2.4rem * 1);
}
@media screen and (max-width: 1023px) {
  .c-kv__catch {
    font-size: 1.6rem;
  }
}
.c-kvtxt {
  font-family: var(--ff-ls-b);
  font-size: min(16px, 16 / 1440 * 100vw);
  letter-spacing: 0.06em;
  line-height: calc(1.6rem * 1.8);
  margin-top: 24px;
}

@media screen and (max-width: 1023px) {
  .c-kvtxt {
    font-family: var(--ff-ls-r);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-inline: auto;
    margin-top: 16px;
    text-align: center;
  }
}
.c-kv__cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  max-width: 398px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-kv__cta {
    display: none;
  }
}
.c-app-banner {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-app-banner {
    background: #f77911;
    border-radius: 20px;
    display: block;
    margin-top: 32px;
    padding: 32px 20px 20px;
    position: relative;
  }
  .c-app-banner__title {
    left: 50%;
    position: absolute;
    top: -16px;
    transform: translateX(-50%);
  }
  .c-app-banner__title {
    max-width: 255px;
    width: 100%;
  }
  .c-app-banner__subtitle {
    color: var(--color-white);
    font-family: var(--ff-ls-b);
    font-size: 1.6rem;
    text-align: center;
  }
  .c-app-banner__store-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }
  .c-app-banner__store-img {
    height: 47px;
    width: auto;
  }
}
.c-kv__ctaLabel {
  font-family: var(--ff-ls-b);
  font-size: 1.6rem;
  line-height: calc(1.6rem * 1);
}

.c-kvLink__Area {
  margin-top: 64px;
}

@media screen and (max-width: 1023px) {
  .c-kvLink__Area {
    margin-top: 32px;
    text-align: center;
  }
}

.c-kvLink {
  align-items: center;
  background: var(--color-green);
  border: 3px solid var(--color-white);
  border-radius: 999em;
  box-shadow: 10px 10px 40px rgba(6, 199, 85, 0.15);
  color: var(--color-gray-1);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 2.2rem;
  height: 68px;
  justify-content: center;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  width: 335px;
}

@media screen and (max-width: 1023px) {
  .c-kvLink {
    font-size: 1.6rem;
    height: 62px;
    margin-inline: auto;
    max-width: 280px;
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-kvLink:hover {
    background: var(--color-white);
    border: 3px solid var(--color-green);
    color: var(--color-green);
    text-decoration: none;
  }
}
@media screen and (max-width: 1023px) {
  .c-kv__left {
    order: 1;
  }
}
@media screen and (max-width: 1023px) {
  .c-kvImg-Area img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
  }
}
/* ---------------------------------------------
*  LINE公式アカウントとは
--------------------------------------------- */
.c-about__inner {
  align-items: center;
  display: flex;
  gap: min(110px, 110 / 1440 * 100vw);
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .c-about__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.c-about__text {
  font-family: var(--ff-ls-r);
  font-size: 1.6rem;
  line-height: calc(34 / 16);
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .c-about__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
/* ---------------------------------------------
*  リピーター
--------------------------------------------- */
.c-repeater {
  padding-top: 120px;
}
@media screen and (max-width: 1023px) {
  .c-repeater {
    padding-top: 64px;
  }
}
.c-repeater .l-h2title:before {
  background: var(--color-green);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 20%;
  transform: translateY(-20%);
  width: 10px;
}
@media screen and (max-width: 1023px) {
  .c-repeater .l-h2title:before {
    height: 8px;
    top: 17%;
    width: 8px;
  }
}
.c-repeater__item {
  margin-top: 20px;
}
.c-repeater__card {
  align-items: center;
  background: var(--color-gray-1);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding-inline: min(110px, 110 / 1440 * 100vw) min(20px, 20 / 1440 * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-repeater__card {
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
}
.c-repeater__h3title {
  font-family: var(--ff-ls-b);
  font-size: 2.9rem;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .c-repeater__h3title {
    font-size: 2rem;
    line-height: 1.45;
  }
  .c-repeater__h3title-small {
    line-height: 1;
  }
}
.c-repeater__h3title-emphasis {
  color: var(--color-green);
}
.c-repeater__h3title-number {
  color: var(--color-green);
  font-size: 4.8rem;
}
@media screen and (max-width: 1023px) {
  .c-repeater__h3title-number {
    font-size: 4rem;
  }
}
.c-repeater__h3title sub {
  color: var(--color-black-2);
  font-size: 1.6rem;
  padding-inline: min(4px, 4 / 1440 * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-repeater__h3title sub {
    font-size: 1.2rem;
  }
}
.c-repeater__text {
  font-family: var(--ff-ls-r);
  font-size: 1.6rem;
  line-height: calc(32 / 16);
}
@media screen and (max-width: 1023px) {
  .c-repeater__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 20px;
  }
}
.c-repeater__text sub {
  font-size: 1.2rem;
}
.c-repeater__item .l-note {
  line-height: calc(1.2rem * 1.5);
  margin-top: 16px;
  padding-left: min(40px, 40 / 1440 * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-repeater__item .l-note {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}
.c-repeater__item .c-repeater__note-mark {
  margin-right: 4px;
}
.c-repeater .l-cta {
  margin-top: 120px;
}
@media screen and (max-width: 1023px) {
  .c-repeater__image {
    display: block;
    margin-top: 20px;
  }
}

/* ---------------------------------------------
*  充実した便利な機能で集客から販促まで完結
--------------------------------------------- */
@media screen and (min-width: 1024px) {
  .c-function {
    margin-top: 80px;
  }
}

.c-function__inner {
  display: grid;
  gap: 12px min(110px, 110 / 1440 * 100vw);
  grid-template-areas:
    "list img"
    "title img";
  grid-template-columns: 1fr 27.5%;
  margin-top: 64px;
}
@media screen and (max-width: 1023px) {
  .c-function__inner {
    align-items: start;
    display: grid;
    gap: 14px 4.18%;
    grid-template-areas:
      "list img"
      "title title";
    grid-template-columns: 53.73% 42.9%;
    margin-top: 24px;
  }
}
.c-function__left {
  align-content: start;
  display: grid;
  gap: 12px;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .c-function__left {
    display: contents;
  }
}
@media screen and (max-width: 1023px) {
  .c-repeater__image {
    display: grid;
    gap: 20px;
    grid-template-areas:
      "list img"
      "title title";
    grid-template-columns: 1fr 42%;
  }
}
.c-function__list {
  display: grid;
  gap: 16px min(24px, 24 / 1440 * 100vw);
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  margin-top: 0;
}
@media screen and (max-width: 1023px) {
  .c-function__listwrap {
    aspect-ratio: 0.63;
    grid-area: list;
    height: auto;
    overflow-y: scroll;
    width: 100%;
  }
  .c-function__list {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    justify-content: space-between;
    margin-top: 0;
  }
}
.c-function__img {
  display: none;
  grid-area: img;
  max-width: 299px;
  width: 100%;
}
.c-function__img img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-function__img.active {
    grid-area: img;
    max-width: 310px;
    width: 100%;
  }
}
.c-function__img.active {
  display: block;
}
.c-function__link {
  align-items: flex-start;
  background-color: var(--color-green);
  background-image: linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: 100%;
  background-size: 300%;
  border: none;
  border-radius: 40px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-family: var(--ff-ls-b);
  font-size: 1.4rem;
  justify-content: center;
  line-height: 1.5;
  min-height: 52px;
  padding: 3px 50px 3px 28px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-function__link {
    font-size: 1.2rem;
    height: 50px;
    min-height: unset;
    padding: 15px 50px 15px 20px;
  }
}
.c-function__item.active .c-function__link {
  background-position: 0;
  color: #3e3e3e;
}
.c-function__link .defaultBtn__arrow01:after {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/3/img/circle-arrow02.svg) 0 0 no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 26px;
  position: absolute;
  right: 13px;
  top: calc(50% - 14px);
  vertical-align: middle;
  width: 26px;
}
.c-function__item.active .c-function__link .defaultBtn__arrow01:after {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/3/img/circle-arrow01.svg) 0 0 no-repeat;
}
.c-function__title {
  background: var(--color-white);
  border-radius: 12px;
  display: none;
  padding: 40px min(71px, 71 / 1440 * 100vw);
}
@media screen and (max-width: 1023px) {
  .c-function__title {
    padding: 20px;
  }
}
.c-function__title.active {
  display: block;
}
.c-function__H3title {
  border-bottom: 1px solid var(--color-black);
  font-family: var(--ff-ls-b);
  font-size: 2rem;
  padding-bottom: 16px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .c-function__H3title {
    font-size: 1.6rem;
    padding-bottom: 8px;
  }
}
.c-function__txt {
  font-family: var(--ff-ls-r);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-top: 32px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .c-function__txt {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
#function__title .whiteBtn {
  margin-bottom: 0;
  margin-top: 32px;
}
@media screen and (max-width: 1023px) {
  #function__title {
    grid-area: title;
  }
  #function__title .whiteBtn {
    margin-top: 20px;
  }
}
#function__title .whiteBtn a {
  min-height: 50px;
}
#function__title .whiteBtn a span {
  font-family: var(--ff-ls-b);
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  #function__title {
    grid-area: title;
  }
}
/* ---------------------------------------------
*    表
--------------------------------------------- */
.c-compare {
  margin-top: 80px;
}

.c-compare__inner {
  margin-inline: auto;
  max-width: 1200px;
}

/* PC */
.c-compare__table {
  display: block;
}

.c-compare__head {
  display: grid;
  gap: 20px;
  grid-template-columns: min(156px, 156 / 1440 * 100vw) min(502px, 502 / 1440 * 100vw) min(502px, 502 / 1440 * 100vw);
  margin-bottom: 10px;
}

.c-compare__head-label {
  min-height: 55px;
}

.c-compare__head-item {
  align-items: center;
  border-radius: 4px;
  color: var(--color-white);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 2rem;
  justify-content: center;
  letter-spacing: -0.03em;
  min-height: 55px;
  padding: 10px 16px;
  text-align: center;
}
.c-compare__head-small {
  font-size: 1.6rem;
}
.c-compare__head-item--oa {
  background-color: #06c755;
}

.c-compare__head-item--personal {
  background-color: #aeaeae;
}

.c-compare__head-main {
  color: #fff;
  font-family: "LINESeedJPStd Bold";
  font-size: 2rem;
  line-height: 1.4;
}

.c-compare__head-sub {
  color: #fff;
  font-family: "LINESeedJPStd Bold";
  font-size: 1.6rem;
  line-height: 1.4;
}

.c-compare__body {
  column-gap: 20px;
  display: grid;
  grid-template-columns: min(156px, 156 / 1440 * 100vw) min(502px, 502 / 1440 * 100vw) min(502px, 502 / 1440 * 100vw);
}

.c-compare__row {
  display: grid;
  gap: 20px;
  grid-template-columns: min(156px, 156 / 1440 * 100vw) min(502px, 502 / 1440 * 100vw) min(502px, 502 / 1440 * 100vw);
  position: relative;
}

.c-compare__row::after {
  background-color: #d3d3d3;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.c-compare__row:last-child::after {
  display: none;
}

.c-compare__label {
  align-items: center;
  color: var(--color-black-2);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 1.6rem;
  justify-content: center;
  text-align: center;
}

.c-compare__cell {
  align-items: center;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  min-height: 120px;
  padding: 24px;
  padding: 28px 24px;
  text-align: center;
  text-align: center;
}

.c-compare__cell--oa {
  color: #06c755;
  font-family: var(--ff-ls-b);
  font-size: 2rem;
  line-height: 1.6;
}
.c-compare__body > div {
  position: relative;
}
.c-compare__body > div::after {
  background: #d3d3d3;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: -20px;
  z-index: 1;
}

.c-compare__cell--personal {
  color: #111;
  font-family: "LINESeedJPStd Bold";
  font-size: 1.6rem;
  line-height: 1.6;
}
.c-compare__cell--personal:after {
  content: "";
  right: 0 !important;
}
.c-compare__body > div:nth-last-child(-n + 3)::after {
  display: none !important;
}
.c-compare__tab,
.c-compare__panels {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-compare {
    margin-top: 40px;
  }

  .c-compare__table {
    display: block;
  }

  .c-compare__inner {
    margin-inline: auto;
  }

  .c-compare__head {
    display: grid;
    gap: 2px;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    grid-template-columns: 1fr auto;
    margin-bottom: 8px;
    margin-left: 80px;
  }

  .c-compare__head > div:first-child {
    display: none;
  }

  .c-compare__head-item {
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    font-size: 1.4rem;
    min-height: 45px;
    opacity: 0.6;
    padding: 7px 5px;
    transition: opacity 0.3s ease;
  }

  .c-compare__head-item.is-active {
    opacity: 1;
  }

  .c-compare__head-small {
    font-size: 1.2rem;
  }

  .c-compare__body {
    border-radius: 0 0 4px 4px;
    column-gap: 0;
    display: grid;
    grid-template-columns: 92px 1fr;
    overflow: hidden;
  }

  .c-compare__label {
    font-size: 1.4rem;
    line-height: 1.5;
    min-height: 96px;
  }

  .c-compare__label--message {
    grid-row: span 3;
  }

  .c-compare__cell {
    background: var(--color-white);
    min-height: 96px;
    padding: 20px 14px;
  }

  .c-compare__cell--oa,
  .c-compare__cell--personal {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  /* 罫線 */
  .c-compare__label::after,
  .c-compare__cell::after {
    right: 0;
  }

  /* 初期：personalを隠す */
  .c-compare__table.is-oa .c-compare__cell--personal {
    display: none;
  }

  .c-compare__table.is-personal .c-compare__cell--oa {
    display: none;
  }

  /* SP時は表示列が1つなので2カラムにする */
  .c-compare__table.is-oa .c-compare__body,
  .c-compare__table.is-personal .c-compare__body {
    grid-template-columns: 80px 1fr;
  }
  .c-compare__head-item--personal.is-active {
    background-color: #aeaeae;
  }
}
.c-compare__label--message {
  grid-row: span 3;
}
@keyframes compareFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-compare .defaultBtn {
  margin-block: 40px 0;
}

/* ---------------------------------------------
*    CRMプラス
--------------------------------------------- */
.c-crmplus {
  padding-top: 80px;
}
@media screen and (max-width: 1023px) {
  .c-crmplus {
    padding-top: 0;
  }
}
.c-crmplus__inner {
  background: #000048;
  border-radius: 15px;
  margin-inline: auto;
  max-width: 1200px;
  overflow: hidden;
  padding: 26px min(17px, 17 / 1440 * 100vw) 19px;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__inner {
    border-radius: 0;
    padding: 40px 20px;
  }
}

.c-crmplus__inner::after {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/img/bg_crmplus.svg) center center no-repeat;
  content: "";
  height: 451px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__inner::after {
    background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/img/bg_crmplus.svg) center center repeat-y;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }
}

.c-crmplus__h2title {
  color: #fff;
  font-family: var(--ff-ls-eb);
  font-size: 3.6rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__h2title {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
  }
}

.c-crmplus__h2title-small {
  font-size: 2.6rem;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__h2title-small {
    font-size: 2rem;
  }
}

.c-crmplus__subTxt {
  color: #fff;
  font-family: "LINESeedJPStd Bold";
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__subTxt {
    font-size: 1.8rem;
  }
}

.c-crmplus__list {
  display: flex;
  gap: min(13px, 13 / 1440 * 100vw);
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__list {
    flex-direction: column;
    gap: 16px;
  }
}

.c-crmplus__item {
  align-items: center;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 21px;
  padding: 38px 16px;
}

@media screen and (max-width: 1023px) {
  .c-crmplus__item {
    gap: 16px;
    padding: 30px 16px;
  }
}

.c-crmplus__itemBlock {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.c-crmplus__h3title {
  color: #000;
  font-family: "LINESeedJPStd ExtraBold";
  font-size: 2.7rem;
  margin-top: 22px;
}
@media screen and (max-width: 1023px) {
  .c-crmplus__h3title {
    line-height: 1;
    margin-top: 20px;
  }
}
.c-crmplus__itemTxt {
  font-family: "LINESeedJPStd Bold";
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-top: 18px;
  text-align: center;
}

.c-crmplus .whiteBtn {
  margin-block: auto 0;
}
/* ---------------------------------------------
*    c-app
--------------------------------------------- */
.c-app-pc__inner {
  background: var(--color-gray-1);
  border-radius: 12px;
  max-width: 1200px;
  padding-block: 60px 40px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-app-pc__inner {
    background: var(--color-gray-1);
    padding-block: 20px 0;
  }
}
.c-app-pc .contents__inner {
  padding-block: 60px 34px;
  position: relative;
}

@media (max-width: 1023px) {
  .c-app-pc .contents__inner {
    padding-bottom: 0;
    padding-inline: 10px;
  }
}

.c-app-pc__H2title {
  color: var(--color-green);
  font-family: var(--ff-ls-eb);
  font-size: 3.6rem;
  line-height: calc(3.6rem * 1.5);
  text-align: center;
}

@media (max-width: 1023px) {
  .c-app-pc__H2title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.c-app-pc__txt {
  font-family: var(--ff-ls-b);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 1023px) {
  .c-app-pc__txt {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.c-app-pc__container {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1023px) {
  .c-app-pc__container {
    display: none;
  }
}
.c-app-pc__body {
  align-items: center;
  background: #fff;
  border-radius: 11px;
  display: flex;
  gap: 53px;
  justify-content: center;
  margin-inline: auto;
  max-width: 760px;
  max-width: 760px;
  padding: 30px 56px;
}

@media (max-width: 1023px) {
  .c-app-pc__body {
    display: none;
  }
}

.c-app-pc__left {
  text-align: left;
}

.c-app-pc__h3title {
  color: #000;
  font-family: var(--ff-ls-b);
  font-size: 2.3rem;
  letter-spacing: 0.03em;
}

.c-app-pc__list {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.c-app-pc__item img {
  height: 66px;
  width: auto;
}

.c-app-pc__item a {
  transition: opacity 0.3s ease-out;
}

.c-app-pc__item a:hover {
  opacity: 0.7;
}

.c-app-pc__QR {
  max-width: 172px;
  text-align: center;
  width: 100%;
}

.c-app-pc__dlTxt {
  font-family: var(--ff-ls-b);
  font-size: 1.2rem;
}

.c-app-pc__notes {
  color: var(--color-gray-2);
  font-size: 1.2rem;
  margin-inline: auto;
  margin-top: 12px;
  max-width: 760px;
  text-align: right;
}

.c-app-pc__img-left {
  bottom: 0;
  left: 39px;
  max-width: 192px;
  position: absolute;
  width: 100%;
}

.c-app-pc__img-right {
  bottom: 0;
  max-width: 127px;
  position: absolute;
  right: 50px;
  width: 100%;
}

.c-app-pc__img-sp {
  margin-inline: auto;
  margin-top: 20px;
  max-width: 350px;
  width: 100%;
}

/* ---------------------------------------------
*    c-plan
--------------------------------------------- */
.c-plan {
  padding-top: 120px;
}
@media (max-width: 1023px) {
  .c-plan {
    padding-top: 64px;
  }
}
.c-plan__section {
  background: var(--color-gray-1);
  border-radius: 12px;
  margin-top: 40px;
  padding: 64px min(55px, 55 / 1440 * 100vw);
}
@media (max-width: 1023px) {
  .c-plan__section {
    margin-top: 20px;
    padding: 20px;
  }
}
.c-plan__section--simulation {
  margin-top: 20px;
}
.c-plan__heading {
  font-family: var(--ff-ls-b);
  font-size: 3.2rem;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-plan__heading {
    font-size: 2.4rem;
  }
}
.c-plan__notice {
  background: var(--color-white);
  border-radius: 8px;
  margin-top: 20px;
  padding-block: 20px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-plan__notice {
    padding: 20px;
  }
}
.c-plan__notice-text {
  font-family: var(--ff-ls-b);
  text-align: center;
}
@media (max-width: 1023px) {
  .c-plan__notice-text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.c-plan__notice-text a {
  color: var(--color-black-2);
  font-family: var(--ff-ls-b);
  text-decoration: underline;
}
.c-plan__notice-text a:hover {
  text-decoration: none;
}
.c-plan .l-note {
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 1023px) {
  .c-plan .l-note {
    line-height: 1.5;
    margin-top: 20px;
    text-align: left;
  }
}
.c-plan .defaultBtn {
  margin-block: 48px 0;
}
@media (max-width: 1023px) {
  .c-plan .defaultBtn {
    margin-top: 20px;
  }
}
.c-plan .defaultBtn__arrow01 {
  font-family: var(--ff-ls-b);
  font-size: 1.4rem;
}
@media (max-width: 1023px) {
  .c-plan .defaultBtn__arrow01 {
    text-decoration: none;
  }
}
.c-plan .defaultBtn:hover .defaultBtn__arrow01 {
  text-decoration: none;
}
.c-plan__image {
  display: block;
  margin-top: 48px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .c-plan__image {
    margin-top: 20px;
  }
}
.c-plan__section--simulation .c-plan__image::before {
  background: url(/sites/default/files/media/jp/service/line-official-account/202604/img/icon_plan-02.png) center center no-repeat;
  background-size: contain;
  content: "";
  height: 184px;
  position: absolute;
  right: 5px;
  top: -165px;
  width: 420px;
}
@media screen and (max-width: 1100px) {
  .c-plan__section--simulation .c-plan__image::before {
    display: none;
  }
}
.c-plan__cta-label {
  color: var(--color-green);
  display: block;
  font-family: var(--ff-ls-b);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
/* ---------------------------------------------
*    事例
--------------------------------------------- */
.c-case {
  padding-top: 40px;
}
@media screen and (max-width: 1100px) {
  .c-case {
    padding-top: 0;
  }
}
.c-case__txt {
  font-family: var(--ff-ls-b);
  font-size: 1.6rem;
  margin-top: 10px;
  text-align: left;
}
.case__inner {
  margin-inline: auto;
  margin-top: 32px;
  max-width: 1200px;
}
.c-case .tab {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab__link {
  align-items: center;
  background: var(--color-green);
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex;
  font-family: "LINESeedJPStd Bold", sans-serif;
  justify-content: center;
  letter-spacing: 3px;
  padding: 14px 10px;
  text-align: center;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 1100px) {
  .tab__link {
    padding: 11px 5px;
  }
}
.tab__item {
  color: #fff;
  font-family: "LINESeedJPStd Bold", sans-serif;
  font-weight: 700;
  width: 24.75%;
}
.tab__item.active .tab__link {
  background: #f2f4f8;
  color: var(--color-green);
  padding: 20px 0 18px;
}
.tab__area {
  display: none;
}
.tab__area.active {
  background: #f2f4f8;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
}

.case__menu--resaurant:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/restaurant-icon-white.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 15px;
}

@media (max-width: 1023px) {
  .case__menu--resaurant:before {
    display: none;
  }
}

.case__menu--ec:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/ec-icon-white.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 17px;
  margin-right: 10px;
  width: 21px;
}

@media (max-width: 1023px) {
  .case__menu--ec:before {
    display: none;
  }
}

.case__menu--beauty:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/beauty-icon-white.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 13px;
  margin-right: 10px;
  width: 20px;
}

@media (max-width: 1023px) {
  .case__menu--beauty:before {
    display: none;
  }
}

.case__menu--education:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/education-icon-white.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 19px;
  margin-right: 10px;
  width: 21px;
}

@media (max-width: 1023px) {
  .case__menu--education:before {
    display: none;
  }
}

.case__menu--link span {
  letter-spacing: 0.3em;
}

.case__detail {
  padding: 40px;
}

@media (max-width: 1023px) {
  .case__detail {
    padding: 20px;
  }
}
.case__detail .pageTxtLink {
  text-align: right;
}
@media (max-width: 1023px) {
  .case__detail .pageTxtLink {
    text-align: left;
  }
}
.case__detail .pageTxtLink a {
  color: var(--color-black-2);
}

.case__list {
  display: flex;
  gap: min(20px, 20 / 1440 * 100vw);
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .case__list {
    flex-direction: column;
    gap: 20px;
  }
}

.case__item {
  background: #fff;
  border-radius: 10px;
  flex: 1;
  padding: 32px;
}

@media (max-width: 1023px) {
  .case__item {
    padding: 16px;
    width: 100%;
  }
}

.case__item--title {
  display: flex;
}

.case__item--img {
  max-width: 140px;
}

@media (max-width: 1023px) {
  .case__item--img {
    max-width: 100px;
    width: 100%;
  }
}

.case__item--img img {
  width: 100%;
}
@media (max-width: 1023px) {
  .case__item--img img {
    max-width: 100px;
  }
}
.case__item--H3title {
  color: var(--color-green);
  font-family: var(--ff-ls-eb);
  font-size: 2rem;
  line-height: 1.278;
  margin-left: 20px;
  text-align: left;
}

@media (max-width: 1023px) {
  .case__item--H3title {
    font-size: 1.4rem;
    letter-spacing: unset;
    margin-left: 16px;
  }
}

.case__item--line {
  background: linear-gradient(transparent 50%, #ffe500 0%);
}

.case__item--company {
  color: var(--color-black);
  display: block;
  font-family: var(--ff-ls-b);
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .case__item--company {
    font-size: 1.2rem;
    margin-top: 16px;
  }
}

.case__item--txt {
  background: #fff;
  font-family: var(--ff-ls-r);
  font-size: 1.6rem;
  line-height: calc(1.6rem * 1.6);
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .case__item--txt {
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    line-height: 1.6;
    margin-top: 16px;
    min-height: auto;
  }
}

.case__item--link {
  align-items: center;
  color: var(--color-green);
  display: flex;
  font-family: "LINESeedJPStd Bold", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  justify-content: flex-end;
  margin-top: 10px;
}

.case__item--link:after {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/202307/case-icon.png) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 25px;
  margin-left: 11px;
  width: 25px;
}

.active .case__menu--resaurant:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/restaurant-icon.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 15px;
}

@media (max-width: 1023px) {
  .active .case__menu--resaurant:before {
    display: none;
  }
}

.active .case__menu--ec:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/ec-icon.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 17px;
  margin-right: 10px;
  width: 21px;
}

@media (max-width: 1023px) {
  .active .case__menu--ec:before {
    display: none;
  }
}

.active .case__menu--beauty:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/beauty-icon.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 13px;
  margin-right: 10px;
  width: 20px;
}

@media (max-width: 1023px) {
  .active .case__menu--beauty:before {
    display: none;
  }
}

.active .case__menu--education:before {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/2/img/education-icon.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 19px;
  margin-right: 10px;
  width: 21px;
}
@media (max-width: 1023px) {
  .active .case__menu--education:before {
    display: none;
  }
}

/* ---------------------------------------------
*  3step
--------------------------------------------- */
.c-3step__list {
  display: flex;
  gap: min(42px, 42 / 1440 * 100vw);
  justify-content: flex-start;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .c-3step__list {
    flex-direction: column;
    gap: 30px;
  }
}
.c-3step__item {
  flex: 1;
  position: relative;
}
@media (max-width: 1023px) {
  .c-3step__item {
    padding-bottom: 14px;
  }
}
.c-3step__item:not(:last-of-type):after {
  border-bottom: 11px solid transparent;
  border-left: 14px solid #000;
  border-right: 0;
  border-style: solid;
  border-top: 11px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: -26px;
  top: 198px;
  width: 0;
}
@media (max-width: 1023px) {
  .c-3step__item:not(:last-of-type):after {
    bottom: -14px;
    left: 50%;
    right: unset;
    top: unset;
    transform: translateX(-50%) rotate(90deg);
  }
}
.c-3step__h3title {
  align-items: center;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.03);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 1.9rem;
  height: 61px;
  justify-content: center;
  position: relative;
}
@media (max-width: 1023px) {
  .c-3step__h3title {
    box-shadow: none;
    font-size: 1.6rem;
    height: 48px;
  }
}
.c-3step__num {
  color: var(--color-green);
  font-family: var(--ff-ls-b);
  font-size: 3.1rem;
  left: -9px;
  position: absolute;
  top: -12px;
}
@media (max-width: 1023px) {
  .c-3step__num {
    font-size: 2.8rem;
  }
}
.c-3step__imgBlock {
  cursor: pointer;
  margin-top: 30px;
  position: relative;
  text-align: center;
}
@media (max-width: 1023px) {
  .c-3step__imgBlock {
    margin-top: 14px;
  }
}
.c-3step__imgBlock img {
  width: 100%;
}
.c-3step__imgBlock:after {
  background: url(/sites/default/files/media/jp/service/line-official-account/202604/img/icon_plus.svg) center center no-repeat;
  bottom: 7px;
  content: "";
  height: 20px;
  position: absolute;
  right: 10px;
  width: 20px;
}
.c-3step__txt {
  font-family: var(--ff-ls-r);
  font-size: 1.4rem;
  margin-top: 25px;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-3step__txt {
    margin-top: 14px;
  }
}
.c-3step__item .pageTxtLink {
  margin-top: 10px;
}
.c-3step__item .pageTxtLink a {
  font-family: var(--ff-ls-b);
  font-size: 1.2rem;
}
.c-step-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.c-step-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.c-step-modal__overlay {
  background: #000;
  inset: 0;
  opacity: 0.6;
  position: absolute;
}

.c-step-modal__content {
  left: 50%;
  max-height: calc(100vh - 40px);
  max-width: calc(100vw - 40px);
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -46%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.c-step-modal.is-open .c-step-modal__content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.c-step-modal__image-wrap {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.c-step-modal__image {
  display: block;
  height: auto;
  max-height: calc(100vh - 80px);
  max-width: calc(100vw - 40px);
  width: auto;
}

.c-step-modal__close {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: #111;
  cursor: pointer;
  display: flex;
  font-size: 2.4rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 40px;
  z-index: 1;
}

body.is-step-modal-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .c-step-modal__content {
    max-width: calc(100vw - 24px);
  }

  .c-step-modal__image {
    max-height: calc(100vh - 120px);
    max-width: calc(100vw - 24px);
  }

  .c-step-modal__close {
    font-size: 2rem;
    height: 36px;
    right: -8px;
    top: -8px;
    width: 36px;
  }
}
/* ---------------------------------------------
*  サポート
--------------------------------------------- */
.c-support__list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: min(48px, 48 / 1440 * 100vw) min(20px, 20 / 1440 * 100vw);
  justify-content: flex-start;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .c-support__list {
    flex-direction: column;
    gap: 48px;
  }
}
.c-support__item {
  display: flex;
  flex-direction: column;
  width: 32.17%;
}
@media (max-width: 1023px) {
  .c-support__item {
    width: 100%;
  }
}
.c-support__link {
  background: var(--color-gray-1);
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 10px;
  overflow: hidden;
  padding-bottom: 32px;
  width: 100%;
}
.c-support__detail {
  flex: 1;
  padding: 20px 32px 14px;
}
.c-support__title {
  text-align: center;
}
.c-support__title span {
  align-items: center;
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 2.6rem;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 1023px) {
  .c-support__title span {
    align-items: center;
    font-size: 2rem;
  }
}
.c-support__title span:before,
.c-support__title span:after {
  background: #ccc;
  content: "";
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}
.c-support__imgArea {
  overflow: hidden;
}
.c-support__imgArea img {
  transition: transform 0.3s;
  width: 100%;
}
.c-support__link:hover {
  text-decoration: none;
}
.c-support__link:hover .c-support__imgArea img {
  transform: scale(1.05);
}
.c-support__label {
  align-items: center;
  background: var(--color-navy);
  border-radius: 4px;
  color: var(--color-white);
  display: inline-flex;
  font-family: var(--ff-ls-b);
  font-size: 1.3rem;
  height: 28px;
  justify-content: center;
  line-height: 1;
  padding-inline: 8px;
}
.c-support__txt {
  color: var(--color-black-2);
  font-family: var(--ff-ls-b);
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 14px;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .c-support__txt {
    font-size: 1.4rem;
  }
}
.c-support__txt-small {
  color: var(--color-black-2);
  font-family: var(--ff-ls-b);
  font-size: 1.4rem;
  margin-top: 14px;
  text-align: left;
  text-decoration: none;
}
.c-support__btn {
  align-items: center;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 50px;
  display: flex;
  height: 52px;
  justify-content: center;
  margin-inline: auto;
  margin-top: 14px;
  max-width: 328px;
  position: relative;
  text-align: center;
  width: 98%;
}
@media (max-width: 1023px) {
  .c-support__btn {
    max-width: 295px;
  }
}
.c-support__btn--txt {
  color: var(--color-navy);
  font-family: var(--ff-ls-b);
  font-size: 1.4rem;
}
.c-support__btn:after {
  align-items: center;
  background-color: var(--color-navy);
  border-radius: 100%;
  color: var(--color-white);
  content: "\e900";
  display: flex;
  font-family: "linebiz-icon";
  font-size: 16px;
  height: 56px;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: scale(0.5) translateY(-50%);
  transform-origin: 100% 0;
  transition: all 0.2s var(--transition-default);
  width: 56px;
}
.c-support__link:hover .c-support__btn--txt {
  text-decoration: none;
}
.c-support__btn:hover {
  background: var(--color-navy);
}
.c-support__btn:hover .c-support__btn--txt {
  color: var(--color-white);
  text-decoration: none;
}
.c-support__btn:hover::after {
  background-color: var(--color-white);
  color: var(--color-navy);
}
.c-support__item .pageTxtLink {
  margin-top: 10px;
  text-align: center;
}
/* ---------------------------------------------
*  よくある質問
--------------------------------------------- */

@media (min-width: 1024px) {
  .c-faq {
    padding-top: 40px;
  }
}
.c-faq__inner {
  margin-top: 32px;
}
#faq .tab {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#faq .tab__item {
  color: #fff;
  font-family: "LINESeedJPStd Bold", sans-serif;
  font-weight: 700;
  width: 24.75%;
}
#faq .tab__link {
  letter-spacing: 1px;
}
@media (max-width: 1023px) {
  #faq .tab__link {
    letter-spacing: unset;
  }
}
#faq .tab__item.active .tab__link {
  background: #f2f4f8;
  color: var(--color-green);
  padding: 20px 0 18px;
}

@media (max-width: 1023px) {
  #faq .tab__item.active .tab__link {
    min-height: 63px;
    padding: 18px 4px 17px;
  }
}

#faq .tab__item02 {
  color: #fff;
  font-family: "LINESeedJPStd Bold", sans-serif;
  font-weight: 700;
  width: 24.75%;
}

@media (max-width: 1023px) {
  #faq .tab__item02 {
    font-size: 1.2rem;
    width: calc(25% - 2px);
  }
}
#faq .tab__item02 .tab__link {
  border-radius: 10px;
}
@media (max-width: 1023px) {
  #faq .tab__item02 .tab__link {
    height: 50px;
  }
}
#faq .tab__item02.active div {
  background: #f2f4f8;
  color: var(--color-green);
}

#faq .c-acc-faq {
  display: none;
  margin-top: 10px;
}
#faq .c-acc-faq.active {
  display: block;
}
@media (max-width: 1023px) {
  #faq .tab__item02:nth-of-type(n + 3) {
    margin-top: 4px;
  }
}
.c-acc-faq__item {
  background-color: var(--color-gray-1);
  border-radius: 10px;
  position: relative;
  text-align: justify;
  transition: background-color ease-out 0.3s;
}
.c-acc-faq__item + .c-acc-faq__item {
  margin-top: 10px;
}

.c-acc-faq__head {
  align-items: center;
  background: var(--color-gray-1);
  border: none;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  padding: 16px 30px;
  transition: background-color ease-out 0.3s;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head {
    gap: 18px;
    padding: 18px 12px 18px 15px;
  }
}
.c-acc-faq__head-left {
  align-items: center;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head-left {
    gap: 7px;
  }
}
.c-acc-faq__head-q {
  color: var(--color-green);
  flex-shrink: 0;
  font-family: var(--ff-ls-eb);
  font-size: calc(30 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head-q {
    font-size: calc(24 / var(--root-fz) * 1rem);
  }
}
.c-acc-faq__head-txt {
  color: var(--color-black);
  display: block;
  font-family: var(--ff-ls-b);
  font-size: calc(18 / var(--root-fz) * 1rem);
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head-txt {
    font-size: calc(14 / var(--root-fz) * 1rem);
    line-height: 1.5714285714;
  }
}
.c-acc-faq__head-arw {
  background: url(/sites/default/files/media/jp/service/line-official-account/202604/img/icon_arw_faq.svg) no-repeat center center/contain;
  flex-shrink: 0;
  height: 11px;
  transform: rotate(180deg);
  transition: transform 0.3s;
  width: 20px;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__head-arw {
    height: 7px;
    width: 13px;
  }
}
.c-acc-faq__item.is-open .c-acc-faq__head-arw {
  transform: rotate(0);
}
.c-acc-faq__body {
  margin-top: -5px;
}
.c-acc-faq__body-inner {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  padding: 0 55px 25px 30px;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body-inner {
    gap: 10px;
    padding: 6px 40px 16px 15px;
  }
}
.c-acc-faq__body-a {
  color: var(--color-red-1);
  flex-shrink: 0;
  font-family: var(--ff-ls-eb);
  font-size: calc(30 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body-a {
    font-size: calc(24 / var(--root-fz) * 1rem);
  }
}
.c-acc-faq__body-txt {
  font-family: var(--ff-ls-r);
  font-size: calc(14 / var(--root-fz) * 1rem);
  line-height: 1.5714285714;
  margin-top: 14px;
}
@media screen and (max-width: 1023px) {
  .c-acc-faq__body-txt {
    margin-top: 7px;
  }
}
.js-acc-faq-target {
  --acc-body-height: 0;
  height: 0;
  overflow: hidden;
}
.js-acc-faq-scope.is-close .js-acc-faq-target {
  animation: closeAccAnim 0.5s forwards;
}

.js-acc-faq-scope.is-open .js-acc-faq-target {
  animation: openAccAnim 0.5s forwards;
}
.faq__answer--block {
  width: 100%;
}
.faq__answer--small {
  font-family: var(--ff-ls-r);
  font-size: 1.1rem;
}
.faq__answer--list {
  margin-top: 16px;
}

.faq__answer--list dt {
  font-family: "LINESeedJPStd Bold", sans-serif;
  font-weight: 700;
}

.faq__answer--list li:before {
  content: "-";
  margin-right: 8px;
}
@keyframes openAccAnim {
  0% {
    height: 0;
    visibility: hidden;
  }
  99% {
    height: var(--acc-body-height);
    visibility: visible;
  }
  100% {
    height: auto;
  }
}
@keyframes closeAccAnim {
  0% {
    height: var(--acc-body-height);
  }
  99% {
    visibility: visible;
  }
  100% {
    height: 0;
    visibility: hidden;
  }
}
@media (min-width: 1024px) {
  .faq__answer .whiteBtn {
    text-align: right;
    transform: translateY(10px);
  }
  .faq__answer .whiteBtn a {
    min-height: 43px;
    min-width: 200px;
  }

  .faq__answer .whiteBtn a span {
    width: auto;
  }

  .faq__answer .whiteBtn a span:after {
    height: 20px;
    top: calc(50% - 10px);
    width: 20px;
  }
}

/* ---------------------------------------------
*    追従メニュー
--------------------------------------------- */
.c-menu {
  animation-duration: 0.5s;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-black);
  border-bottom-left-radius: 6px;
  border-left: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  border-top-left-radius: 6px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 340px;
  width: 160px;
  z-index: 20;
}

@media screen and (max-width: 1023px) {
  .c-menu {
    display: none;
  }
}

.c-menu__title {
  background: #e7e5ed;
  border: 2px solid #333364;
  border-radius: 22px;
  color: #333364;
  display: inline-block;
  font-family: var(--ff-ls-b);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 24px;
  padding: 4px 15px;
}

.c-menu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 24px 26px;
  text-align: left;
}

.c-menu__item {
  font-family: var(--ff-ls-b);
  font-size: 1.2rem;
}

.c-menu__item a {
  color: var(--color-black);
  font-family: var(--ff-ls-b);
}

.c-menu__close {
  border-top: 1px solid var(--color-black);
  font-family: var(--ff-ls-b);
  font-size: 1.2rem;
  padding-block: 8px;
  text-align: center;
}

.c-menu__item a.is-current {
  color: var(--color-green);
  position: relative;
}

.c-menu__close {
  cursor: pointer;
}
.c-menu__item a.is-current {
  color: var(--color-green);
  position: relative;
}

@media screen and (min-width: 1024px) {
  .c-spMenu {
    display: none;
  }
}

.c-menu-2 {
  animation-duration: 0.5s;
  background-color: var(--color-orange);
  border-bottom: 2px solid var(--color-navy);
  border-bottom-left-radius: 6px;
  border-left: 2px solid var(--color-navy);
  border-top: 2px solid var(--color-navy);
  border-top-left-radius: 6px;
  display: block;
  padding: 13px 16px 13px 22px;
  position: fixed;
  right: 0;
  top: calc(455px + 26vh);
  transition: background-color 0.3s ease-out, transform 0.3s ease-out, color 0.3s;
  width: 160px;
  z-index: 20;
}

@media screen and (max-width: 1023px) {
  .c-menu-2 {
    display: none;
  }
}

.c-menu-2__txt {
  align-items: flex-end;
  color: var(--color-white);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: calc(12 / var(--root-fz) * 1rem);
  gap: 2px;
  position: relative;
  transition: color 0.3s;
}

.c-menu-2__txt::after {
  background: url(https://www.lycbiz.com/sites/default/files/media/jp/service/line-official-account/3/img/arrow-right-white.svg) no-repeat center center/contain;
  bottom: -2px;
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 7px;
  position: absolute;
  right: 50px;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  width: 6px;
  will-change: auto;
}

.c-menu-2:hover {
  opacity: 0.8;
  text-decoration: none;
}

.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media screen and (max-width: 1023px) {
  .sp-menu-wrap--clone .assist-nav__login {
    display: none;
  }
}
.backBtn {
  margin-bottom: 120px;
}
@media screen and (max-width: 1023px) {
  .backBtn {
    margin-bottom: 64px;
  }
}
.sp-menu-wrap--clone-2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .defaultBtn__arrow01:after {
    background: url(/static/jp/common/img/ico_rightArrow02.svg) 0 0 no-repeat;
    background-size: cover;
    content: "";
    display: inline-block;
    height: 27px;
    position: absolute;
    right: 13px;
    top: calc(50% - 14px);
    vertical-align: middle;
    width: 27px;
  }
}
@media screen and (max-width: 1023px) {
  .sp-menu-wrap--clone {
    display: none !important;
  }
  .sp-menu-wrap--clone-2 {
    align-items: center;
    background-color: #fff;
    bottom: 0;
    display: flex;
    opacity: 0;
    position: fixed;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: var(--zindex-sp-menu);
  }
  .sp-menu-wrap--clone-2.is-show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .sp-menu-wrap--clone-2 > ul {
    display: flex;
    flex: 1 0 0;
    gap: 0 5px;
    margin: 0 5px;
  }
  .sp-menu-wrap--clone-2 .assist-nav__signup {
    width: 100%;
  }
  .sp-menu-wrap--clone-2 .assist-nav__signup a {
    align-items: center;
    background-color: #f77911;
    border: 2px solid #f77911;
    border-radius: 100px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: "LINESeedJPStd Bold";
    font-size: 1.4rem;
    height: 47px;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s var(--transition-default);
    width: 100%;
  }
  .sp-menu-wrap--clone-2 .assist-nav__contact {
    align-items: center;
    background-color: #e5e7eb;
    color: #000048;
    display: flex;
    flex-direction: column;
    font-family: "LINESeedJPStd Bold";
    font-size: 1rem;
    height: 59px;
    justify-content: center;
    margin-left: auto;
    text-decoration: none;
    transition: all 0.2s var(--transition-default);
    width: 73px;
  }
  .sp-menu-wrap--clone-2 .assist-nav__contact::before {
    align-items: center;
    background: url(/sites/default/files/media/jp/img/top/icon/login_icon.svg) center center no-repeat;
    background-size: contain;
    content: "";
    display: flex;
    font-family: "linebiz-icon";
    font-size: 21px;
    height: 26px;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0;
    width: 31px;
  }
}
@media screen and (min-width: 1024px) {
  #lyb-footer .lyb-fixed-pagetop > a {
    display: none;
  }
}
