@charset "UTF-8";



:root {
  --v-color-primary: #294C7A;
  --v-color-secondary: #428AC9;
  --v-color-hover: #94A5BC;
  --v-color-conversion-quote: #F12A2A;
  --v-color-conversion-quote-hover: #FBC9C9;
  --v-color-conversion-download: #11A3A3;
  --v-color-conversion-download-hover: #C3E8E8;
  --v-color-bg: #F0F5FC;
  --v-color-text: #333;

  --v-font-ja: "Noto Sans JP", sans-serif;

  --space-unit: 8px;
  --space-half: calc(0.5 * var(--space-unit));
  --space-1: calc(1 * var(--space-unit));
  --space-2: calc(2 * var(--space-unit));
  --space-3: calc(3 * var(--space-unit));
  --space-4: calc(4 * var(--space-unit));
  --space-7: calc(7 * var(--space-unit));

  --round-unit: 3px;

  --font-size-xs: 12px;
  --font-size-s: 14px;
  --font-size-m: 16px;
  --font-size-l: 18px;
  --font-size-xl: 22px;
  --font-size-xxl: 24px;
  --font-size-xxxl: 38px;
}

body {
  font-family: var(--v-font-ja);
  font-size: 14px;
  line-height: 28px;
  color: var(--v-color-text);
  &.-disabled {
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 34px;
  }
}

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

a {
  color: var(--v-color-primary);
  font-weight: bold;
}

section {
  background-size: cover;
}


img {
  max-width: 100%;
}
span {
  display: inline-block;
}
p {
  font-size: 14px;
  line-height: 28px;
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 16px;
    line-height: 34px;
  }
}
li {
  position: relative;
}


body,
h1, h2, h3, h4, h5, h6,
p, ol, ul, dl, dt, dd, form,
figure{
  margin:0;
  padding:0;
}

h1, h2, h3, h4, h5, h6 {
  font-size:100%;
  font-weight:normal;
}

ul, ol {
  list-style:none;
}

a {
  text-decoration:none;
}
a img {
  border:none;
}

p {
  line-height: 1.6;
}
summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display:none;
}
button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
  border: unset;
  cursor: pointer;
}

html,
body {
  font-family: var(--v-font-ja);
  margin: 0;
  padding: 0;
  letter-spacing: 0.04em;
  scroll-behavior: smooth;
  font-weight: 400;
}

.tab-only-hidden,
.pc-hidden {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .tab-only-hidden {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .pc-hidden {
    display: block;
  }
  .sp-hidden {
    display: none;
  }
}

/* ----------------------
  ヘッダー
---------------------- */
.lp-header {
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #294c7a;
  z-index: 1000;
}
.lp-header .lp-header-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  height: 48px;
  margin: 0 auto;
  padding: 0 12px;
}
@media screen and (min-width: 576px) {
  .lp-header .lp-header-container {
    height: 54px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1216px) {
  .lp-header .lp-header-container {
    padding: 0;
  }
}
.lp-header .lp-header-container .lp-header-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.lp-header .lp-header-container .lp-header-logo a {
  text-decoration: none;
  line-height: 0;
}
.lp-header .lp-header-container .lp-header-logo--image {
  width: 110px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .lp-header .lp-header-container .lp-header-logo--image {
    width: 161px;
  }
}

  .lp-header
  .lp-header-container
  .lp-header-logo
  .lp-header-logo-title {
  display: inline-block;
  font-family: "PR TIMES";
  color: #ffffff;
  font-size: 24px;
}

  .lp-header
  .lp-header-container
  .lp-header-logo
  .lp-header-caption {
  display: none;
}
@media screen and (min-width: 1024px) {

    .lp-header
    .lp-header-container
    .lp-header-logo
    .lp-header-caption {
    display: inline;
    color: #bfc9d7;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0 16px;
  }
}
.lp-header-btn-subscription,
.lp-header-btn-inquiry {
  display: inline;
  border-radius: var(--round-unit);;
  margin: 0;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  line-height: 18px;
}
.lp-header-btn-subscription {
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: normal;
  margin: 0;
  display: inline-block;
}
.lp-header-btn-inquiry {
  background-color: #ffffff;
  color: #294c7a;
}
.lp-header-nav-button {
  display: flex;
  gap: var(--space-2);
}
@media screen and (max-width: 1024px) {
  .lp-header-nav-button {
    gap: var(--space-1);
  }
  .lp-header-btn-subscription,
  .lp-header-btn-inquiry {
    padding: 7px;
    font-size: 10px;
  }
}




.container {
  position: relative;
  padding: 0 16px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding: 0;
  }
}







