@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #f2f3f3;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: stretch;
  color: #231815;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

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

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
html {
  font-size: 16px;
}

button {
  color: #231815;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
  --main-color: #00aaec;
  --grad-start: #0059ff;
  --grad-end: #15b9ff;
  --cta-before: rgba(0, 54, 221, .13);
  --cta-after: rgba(0, 54, 221, .13);
  --cta-before-pc: var(--cta-before);
  --cta-after-pc: var(--cta-after);
  --graduate: linear-gradient(to right, var(--grad-start) 0, var(--grad-end) 60%);
  --graduate-bottom: linear-gradient(to bottom, var(--grad-start) 0, var(--grad-end) 60%);
  --graduate-top: linear-gradient(to top, var(--grad-start) 0, var(--grad-end) 60%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');
  --header-submenu-chevron: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.5 13.48"><g><polyline class="cls-1" points=".32 .42 8.68 5.98 .32 13.1" stroke="%23FFFFFF"/></g>svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.service-case {
  padding-block: 34px;
  padding-block: 2.125rem;
}

.service-case__title.service-case__title--youtube {
  font-size: 22px;
  font-size: 1.375rem;
}

.service-case__content {
  gap: 18px;
  gap: 1.125rem;
  display: grid;
  margin-top: 56px;
  margin-top: 3.5rem;
}

.service-case__item {
  border: 1px solid #13072a;
  background-color: #fff;
  padding: 15px 18px;
  padding: .9375rem 1.125rem;
  font-weight: 100;
}

.service-case__item-head {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-case__item-img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 90px;
  -webkit-flex: 0 0 5.625rem;
  -ms-flex: 0 0 90px;
  -ms-flex: 0 0 5.625rem;
  flex: 0 0 90px;
  flex: 0 0 5.625rem;
  border: 1px solid #727171;
  padding: 4px;
  padding: .25rem;
}

.service-case__item-img img {
  aspect-ratio: 120/80;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.service-case__item-title {
  margin: 0;
  background-color: #231815;
  padding: 5px;
  padding: .3125rem;
  color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.service-case__item-main {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.service-case__item-lead {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
}

.service-case__item-headline {
  margin-top: 10px;
  margin-top: .625rem;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.service-case__item-headline-inner {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
  letter-spacing: .05em;
  line-height: 1;
}

.service-case__item-headline-inner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #ff3600;
  height: 16px;
  height: 1rem;
  content: '';
}

.service-case__item-headline-wrap {
  display: inline-block;
  position: relative;
  padding: 7px 8px 17px;
  padding: .4375rem .5rem 1.0625rem;
}

.service-case__item-headline-wrap::before, .service-case__item-headline-wrap::after {
  aspect-ratio: 12/19;
  position: absolute;
  z-index: 1;
  background-color: #13072a;
  width: 12px;
  width: .75rem;
  content: '';
}

.service-case__item-headline-wrap::before {
  top: 0;
  left: 0;
  -webkit-clip-path: var(--clip-triangle-upper-left);
  clip-path: var(--clip-triangle-upper-left);
}

.service-case__item-headline-wrap::after {
  right: 0;
  bottom: 0;
  -webkit-clip-path: var(--clip-triangle-lower-right);
  clip-path: var(--clip-triangle-lower-right);
}

.service-case__item-headline-num {
  font-size: 40px;
  font-size: 2.5rem;
  font-size: min(40px, 9.4117647059vw);
  font-size: min(2.5rem, 9.4117647059vw);
  font-weight: 800;
}

.service-case__item-headline-text {
  font-size: 25px;
  font-size: 1.5625rem;
  font-size: min(25px, 5.8823529412vw);
  font-size: min(1.5625rem, 5.8823529412vw);
  font-weight: 600;
}

.service-case__item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.625;
}

.service-case__item.service-case__item--youtube .service-case__item-img {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.service-case__item.service-case__item--youtube .service-case__item-title {
  font-size: 16px;
  font-size: 1rem;
  white-space: nowrap;
}

.service-case__item.service-case__item--youtube .service-case__item-lead {
  line-height: 2;
}

.service-case__item.service-case__item--youtube .service-case__item-headline-num {
  font-size: 30px;
  font-size: 1.875rem;
}

.service-case__item.service-case__item--youtube .service-case__item-headline-text {
  font-size: 18px;
  font-size: 1.125rem;
}

.service-consultant {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.service-consultant__content {
  margin-right: auto;
  margin-left: auto;
  border: 2px solid var(--main-color);
  border-radius: .4375rem;
  background-color: #fff;
  padding: 13px;
  padding: .8125rem;
  max-width: 870px;
}

.service-consultant__title {
  color: #13072a;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.service-consultant__main {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.service-consultant__img {
  margin-right: auto;
  margin-left: auto;
  width: 72%;
}

.service-consultant__img img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.service-consultant__name {
  color: #13072a;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.service-consultant__sns {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 10px;
  margin-top: .625rem;
}

.service-consultant__sns-text {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 100;
  letter-spacing: .05em;
}

.service-consultant__sns-icon {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 18px;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  line-height: 1;
}

.service-consultant__sns-icon img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.service-consultant__text {
  margin-top: 14px;
  margin-top: .875rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: 400;
  line-height: 1.6875;
}

.service-contact {
  background-color: #eaeaea;
  padding-top: 43px;
  padding-top: 2.6875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.service-contact__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 723px;
}

.service-cta {
  padding-block: 60px;
  padding-block: 3.75rem;
  position: relative;
  z-index: 1;
  background-image: var(--graduate-top);
  color: #fff;
  text-align: center;
}

.service-cta::before, .service-cta::after {
  position: absolute;
  z-index: -1;
  width: 151px;
  width: 9.4375rem;
  height: 205px;
  height: 12.8125rem;
  content: '';
}

.service-cta::before {
  bottom: 0;
  left: 0;
  -webkit-clip-path: var(--clip-triangle-lower-left);
  clip-path: var(--clip-triangle-lower-left);
  background-color: var(--cta-before);
}

.service-cta::after {
  top: 0;
  right: 0;
  -webkit-clip-path: var(--clip-triangle-upper-right);
  clip-path: var(--clip-triangle-upper-right);
  background-color: var(--cta-after);
}

.service-cta__prefix {
  display: inline-block;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 14px;
  font-size: .875rem;
  font-weight: 900;
  line-height: 2.125;
}

.service-cta__prefix > span {
  background-color: #13072b;
  padding: 2px;
  padding: .125rem;
}

.service-cta__title {
  margin-top: 10px;
  margin-top: .625rem;
  color: #fff;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3928571429;
  text-align: center;
}

.service-cta__title .underline {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff3600), to(#ff3600));
  background-image: linear-gradient(to right, #ff3600, #ff3600);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% .625rem;
  font: inherit;
}

.underline.underline--youtube-pc {
  position: relative;
}

.underline.underline--youtube-sp {
  position: relative;
}

.underline.underline--youtube-sp::after {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  opacity: .89;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(rgb(106, 0, 205)), color-stop(10.88%, rgb(110, 4, 199)), color-stop(25.13%, rgb(120, 15, 183)), color-stop(41.26%, rgb(137, 33, 156)), color-stop(58.76%, rgb(160, 58, 118)), color-stop(77.38%, rgb(190, 90, 69)), color-stop(96.65%, rgb(226, 129, 11)), color-stop(99.99%, rgb(233, 136, 0)));
  background: linear-gradient(90deg, rgb(106, 0, 205) 0%, rgb(110, 4, 199) 10.88%, rgb(120, 15, 183) 25.13%, rgb(137, 33, 156) 41.26%, rgb(160, 58, 118) 58.76%, rgb(190, 90, 69) 77.38%, rgb(226, 129, 11) 96.65%, rgb(233, 136, 0) 99.99%);
  width: 100%;
  height: 10px;
  content: '';
}

.service-cta__text {
  margin-top: 16px;
  margin-top: 1rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.service-cta__btn-area {
  gap: 23px 20px;
  gap: 1.4375rem 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 36px;
  margin-top: 2.25rem;
}

/* instagram */
.service-cta.service-cta--instagram .service-cta__title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.service-cta.service-cta--instagram .service-cta__title .underline {
  background-image: -webkit-gradient(linear, left top, right top, from(#bc15ff), to(#bc15ff));
  background-image: linear-gradient(to right, #bc15ff, #bc15ff);
}

.service-cta.service-cta--instagram .service-cta__text {
  font-size: 16px;
  font-size: 1rem;
}

/* youtube */
.service-cta.service-cta--youtube .service-cta__title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.service-cta.service-cta--youtube .service-cta__text {
  font-size: 16px;
  font-size: 1rem;
}

.service-cta.service-cta--youtube .underline {
  background-image: none;
}

/* tiktok */
.service-cta.service-cta--tiktok .service-cta__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5454545455;
}

.service-cta.service-cta--tiktok .underline {
  background-image: -webkit-gradient(linear, left top, right top, from(#df007f), to(#df007f));
  background-image: linear-gradient(to right, #df007f, #df007f);
}

/* facebook */
.service-cta.service-cta--facebook .service-cta__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5454545455;
}

.service-cta.service-cta--facebook::before {
  background-color: transparent;
}

.service-cta.service-cta--facebook .underline {
  background-image: -webkit-gradient(linear, left top, right top, from(#ff542a), to(#c00900));
  background-image: linear-gradient(to right, #ff542a, #c00900);
}

/* SNS運用 */

.service-diff {
  padding-top: 46px;
  padding-top: 2.875rem;
}

.service-diff__content {
  margin: 0 auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  overflow-y: auto;
}

.service-faq {
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-bottom: 46px;
  padding-bottom: 2.875rem;
}

.service-faq__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 870px;
}

.service-feature {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.service-feature__content {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}

.service-feature__item {
  width: 100%;
}

.service-feature__item + .service-feature__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.service-feature__item-img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.service-feature__item-img img {
  aspect-ratio: 581/383;
  position: relative;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.service-feature__item-img::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: var(--graduate);
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  content: '';
}

.service-feature__item-body {
  position: relative;
  z-index: 1;
  margin-top: 17px;
  margin-top: 1.0625rem;
  border: 1px solid #13072a;
  background-color: #fff;
  padding: 15px;
  width: 536px;
  width: 33.5rem;
  max-width: 100%;
}

.service-feature__item-label {
  display: inline-block;
  border-radius: .75rem;
  background-color: var(--main-color);
  padding: 5px 15px;
  padding: .3125rem .9375rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.service-feature__item-title {
  margin: 0;
  margin-top: 12px;
  margin-top: .75rem;
  color: #0e043a;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3125;
}

.service-feature__item-text {
  margin-top: 14px;
  margin-top: .875rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.service-flow {
  margin-top: 54px;
  margin-top: 3.375rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.service-flow__title.service-flow__title--youtube {
  font-size: 24px;
  font-size: 1.5rem;
}

.service-flow__content {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 665px;
}

.service-flow__list {
  gap: 7px 6px;
  gap: .4375rem .375rem;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}

.service-flow__item {
  display: grid;
  position: relative;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.service-flow__item::after {
  aspect-ratio: 118/25;
  position: absolute;
  top: calc(100% - .1875rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  -webkit-clip-path: var(--clip-triangle-bottom);
  clip-path: var(--clip-triangle-bottom);
  background-color: var(--main-color);
  width: 66px;
  width: 4.125rem;
  content: '';
}

.service-flow__item:last-child::after {
  content: none;
}

.service-flow__item-step {
  display: grid;
  place-content: center;
  background-color: var(--main-color);
  padding: 15px;
  padding: .9375rem;
  color: #fff;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.service-flow__item-step > .number {
  display: block;
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 2.5em;
  letter-spacing: 0;
}

.service-flow__item-body {
  background-color: #fff;
  padding: 20px 24px 26px;
  padding: 1.25rem 1.5rem 1.625rem;
}

.service-flow__item-title {
  margin: 0;
  color: #0e043a;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: 700;
  line-height: 1.7916666667;
}

.service-flow__item-text {
  margin-top: 10px;
  margin-top: .625rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.service-fv {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  background-color: #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
  overflow: hidden;
}

.service-fv::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 66.9333333333vw), 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 66.9333333333vw), 0 100%);
  background-image: var(--graduate-bottom);
  width: 100%;
  content: '';
}

.service-fv__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  letter-spacing: .06em;
}

.service-fv__note {
  padding-inline: 6px;
  background-color: #ff3600;
  padding-bottom: 4px;
  color: #fff;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2380952381;
}

.service-fv__note.service-fv__note--instagram {
  font-size: 16px;
  font-size: 1rem;
}

.service-fv__note.service-fv__note--facebook {
  font-size: 16px;
  font-size: 1rem;
}

.service-fv__lead {
  display: inline;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 4px;
  color: #0e043a;
  font-size: 43px;
  font-size: 2.6875rem;
  font-weight: 800;
  line-height: 1.7;
}

.service-fv__lead > span {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(to right, #fff, #fff);
}

.service-fv__lead span {
  font-family: 'Noto Sans JP', sans-serif;
}

.service-fv__lead-text {
  padding: 0 8px;
}

.service-fv__lead.service-fv__lead--instagram {
  -webkit-font-feature-settings: revert;
  font-feature-settings: revert;
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0;
  line-height: 1.7;
}

.service-fv__lead.service-fv__lead--youtube {
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0;
  line-height: 1.7;
}

.service-fv__lead.service-fv__lead--tiktok {
  font-size: 36px;
  font-size: 2.25rem;
}

.service-fv__lead.service-fv__lead--facebook {
  font-size: 36px;
  font-size: 2.25rem;
}

.service-fv__lead.service-fv__lead--sns-op {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .025em;
}

.service-fv__logos {
  gap: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  background-color: #fff;
  padding: 2px 7px;
}

.service-fv__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  width: 2.5rem;
}

.service-fv__logo img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.service-fv__text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 18px;
  margin-top: 1.125rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.service-fv__text.service-fv__text--instagram {
  font-size: 13px;
  font-size: .8125rem;
}

.service-fv__text.service-fv__text--facebook {
  font-size: 14px;
  font-size: .875rem;
}

.service-fv__btnArea {
  gap: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 40px;
  width: 100%;
}

.service-fv__img {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 581px;
  width: 36.3125rem;
  max-width: 100%;
}

.service-fv__img img {
  aspect-ratio: 581/383;
  position: relative;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.service-fv__img::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: var(--graduate);
  width: calc(100% + 13px);
  height: calc(100% + 13px);
  content: '';
}

.service-price {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.service-price__inner {
  margin-right: auto;
  margin-left: auto;
  border-radius: 1.5rem;
  background-image: var(--graduate);
  padding: 10px;
  padding: .625rem;
  max-width: 772px;
}

.service-price__inner.service-price__inner--instagram {
  max-width: 895px;
}

.service-price__content {
  border-radius: 1rem;
  background-color: #fff;
  padding: 15px;
  padding: .9375rem;
}

.service-price__head {
  gap: 23px;
  gap: 1.4375rem;
  display: grid;
}

.service-price__title {
  color: #231815;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.service-price__price-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 100;
  text-align: center;
}

.service-price__price {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-size: 1.625rem;
}

.service-price__price::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #ff3600;
  width: 100%;
  height: 16px;
  height: 1rem;
  content: '';
}

.service-price__price-num {
  font-size: 2.0555555556em;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1;
}

.service-price__price-unit {
  font-weight: 500;
}

.service-price__price-text {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 500;
}

.service-price__btn-area {
  margin-top: 17px;
  margin-top: 1.0625rem;
  text-align: center;
}

.service-problem {
  padding-block: 40px 90px;
  padding-block: 2.5rem 5.625rem;
  background-color: #f2f3f3;
}

.service-problem__title {
  margin-right: -25px;
  margin-left: -25px;
  font-size: 22px;
  font-size: 1.375rem;
}

.service-problem__content {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  counter-reset: num;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-right: 8px;
  padding-left: 8px;
}

.service-problem__card {
  position: relative;
  counter-increment: num;
  border: 1px solid #0e043a;
  border-radius: 2px;
  background-color: #fff;
  padding: 24px 5px 27px 18px;
  padding: 1.5rem .3125rem 1.6875rem 1.125rem;
}

.service-problem__card::before {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--main-color);
  width: 40px;
  width: 2.5rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  content: counter(num, decimal-leading-zero);
}

.service-problem__card-title {
  margin: 0;
  color: #0e043a;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2222222222;
}

.service-problem__card-text {
  margin-top: 13px;
  margin-top: .8125rem;
}

.service-sns {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.service-sns__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 720px;
}

.service-sns__sns-list {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-sns__sns-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border: 1px solid #d7d8d8;
  border-radius: .5625rem;
  background-color: #fff;
  padding: 10px 15px 5px;
  padding: .625rem .9375rem .3125rem;
  width: calc((100% - .375rem * 1) / 2);
  min-height: 83px;
  min-height: 5.1875rem;
  text-align: center;
}

.service-sns__item-img:has(img[src*='youtube.png']) {
  width: 116px;
  width: 7.25rem;
}

.service-sns__item-img:has(img[src*='youtube.png']) + .service-sns__item-text {
  margin-top: 15px;
  margin-top: .9375rem;
}

.service-sns__item-img:has(img[src*='facebook.png']) {
  width: 51px;
  width: 3.1875rem;
}

.service-sns__item-img:has(img[src*='facebook.png']) + .service-sns__item-text {
  margin-top: 3px;
  margin-top: .1875rem;
}

.service-sns__item-img:has(img[src*='instagram.png']) {
  width: 35px;
  width: 2.1875rem;
}

.service-sns__item-img:has(img[src*='instagram.png']) + .service-sns__item-text {
  margin-top: 12px;
  margin-top: .75rem;
}

.service-sns__item-img:has(img[src*='x.png']) {
  width: 28px;
  width: 1.75rem;
}

.service-sns__item-img:has(img[src*='x.png']) + .service-sns__item-text {
  margin-top: 10px;
  margin-top: .625rem;
}

.service-sns__item-img:has(img[src*='tiktok.png']) {
  width: 130px;
  width: 8.125rem;
}

.service-sns__item-img:has(img[src*='tiktok.png']) + .service-sns__item-text {
  margin-top: 8px;
  margin-top: .5rem;
}

.service-sns__item-img:has(img[src*='line.png']) {
  width: 36px;
  width: 2.25rem;
}

.service-sns__item-img:has(img[src*='line.png']) + .service-sns__item-text {
  margin-top: 11px;
  margin-top: .6875rem;
}

.service-sns__item-img:has(img[src*='pinterest.png']) {
  width: 34px;
  width: 2.125rem;
}

.service-sns__item-img:has(img[src*='pinterest.png']) + .service-sns__item-text {
  margin-top: 10px;
  margin-top: .625rem;
}

.service-sns__item-text {
  color: #9a9b9b;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.service-sns__textbox {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #d7d8d8;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 18px;
  padding: 1.125rem;
  max-width: 625px;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}

:root {
  --main-color: #00aaec;
  --grad-start: #0059ff;
  --grad-end: #15b9ff;
  --cta-before: rgba(0, 54, 221, .13);
  --cta-after: rgba(0, 54, 221, .13);
  --cta-before-pc: var(--cta-before);
  --cta-after-pc: var(--cta-after);
  --graduate: linear-gradient(to right, var(--grad-start) 0, var(--grad-end) 60%);
  --graduate-bottom: linear-gradient(to bottom, var(--grad-start) 0, var(--grad-end) 60%);
  --graduate-top: linear-gradient(to top, var(--grad-start) 0, var(--grad-end) 60%);
}

/* youtube */
:root[theme=orange] {
  --main-color: #f21b00;
  --grad-start: #ffb900;
  --grad-end: #bf0a00;
  --cta-before: rgba(255, 185, 0, .21);
  --cta-after: rgba(255, 185, 0, .21);
  --cta-before-pc: #bf0a00;
  --cta-after-pc: rgba(255, 255, 255, .09);
}

/* instagram */
:root[theme=purple] {
  --main-color: #0022e9;
  --grad-start: #bc15ff;
  --grad-end: #0022e9;
  --cta-before: rgba(0, 35, 194, .09);
  --cta-after: rgba(255, 255, 255, .09);
  --cta-before-pc: rgba(0, 54, 221, .61);
  --cta-after-pc: rgba(255, 255, 255, .09);
}

/* tiktok */
:root[theme=blue-red] {
  --main-color: #0022e9;
  --grad-start: #2100d4;
  --grad-end: #e90013;
  --cta-before: rgba(255, 255, 255, .09);
  --cta-after: rgba(255, 255, 255, .09);
  --cta-before-pc: linear-gradient(to right, #0002e9 0, #e90013 100%);
  --cta-after-pc: linear-gradient(to right, #0002e9 0, #e90013 100%);
  --graduate: linear-gradient(to right, #2100d4 0, #850073 31.5326%, #b80042 53.286%, #c60035 59.7137%, #d20029 68.9754%, #d90022 73.6546%, #de001d 79.2543%, #e20019 82.4562%, #e40017 86.6575%, #e70014 92.5636%, #e90013 100%);
  --graduate-bottom: linear-gradient(to bottom, #2100d4 0, #850073 31.5326%, #b80042 53.286%, #c60035 59.7137%, #d20029 68.9754%, #d90022 73.6546%, #de001d 79.2543%, #e20019 82.4562%, #e40017 86.6575%, #e70014 92.5636%, #e90013 100%);
  --graduate-top: linear-gradient(to top, #2100d4 0, #850073 31.5326%, #b80042 53.286%, #c60035 59.7137%, #d20029 68.9754%, #d90022 73.6546%, #de001d 79.2543%, #e20019 82.4562%, #e40017 86.6575%, #e70014 92.5636%, #e90013 100%);
}

/* facebook */
:root[theme=purple-blue] {
  --main-color: #0022e9;
  --grad-start: #22006a;
  --grad-end: #0022e9;
  --cta-before: rgba(0, 35, 194, .09);
  --cta-after: rgba(255, 255, 255, .09);
  --cta-before-pc: var(--graduate);
  --cta-after-pc: rgba(255, 255, 255, .09);
}

/* SNS運用代行 */
:root[theme=green-blue] {
  --main-color: #2569f6;
  --grad-start: #00d4ad;
  --grad-end: #4c16e9;
  --cta-before: rgba(0, 170, 236, .23);
  --cta-after: rgba(255, 255, 255, .09);
  --cta-before-pc: var(--cta-before);
  --cta-after-pc: var(--cta-after);
  --graduate: linear-gradient(to right, var(--grad-start) 0, var(--grad-end) 100%);
  --graduate-left: linear-gradient(to left, var(--grad-start) 0, var(--grad-end) 100%);
  --graduate-bottom: linear-gradient(to bottom, var(--grad-start) 0, var(--grad-end) 100%);
  --graduate-top: linear-gradient(to top, var(--grad-start) 0, var(--grad-end) 100%);
}
@media screen and (min-width: 768px) {

  html {
    font-size: 1.3913043478vw;
  }

  :root {
    --header-height: 80px;
  }

  .service-case {
    padding-block: 80px;
    padding-block: 5rem;
  }

  .service-case__title.service-case__title--youtube {
    font-size: 46px;
    font-size: 2.875rem;
  }

  .service-case__content {
    gap: 22px;
    gap: 1.375rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-case__item {
    padding: 40px 27px 50px;
    padding: 2.5rem 1.6875rem 3.125rem;
  }

  .service-case__item-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 131px;
    -webkit-flex: 0 0 8.1875rem;
    -ms-flex: 0 0 131px;
    -ms-flex: 0 0 8.1875rem;
    flex: 0 0 131px;
    flex: 0 0 8.1875rem;
  }

  .service-case__item-title {
    font-size: 37px;
    font-size: 2.3125rem;
  }

  .service-case__item-main {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .service-case__item-lead {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .service-case__item-headline-wrap {
    padding: 10px 18px 10px;
    padding: .625rem 1.125rem .625rem;
  }

  .service-case__item-headline-wrap::before, .service-case__item-headline-wrap::after {
    aspect-ratio: 17/25;
    width: 17px;
    width: 1.0625rem;
  }

  .service-case__item-headline-num {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .service-case__item-headline-text {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .service-case__item-text {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .service-case__item.service-case__item--youtube {
    padding: 40px 10px 50px;
    padding: 2.5rem .625rem 3.125rem;
  }

  .service-case__item.service-case__item--youtube .service-case__item-title {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .service-case__item.service-case__item--youtube .service-case__item-headline-num {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .service-case__item.service-case__item--youtube .service-case__item-headline-text {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .service-consultant {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .service-consultant__content {
    padding: 24px 50px;
    padding: 1.5rem 3.125rem;
  }

  .service-consultant__title {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .service-consultant__main {
    grid-template-columns: 12.375rem 1fr;
  }

  .service-consultant__main {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }

  .service-consultant__img {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }

  .service-consultant__sns-text {
    font-size: 12px;
    font-size: .75rem;
  }

  .service-consultant__text {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .service-contact {
    padding-top: 80px;
    padding-top: 5rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }

  .service-cta {
    padding-block: 60px 90px;
    padding-block: 3.75rem 5.625rem;
    background-image: var(--graduate);
  }

  .service-cta::before, .service-cta::after {
    width: 363px;
    width: 22.6875rem;
    height: 311px;
    height: 19.4375rem;
  }

  .service-cta::before {
    top: 0;
    bottom: auto;
    -webkit-clip-path: var(--clip-triangle-upper-left);
    clip-path: var(--clip-triangle-upper-left);
    background-color: var(--cta-before-pc);
  }

  .service-cta::after {
    top: auto;
    bottom: 0;
    -webkit-clip-path: var(--clip-triangle-lower-right);
    clip-path: var(--clip-triangle-lower-right);
    background-color: var(--cta-after-pc);
  }

  .service-cta__prefix {
    margin-right: 0;
    margin-left: 0;
    padding: 7px 20px;
    padding: .4375rem 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1666666667;
  }

  .service-cta__title {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.6052631579;
  }

  .underline.underline--youtube-pc::after {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: .89;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(rgb(106, 0, 205)), color-stop(10.88%, rgb(110, 4, 199)), color-stop(25.13%, rgb(120, 15, 183)), color-stop(41.26%, rgb(137, 33, 156)), color-stop(58.76%, rgb(160, 58, 118)), color-stop(77.38%, rgb(190, 90, 69)), color-stop(96.65%, rgb(226, 129, 11)), color-stop(99.99%, rgb(233, 136, 0)));
    background: linear-gradient(90deg, rgb(106, 0, 205) 0%, rgb(110, 4, 199) 10.88%, rgb(120, 15, 183) 25.13%, rgb(137, 33, 156) 41.26%, rgb(160, 58, 118) 58.76%, rgb(190, 90, 69) 77.38%, rgb(226, 129, 11) 96.65%, rgb(233, 136, 0) 99.99%);
    width: 100%;
    height: 10px;
    content: '';
  }

  .underline.underline--youtube-sp::after {
    content: none;
  }

  .service-cta__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .service-cta.service-cta--instagram .service-cta__title {
    font-size: 38px;
    font-size: 2.375rem;
  }

  .service-cta.service-cta--instagram .service-cta__text {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .service-cta.service-cta--youtube .service-cta__title {
    font-size: 38px;
    font-size: 2.375rem;
  }

  .service-cta.service-cta--youtube .service-cta__text {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .service-cta.service-cta--tiktok .service-cta__title {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.6052631579;
  }

  .service-cta.service-cta--tiktok::before {
    opacity: .61;
    background-color: revert;
    background-image: var(--cta-before-pc);
  }

  .service-cta.service-cta--tiktok::after {
    opacity: .09;
    background-color: revert;
    background-image: var(--cta-after-pc);
  }

  .service-cta.service-cta--facebook .service-cta__title {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.6052631579;
  }

  .service-cta.service-cta--facebook::before {
    opacity: .61;
    background-color: revert;
    background-image: var(--cta-before-pc);
  }

  .service-diff {
    padding-top: 80px;
    padding-top: 5rem;
  }

  .service-diff__content {
    margin: 0 auto;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .service-faq {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .service-faq__content {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .service-feature {
    padding-top: 78px;
    padding-top: 4.875rem;
  }

  .service-feature__content {
    gap: 120px;
    gap: 7.5rem;
    display: grid;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .service-feature__item + .service-feature__item {
    margin-top: 0;
  }

  .service-feature__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .service-feature__item-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 678px;
    -webkit-flex: 0 1 42.375rem;
    -ms-flex: 0 1 678px;
    -ms-flex: 0 1 42.375rem;
    flex: 0 1 678px;
    flex: 0 1 42.375rem;
  }

  .service-feature__item-img::after {
    width: calc(100% + 13px);
    height: calc(100% + 13px);
  }

  .service-feature__item-body {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    padding: 43px 25px 50px;
    padding: 2.6875rem 1.5625rem 3.125rem;
  }

  .service-feature__item-label {
    padding: 8px 20px;
    padding: .5rem 1.25rem;
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .service-feature__item-title {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .service-feature__item-text {
    margin-top: 25px;
    margin-top: 1.5625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .service-feature__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .service-feature__item:nth-child(odd) .service-feature__item-img {
    margin-left: -60px;
    margin-left: -3.75rem;
  }

  .service-feature__item:nth-child(odd) .service-feature__item-img::after {
    left: 0;
  }

  .service-feature__item:nth-child(even) .service-feature__item-img::after {
    right: 0;
    left: auto;
  }

  .service-feature__item:nth-child(even) .service-feature__item-body {
    margin-left: -60px;
    margin-left: -3.75rem;
  }

  .service-flow {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .service-flow__title.service-flow__title--youtube {
    font-size: 46px;
    font-size: 2.875rem;
  }

  .service-flow__item::after {
    top: calc(100% - .5rem);
    width: 118px;
    width: 7.375rem;
  }

  .service-flow__item-step {
    padding: 20px 10px 25px;
    padding: 1.25rem .625rem 1.5625rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .service-flow__item-title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .service-fv {
    padding-top: 120px;
    padding-top: 7.5rem;
    padding-bottom: 86px;
    padding-bottom: 5.375rem;
  }

  .service-fv::before {
    top: -46px;
    bottom: -37px;
    left: -29px;
    -webkit-clip-path: polygon(0 0, 100% 0, 53.447814% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 53.447814% 100%, 0 100%);
    background-image: var(--graduate);
    padding-top: 71px;
    padding-top: 4.4375rem;
    padding-bottom: 73px;
    padding-bottom: 4.5625rem;
    width: min(68% + 579px, 90.578125vw);
    width: min(68% + 36.1875rem, 90.578125vw);
  }

  .service-fv__inner {
    gap: 30px;
    gap: 1.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1500px;
  }

  .service-fv__note.service-fv__note--facebook {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .service-fv__lead {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-top: 20px;
    font-size: 56px;
    font-size: 3.5rem;
    line-height: 1.0869565217;
  }

  .service-fv__lead.service-fv__lead--sns .service-fv__lead-text,
  .service-fv__lead.service-fv__lead--tiktok .service-fv__lead-text {
    padding: 0;
  }

  .service-fv__lead.service-fv__lead--sns .service-fv__lead-text:first-child,
  .service-fv__lead.service-fv__lead--tiktok .service-fv__lead-text:first-child {
    padding-left: 8px;
  }

  .service-fv__lead.service-fv__lead--sns .service-fv__lead-text:last-child,
  .service-fv__lead.service-fv__lead--tiktok .service-fv__lead-text:last-child {
    padding-right: 8px;
  }

  .service-fv__lead.service-fv__lead--instagram {
    margin-top: 8px;
    margin-top: .5rem;
    font-size: 55px;
    font-size: 3.4375rem;
  }

  .service-fv__lead.service-fv__lead--youtube {
    margin-top: 8px;
    margin-top: .5rem;
    font-size: 55px;
    font-size: 3.4375rem;
  }

  .service-fv__lead.service-fv__lead--tiktok {
    margin-top: 6px;
    font-size: 56px;
    font-size: 3.5rem;
    line-height: 1.7;
  }

  .service-fv__lead.service-fv__lead--facebook {
    margin-top: 8px;
    margin-top: .5rem;
    font-size: 56px;
    font-size: 3.5rem;
    line-height: 1.7;
  }

  .service-fv__lead.service-fv__lead--sns-op {
    font-size: 58px;
    font-size: 3.625rem;
  }

  .service-fv__logos {
    margin-top: 20px;
  }

  .service-fv__text {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-top: 25px;
  }

  .service-fv__text.service-fv__text--instagram {
    font-size: 16px;
    font-size: 1rem;
  }

  .service-fv__text.service-fv__text--facebook {
    font-size: 16px;
    font-size: 1rem;
  }

  .service-fv__btnArea {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .service-fv__img {
    margin-top: 0;
    width: 693px;
    width: 43.3125rem;
  }

  .service-fv__img.service-fv__img--instagram {
    width: 48%;
  }

  .service-fv__img.service-fv__img--youtube {
    width: 773px;
    width: 48.3125rem;
  }

  .service-fv__btn {
    padding: 22.4px 20px;
    padding: 1.4rem 1.25rem;
    width: 276px;
    width: 17.25rem;
    min-height: 75px;
    min-height: 4.6875rem;
  }

  .service-price {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .service-price__inner {
    border-radius: .4375rem;
    padding: 25px;
    padding: 1.5625rem;
  }

  .service-price__content {
    border-radius: .4375rem;
    padding: 40px;
    padding: 2.5rem;
  }

  .service-price__head {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .service-price__title {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.2058823529;
    text-align: left;
  }

  .service-price__price-wrap {
    text-align: left;
  }

  .service-price__price {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .service-price__price-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .service-price__btn-area {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .service-problem__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .service-problem__content {
    gap: 33px 40px;
    gap: 2.0625rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .service-sns {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .service-sns__sns-item {
    width: calc((100% - .375rem * 3) / 4);
  }
}
@media (min-width: 1150px) {

  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {

  .service-cta.service-cta--sns-op .service-cta__title {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .service-fv__note.service-fv__note--sns-op {
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8333333333;
  }

  .service-fv__note.service-fv__note--sns-op > span {
    padding-inline: 6px;
    background-image: -webkit-gradient(linear, left top, right top, from(#ff3600), to(#ff3600));
    background-image: linear-gradient(to right, #ff3600, #ff3600);
    padding-bottom: 2px;
    line-height: 1.8333333333;
  }
}
@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}