.section {
  padding: 100px 0;
}
.section.bg-color {
  background-color: var(--v-color-bg);
}
.section.-cost {
  background: url(https://prtimes.jp/tv/info_tv/img/background_sec-6.jpg);
  background-size: cover;
  background-position: center;
  > .container {
    background: rgba(255, 255, 255, .7);
    padding: var(--space-4) 0;
  }
}
.section.-service {
  background: linear-gradient(180deg, #fff 350px, var(--v-color-primary)350px 100%);
}
.section.-result {
  background: linear-gradient(180deg, var(--v-color-bg) 350px, var(--v-color-primary)350px 100%);
}
.section.-counseling {
  background-color: var(--v-color-primary);
}
.section.-sns {
  padding: 60px 0;
  text-align: center;
}
.section-first {
  padding-top: 54px;
  height: 540px;
  background: linear-gradient(180deg, #F7F7F4 6.93%, #E6E8ED 96.39%);
  position: relative;
  z-index: 1;
  &:after {
    content: "";
    position: absolute;
    background: url(https://prtimes.jp/tv/info_tv/img/img_fv.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 908px;
    height: 500px;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-position-x: right;
  }
  .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 1350px) {
  .section-first {
    &:after {
      width: 100%;
      height: 33vw;
    }
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding: 50px 0;
  }
  .section.-result {
    > .container {
      padding: 0;
    }
  }
  .section.-cost {
    > .container {
      padding: var(--space-4) 16px;
      margin: auto 0;
    }
  }
  .section-first {
    margin-top: 48px;
    padding: var(--space-2) 0 var(--space-4);
    height: 100%;
    &:after {
      height: 80%;
    }
  }
  .section.-sns {
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .section-first {
    &:after {
      height: 57%;
    }
  }
}

.subtitle {
  text-align: center;
  line-height: 2;
  padding-bottom: var(--space-4);
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  color: var(--v-color-primary);
  .-counseling & {
    color: #fff;
  }
}
.subtitle-lower {
  text-align: center;
  padding: var(--space-4) var(--space-3) var(--space-3);
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--v-color-primary);
}
@media screen and (max-width: 1024px) {
  .subtitle {
    font-size: var(--font-size-xl);
    line-height: 1.7;
    margin-bottom: var(--space-3);
    padding-bottom: 0;
  }
  .subtitle-lower {
    padding: var(--space-3) var(--space-2) var(--space-2);
    font-size: 18px;
  }
}


.description {
  font-size: var(--font-size-m);
  font-style: normal;
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .description {
    font-size: var(--font-size-s);
    line-height: 2;
    .-result & {
      padding: 0 16px;
    }
  }
}
@media screen and (max-width: 768px) {
  .description {
    text-align: left;
  }
}

/* ----------------------
  ご利用企業
---------------------- */
.c-use-company {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2) var(--space-7);
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
}
.c-use-company + .use-company {
  margin-top: var(--space-2);
}
.c-use-company li {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
}
.c-use-company li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .c-use-company {
    width: 100%;
    gap: unset;
  }
  .c-use-company li {
    width: 100px;
    height: 50px;
    margin: 16px calc((100% - 600px)/12);
  }
}
@media screen and (max-width: 768px) {
  .c-use-company li {
    margin: 16px calc((100% - 400px)/8);
  }
}
@media screen and (max-width: 640px) {
  .c-use-company {
    max-width: 360px;
  }
  .c-use-company li {
    margin: 10px calc((100% - 300px)/6);
  }
  .c-use-company li.sp-row {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* ----------------------
  ファーストビュー
---------------------- */
.c-fv-title {
  color: var(--v-color-text);
  font-size: 46px;
  font-weight: 700;
  line-height: 100%;
}
.c-fv-subtitle {
  color: var(--v-color-text);
  font-size: 32px;
  font-weight: 700;
  margin-top: 32px;
}
.c-fv-description {
  color: var(--v-color-text);
  font-size: 18px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .c-fv-title {
    font-size: 26px;
    line-height: 140%;
  }
  .c-fv-subtitle {
    font-size: 18px;
    margin-top: 8px;
    line-height: 140%;
  }
  .c-fv-description {
    font-size: 14px;
    margin: 20px 0 50px;
    line-height: 150%;
  }
}


/* ----------------------
  コンバージョンボタン
---------------------- */
.c-conversion {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  .-first & {
    justify-content: unset;
  }
}
.c-conversion-supplement {
  text-align: center;
  font-weight: 700;
  color: var(--v-color-primary);
  margin-bottom: 4px;
  .-counseling &,
  .-service & {
    color: #fff;
  }
  .-first & {
    display: none;
  }
}
.c-conversion-button {
  width: 400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: var(--round-unit);;
  font-size: 20px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, .24);
  transition: .2s;
  &::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
  }
}
.c-conversion-button.-quote {
  background: var(--v-color-conversion-quote);
  &:hover {
    background: var(--v-color-conversion-quote-hover);
  }
  &::before {
    background: url(https://prtimes.jp/tv/info_tv/img/icon_message.svg);
    background-size: contain;
    width: 24px;
    height: 20px;
  }
}
.c-conversion-button.-download {
  background: var(--v-color-conversion-download);
  &:hover {
    background: var(--v-color-conversion-download-hover);
  }
  &::before {
    background: url(https://prtimes.jp/tv/info_tv/img/icon_download.svg);
    background-size: contain;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .c-conversion-supplement {
    font-size: var(--font-size-m);
  }
}
@media screen and (max-width: 940px) {
  .c-conversion {
    flex-direction: column;
    .-first & {
      gap: 20px;
    }
  }
  .c-conversion-button {
    width: 343px;
    margin: 0 auto;
  }
}


.c-steps {
  padding-bottom: 80px;
}

.c-steps__item-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto 16px;
  max-width: 960px;
}

.c-steps__item {
  background-color: #fff;
  border: 1px solid var(--v-color-primary);
  display: flex;
  & + & {
    position: relative;
    &:after {
      content: url(https://prtimes.jp/tv/info_tv/img/flow_arrow.svg);
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
      top: -35px;
    }
  }
}

.c-steps__item__img {
  height: auto;
  width: 100px;
  border-right: 1px solid var(--v-color-primary);
  flex-shrink: 0;
  box-sizing: border-box;
}

.c-steps__item__number {
  height: 30px;
  width: 28px;
  position: absolute;
  background-color: var(--v-color-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  font-weight: 700;
  padding-right: 2px;
}

.c-steps__item__icon-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-steps__item__icon {
  height: 60px;
  width: 60px;
}

.c-steps__item__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px;
}

.c-steps__item__title-frame {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.c-steps__item__title-date {
  font-weight: 700;
  color: #fff;
  background: var(--v-color-secondary);
  padding: var(--space-half) var(--space-2);
}

.c-steps__item__title {
  font-weight: bold;
  color: var(--v-color-primary);
  font-size: var(--font-size-l);
}

.c-steps__item__description {
  font-size: var(--font-size-s);
  color: var(--v-color-text);
}
.c-steps__caution-wrapper {
  margin-top: -16px;
}
.c-steps__caution {
  font-size: var(--font-size-xs);
  color: #595959;
}
@media screen and (max-width: 1024px) {
  .c-steps__item {
    & + & {
      &:after {
        top: -32px;
      }
    }
  }
}
@media screen and (max-width: 640px) {
  .c-steps {
    padding-bottom: 20px;
  }
  .c-steps__item {
    flex-direction: column;
    & + & {
      &:after {
        top: -29px;
      }
    }
  }
  .c-steps__item__title-date {
    line-height: 16px;
    font-size: 11px;
    padding: var(--space-half) var(--space-1);
  }
  .c-steps__item__title-frame {
    justify-content: center;
    gap: 6px;
  }
  .c-steps__item__text {
    padding: 6px 16px 24px;
    gap: 6px;
  }
  .c-steps__item-list {
    gap: 28px;
  }
  .c-steps__item__img {
    height: 80px;
    width: 100%;
    border-right: none;
  }
  .c-steps__item__title {
    font-size: var(--fontsize-sm);
  }
  .c-steps__item__description {
    font-size: 12px;
  }

  .c-steps__item__link {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 360px) {
  .c-steps__heading {
    font-size: var(--fontsize-lg);
  }

  .c-steps__item__text {
    padding-block: 8px;
  }

  .c-steps__item__title {
    font-size: var(--fontsize-xs);
  }

}


/* ----------------------
  特徴
---------------------- */
.c-feature {
  display: flex;
  align-items: center;
  gap: 32px;
  &.-reverce {
    flex-direction: row-reverse;
  }
  & + & {
    margin-top: 40px;
  }
}
.c-feature-frame {
  padding-bottom: var(--space-3);
}
.c-feature-title-frame {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 10px;
}
.c-feature-title {
  color: var(--v-color-primary);
  font-size: var(--font-size-xxl);
  font-weight: 700;
  line-height: 34px;
  margin-left: 10px;
}
.c-feature-number {
  background: var(--v-color-primary);
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-items: center;
  font-size:var(--font-size-xs);
  width: 72px;
  transform: skewX(-25deg);
  flex-shrink: 0;
}
.c-feature-number .text {
  display: flex;
  align-items: center;
  transform: skewX(25deg);
  margin-left: 11px;
}
.c-feature-number .number {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  margin-left: 2px;
}
.c-feature-img {
  flex-shrink: 0;
  font-size: 0;
  > img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    filter: drop-shadow(8px 8px 0px #E5F2F9);
  }
}
.c-feature-text {
  margin-bottom: var(--space-3);
}
.c-feature-description {
  line-height: 34px;
}
@media screen and (max-width: 1024px) {
  .c-feature-title {
    font-size: 18px;
    line-height: 30px;
  }
  .c-feature-number {
    height: 30px;
    width: 57px;
    font-size: 11px;
  }
  .c-feature-number .number {
    font-size: 24px;
  }
  .c-feature-img {
    > img {
      width: 300px;
      height: 200px;
      margin: 0 auto;
      filter: drop-shadow(8px 8px 0px #E5F2F9);
    }
  }
  .c-feature-number .text {
    margin-left: 7px;
  }
  .c-feature-text {
    margin-bottom: 0;
  }
  .c-feature-description {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .c-feature,
  .c-feature.-reverce {
    flex-direction: column;
    gap: 16px;
  }
}





/* ----------------------
  実績、サービス内容
---------------------- */
.c-case {
  display: block;
  padding-top: 80px;
  overflow-x: hidden;
}

.c-case__inner {
  margin-inline: auto;
  background: linear-gradient(0deg, var(--v-color-primary) 52%, #fff 52% 100%);
  padding-bottom: 30px;
}

.c-case__text {
  color: var(--v-color-primary);
  text-align: center;
  font-family: var(--v-font-ja);
  font-size: var(--fontsize-sm);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 40px;
}

.c-case__article-list {
  max-width: 1328px;
  margin-top: 16px;
  &.-no-swiper {
    display: flex;
    flex-wrap: wrap;
  }
}

.c-case__card {
  width: 25%;
}

.c-case__article {
  background-color: #fff;
  flex: 1;
  height: 313px;
  width: auto;
  padding: 16px 16px 24px;
  margin: 8px 8px 16px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  border-radius: var(--round-unit);;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color .2s, box-shadow .2s;
  .-service & {
    max-width: 300px;
    height: 340px;
  }
}

.c-case__article:hover {
  background-color: #fafafa;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}

.c-case__article__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-case__article__img {
  display: inline-block;
  height: 144px;
  position: relative;
  .-result & {
    &::before {
      content: "";
      background-image: url(https://prtimes.jp/tv/info_tv/img/icon_play.svg);
      width: 60px;
      height: 60px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  > img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
}

.c-case__article__title {
  font-weight: 600;
  color: #595959;
  font-size: 15px;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.c-case__article__bottom {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-gray);
  display: flex;
  flex-direction: column;
  gap: 6px;
  white-space: nowrap;
}

.c-case__article__company {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.c-case__article__company-img {
  width: 100px;
  height: 58px;
}
.c-case__article__company-img img {
  object-fit: contain;
  height: 100%;
}
.c-case__article__company-name {
  color: var(--v-color-text);
  font-weight: 400;
  font-size: var(--font-size-xs);
}
.c-case__article__text {
  color: #595959;
  margin-top: 6px;
  font-weight: 400;
  font-size: 15px;
}
.c-case__article__sample {
  color: var(--v-color-text);
  font-size: 13px;
  font-weight: 600;
  width: 200px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--round-unit);;
  border: 1px solid #ddd;
  background: #FFF;
  margin: 10px auto 0;
}
.c-case__swiper-area {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.c-case__button-prev.swiper-button-prev,
.c-case__button-next.swiper-button-next {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #F9F9F9;
}
.c-case__button-prev.swiper-button-prev {
  left: -40px;
}
.c-case__button-next.swiper-button-next {
  right: -40px;
}
.c-case__button-prev.swiper-button-prev:after,
.c-case__button-next.swiper-button-next:after {
  background: url(https://prtimes.jp/tv/info_tv/img/icon_swiper.svg) no-repeat 0;
  font-size: 0;
  width: 10px;
  height: 15px;
}
.c-case__button-next.swiper-button-next:after {
  transform: scale(-1, 1);
}
.c-case__indention {
  display: none;
}
.swiper-slide {
  padding: 0;
  background: unset;
  border: unset;
}
.c-case__dialog {
  display: none;
  padding: 50px;
  box-sizing: border-box;
  &[open] {
    display: block;
    border: unset;
    width: 80%;
    margin-inline: auto;
  }
  &::backdrop {
    background: rgba(0, 0, 0, .5);
  }
}

.c-case__dialog-close {
  font-size: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
}
.c-case__dialog-close::before,
.c-case__dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 25px;
  background: #333;
}

.c-case__dialog-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.c-case__dialog-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.c-case__dialog-frame {
  max-width: 800px;
  margin: 0 auto;
  color: var(--v-color-text);
}
.c-case__dialog-movie {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.c-case__dialog-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-case__dialog-title {
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.c-case__dialog-text {
  font-size: 14px;
  line-height: 21px;
}
.c-case__dialog-link {
  color: var(--v-color-text);
  font-size: var(--font-size-s);
  font-weight: 400;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 1500px) {
  .c-case__button-prev.swiper-button-prev {
    left: -50px;
  }
  .c-case__button-next.swiper-button-next {
    right: -50px;
  }
}
@media screen and (max-width: 1300px) {
  .c-case__swiper-area {
    max-width: 900px;
  }
}
@media screen and (max-width: 1200px) {
  .c-case__article-list {
    width: 100%;
  }
  .c-case__article-list {
    &.-no-swiper {
      max-width: 900px;
      margin-inline: auto;
    }
  }
  .c-case__card {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 1024px) {
  .c-case__swiper-area {
    max-width: unset;
    overflow: hidden;
  }
  .c-case__article__text {
    font-size: var(--font-size-s);
  }
}

@media screen and (max-width: 980px) {
  .c-case {
    padding-block: 40px 50px 0;
  }

  .c-case__indention {
    display: block;
  }
  .c-case__article-list {
    &.-no-swiper {
      max-width: 600px;
    }
  }
  .c-case__card {
    width: 50%;
  }
  .c-case__dialog {
    padding: 30px;
    &[open] {
      width: 90%;
    }
  }
  .c-case__dialog-close {
    width: 30px;
    height: 30px;
  }
  .c-case__dialog-close::before,
  .c-case__dialog-close::after {
    height: 20px;
  }
  
}


@media screen and (max-width: 640px) {

  .c-case__article {
    height: 305px;
    .-service & {
      margin-inline: auto;
    }
  }

  .c-case__article__bottom {
    font-size: 10px;
  }
  .c-case__card {
    width: 100%;
    &.service-more {
      display: none;
    }
  }
  .c-case__article__img {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1301px) {
  .c-case__button-prev.swiper-button-prev,
  .c-case__button-next.swiper-button-next {
    display: none;
  }
}






/* ----------------------
  リンクボタン
---------------------- */

.c-section__button-frame {
  text-align: center;
  margin: var(--space-4) auto 0;
  &.-more {
    margin: var(--space-3) auto 0;
  }
}
.c-section__button {
  width: 400px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--round-unit);;
  border: 1px solid var(--v-color-primary);
  background: #ffffff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, .24);
  transition: .2s;
}
.c-section__button:hover {
  border-color: var(--v-color-hover);
  .text {
    color: var(--v-color-hover);
  }
  .c-section__button-expand {
    background-image: url(https://prtimes.jp/tv/info_tv/img/icon_stroke_hover.svg);
  }
}
.c-section__button-expand {
  position: relative;
  display: inline-block;
  top: 0;
  right: -10px;
  background-image: url(https://prtimes.jp/tv/info_tv/img/icon_stroke.svg);
  width: 24px;
  height: 24px;
}
.c-section__button .text {
  color: var(--v-color-primary);
  text-align: center;
  font-weight: 700;
}
.c-section__button.-more::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 2px;
  right: -10px;
  background-image: url(https://prtimes.jp/tv/info_tv/img/icon_more.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
}
@media screen and (max-width: 640px) {
  .c-section__button {
    width: 320px;
  }
}


.c-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.c-faq__heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.6;
  text-align: center;
  color: var(--v-color-primary);
}

.c-faq__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 10px;
  width: 800px;
  height: 58px;
  border: 1px solid var(--v-color-primary);
  font-weight: 700;
  font-size: var(--fontsize-sm);
  color: var(--v-color-primary);
  background: #fff;
  position: relative;
  &::before {
    content: "Q";
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
}

.c-faq__link:hover {
  > .c-faq__text {
    text-decoration: underline;
  }
}

.c-faq__expand {
  background-image: url("https://prtimes.jp/tv/info_tv/img/icon_stroke.svg");
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
}

@media screen and (max-width: 980px) {
  .c-faq__link {
    width: 100%;
    padding-right: 50px;
    height: fit-content;
    text-align: left;
  }
}

@media screen and (max-width: 640px) {

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


  .c-faq__separator {
    margin-block: -14px;
  }

  .c-faq__link {
    font-size: 14px;
  }
}





/* ----------------------
  SNSリンク
---------------------- */


.c-sns-title {
  margin-bottom: var(--space-4);
}
.c-sns-list {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .c-sns-title {
    width: 180px;
    margin: 0 auto var(--space-3);
  }
  .c-sns-list {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    img {
      width: 30px;
      height: 30px;
    }
  }
}


/* ----------------------
  フッター
---------------------- */
.lp-footer {
  background-color: #fafafa;
  border-top: 1px solid #d9d9d9;
}
@media screen and (min-width: 768px) {
   .lp-footer {
    border: none;
  }
}
 .lp-footer .lp-footer__container {
  max-width: 356px;
  margin: 0 auto;
  padding: 30px 8px;
}
@media screen and (min-width: 768px) {
   .lp-footer .lp-footer__container {
    padding: 0 8px;
    max-width: 1216px;
  }
}
 .lp-footer .lp-footer__container .lp-footer__title {
  color: #3b3b3b;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 10px;
}
 .lp-footer .lp-footer__container .lp-footer__link,
 .lp-footer .lp-footer__container .lp-footer__category-item {
  color: #6d6d6d;
  font-size: 12px;
  font-weight: normal;
  line-height: 160%;
  text-decoration: none;
  transition: color 0.2s ease-in;
}
 .lp-footer .lp-footer__container .lp-footer__link:hover,

  .lp-footer
  .lp-footer__container
  .lp-footer__category-item:hover {
  color: #3b3b3b;
  text-decoration: underline;
}
 .lp-footer .lp-footer__container .lp-footer__link {
  margin-bottom: 18px;
}
 .lp-footer .lp-footer__container .lp-footer__menu {
  display: none;
}
@media screen and (min-width: 768px) {
   .lp-footer .lp-footer__container .lp-footer__menu {
    display: flex;
    justify-content: space-between;
    padding: 80px 0 40px;
    border-bottom: 1px solid #d9d9d9;
  }
}

  .lp-footer
  .lp-footer__container
  .lp-footer__menu
  .lp-footer__menu-ul {
  position: relative;
  display: inline-block;
  flex-grow: 1;
  list-style: none;
  padding: 0 8px;
  margin: 0;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__menu
  .lp-footer__menu-ul
  .lp-footer__list-category {
  position: absolute;
  list-style: none;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__menu
  .lp-footer__menu-ul
  .lp-footer__list-category.hide {
  display: none;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__menu
  .lp-footer__menu-ul.sns {
  flex-grow: 1.5;
}
 .lp-footer .lp-footer__container .lp-footer__recommend {
  padding: 0 8px;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__recommend
  .lp-footer__recommend-ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {

    .lp-footer
    .lp-footer__container
    .lp-footer__recommend
    .lp-footer__recommend-ul {
    display: inline-flex;
    padding-top: 16px;
    justify-content: left;
  }
}

  .lp-footer
  .lp-footer__container
  .lp-footer__recommend
  .lp-footer__recommend-ul
  .lp-footer__link {
  line-height: 160%;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__recommend
  .lp-footer__recommend-ul
  li {
  line-height: 160%;
  margin: 0 0 15px;
}
@media screen and (min-width: 768px) {

    .lp-footer
    .lp-footer__container
    .lp-footer__recommend
    .lp-footer__recommend-ul
    li {
    margin: 0;
    margin-right: 24px;
  }
}
 .lp-footer .lp-footer__container .lp-footer__recommend .inquiry {
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 768px) {

    .lp-footer
    .lp-footer__container
    .lp-footer__recommend
    .inquiry {
    flex-direction: row;
    text-align: left;
  }
}
 .lp-footer .lp-footer__container .lp-footer__recommend-service {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {

    .lp-footer
    .lp-footer__container
    .lp-footer__recommend-service {
    flex-grow: 1.5;
    justify-content: space-around;
    flex-direction: row;
  }
}
 .lp-footer .lp-footer__container .lp-footer__address {
  color: #6d6d6d;
  font-size: 11px;
  line-height: 100%;
  text-align: center;
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
   .lp-footer .lp-footer__container .lp-footer__address {
    padding: 16px 8px;
    text-align: left;
  }
}
 .lp-footer .lp-footer__container .lp-footer__address address {
  margin: 0;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__category-color-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 4px;
  vertical-align: middle;
}
 .lp-footer .lp-footer__container .lp-footer__category-title {
  border-bottom: 1px solid #d9d9d9;
  transition-duration: 0.1s;
  transition-property: border-color;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__category-title:hover {
  text-decoration: none;
  border-color: #959595;
}

  .lp-footer
  .lp-footer__container
  .lp-footer__category-title:hover::after {
  border-bottom-color: #595959;
}
 .lp-footer .lp-footer__container .dropdown-list {
  position: absolute;
  height: 0;
  border: 1px solid transparent;
  transition-property: margin-top, height, border-color, background-color;
}
 .lp-footer .lp-footer__container .dropdown-list.active {
  border-color: #d9d9d9;
}
 .lp-footer .lp-footer__container .dropdown-list,
 .lp-footer .lp-footer__container .lp-footer__category-ul {
  width: 99%;
}
 .lp-footer .lp-footer__container .lp-footer__category-item-ul {
  background-color: #ffffff;
  height: 152px;
  overflow-y: auto;
}



.dropdown-list__title {
  width: 99%;
  margin: 0 !important;
  line-height: 1.6em !important;
}
.dropdown-list__title:focus {
  outline: none;
}
.dropdown-list__title::after {
  content: "";
  position: absolute;
  left: 95%;
  bottom: 12px;
  border-bottom: solid 8px #959595;
  border-left: solid 8px transparent;
  transform: rotate(45deg);
  transition-duration: 0.4s;
  transition-property: transform, bottom;
}
.dropdown-list__title.active::after {
  bottom: 8px;
  transform: rotate(-135deg);
}
.dropdown-list {
  overflow: hidden;
  z-index: -1;
  margin-top: -10px;
  transition-duration: 0.3s;
  transition-property: margin-top, height;
}
.dropdown-list.transitioning {
  z-index: 100;
}
.dropdown-list.active {
  z-index: 100;
  margin-top: -4px;
}
