@charset "UTF-8";
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* body基本情報 */
body {
  font-family: "kinto-sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  position: relative;
  z-index: -9999;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*[lang=en] {
  text-transform: uppercase;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
figure {
  max-width: 100%;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

address {
  font-style: normal;
}

/*アニメーション要素（下からふわっと）*/
.animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  overflow: no-display;
}

/*アニメーション要素（下から）*/
.animation--bottom {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

/*アニメーション要素（左から）*/
.animation--left {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

/*アニメーション要素（右から）*/
.animation--right {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

/*アニメーション要素までスクロールした時*/
.animation.active {
  opacity: 1;
  visibility: visible;
}

.animation--bottom.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation--left.active,
.animation--right.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* LINEボタン */
.button-line {
  display: none;
  position: fixed;
  bottom: 32px;
  bottom: 2rem;
  right: 32px;
  right: 2rem;
  width: 40%;
  z-index: 19;
}
@media screen and (min-width: 768px) {
  .button-line {
    width: 20.8333333333%;
  }
}

/* インフルエンサーカテゴリー（共通）*/
.category {
  text-align: center;
}

.category a {
  display: inline-block;
  padding: 6px 8px 15px 8px;
  padding: 0.375rem 0.5rem 0.9375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .category a {
    padding: 0.375rem 0.5rem 1.25rem 0.5rem;
  }
}

/* インフルエンサーカテゴリー（共通）＞ カテゴリー名 */
.category__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
  color: #8c2226;
  -webkit-transform: skewX(-22deg);
          transform: skewX(-22deg);
}
@media screen and (min-width: 768px) {
  .category__name {
    margin-left: 11px;
    font-size: 1.875rem;
  }
}

/* インフルエンサーカテゴリー（共通）＞ カテゴリー説明 */
.category__description {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  color: #8c2226;
}
@media screen and (min-width: 768px) {
  .category__description {
    font-size: 1rem;
  }
}

/* 選択中のカテゴリー */
.current-cat {
  background-color: #8c2226;
}

.current-cat .category__name,
.current-cat .category__description {
  color: #fff;
}

/* 会社情報（共通）*/
/* 会社情報（共通）＞ コンテンツ */
.company__contents {
  background-color: #fff;
  padding: 23px 12px;
  padding: 1.4375rem 0.75rem;
}

/* 会社情報（共通）＞ タイトル */
.company__title {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .company__title {
    font-size: 0.875rem;
  }
}

/* 会社情報（共通）＞ 住所情報 */
.company__address {
  margin-left: 11px;
  margin-left: 0.6875rem;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.06em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .company__address {
    font-size: 0.6875rem;
  }
}

/* 会社情報（共通）＞ 地図 */
.company__map {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 77.7142857143%;
}

.company__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* インスタフィード（共通）*/
.feed {
  position: relative;
  padding: 84px 20px 70px 20px;
  padding: 5.25rem 1.25rem 4.375rem 1.25rem;
  background-color: #ececec;
}
@media screen and (min-width: 768px) {
  .feed {
    padding: 1.875rem 3.75rem 3.75rem 3.75rem;
  }
}

.feed::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  top: -1.5rem;
  left: -12px;
  left: -0.75rem;
  width: 122px;
  width: 7.625rem;
  height: 122px;
  height: 7.625rem;
  background: url(../images/alliance-creators_page/sns_mark.png) no-repeat;
  background-size: contain;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .feed::before {
    left: -1.5rem;
    width: 8.4375rem;
    height: 8.4375rem;
  }
}

.feed::after {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  right: 12px;
  right: 0.75rem;
  width: 154px;
  width: 9.625rem;
  height: 147px;
  height: 9.1875rem;
  background: url(../images/alliance-creators_page/sns_gradation.png) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .feed::after {
    top: 0;
    right: 0.3125rem;
    width: 14.875rem;
  }
}

/* インスタフィード（共通）＞ タイトル */
.feed__head {
  margin-left: 90px;
  margin-left: 5.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feed__head {
    text-align: left;
  }
}

/* インスタフィード（共通）＞ 画像 */
.feed__images {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 22px;
  margin-top: 1.375rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .feed__images {
    grid-template-columns: repeat(4, auto);
    gap: 1.75rem;
    margin-top: 1.875rem;
  }
}

.feed__image {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 211px;
  max-width: 13.1875rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.instagram-media {
  position: absolute;
  top: -66px;
  left: -3%;
  min-width: auto !important;
  width: 106% !important;
}

/* メニューボタン（SPヘッダー） */
.hamburger {
  position: relative;
  display: inline-block;
  padding: 0;
  width: 47px;
  width: 2.9375rem;
  height: 28px;
  height: 1.75rem;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* メニューボタン（中線） */
.hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 47px;
  width: 2.9375rem;
  height: 2px;
  background-color: #333;
  -webkit-transition: inherit;
  transition: inherit;
}

/* メニューボタン（上下線） */
.hamburger__line::before,
.hamburger__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-transition: inherit;
  transition: inherit;
}

/* メニューボタン（上線） */
.hamburger__line::before {
  top: -15px;
  top: -0.9375rem;
  -webkit-animation: btn-bar01 0.75s forwards;
          animation: btn-bar01 0.75s forwards;
}

@-webkit-keyframes btn-bar01 {
  0% {
    -webkit-transform: translateY(0.9375rem) rotate(45deg);
            transform: translateY(0.9375rem) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0.9375rem) rotate(0);
            transform: translateY(0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes btn-bar01 {
  0% {
    -webkit-transform: translateY(0.9375rem) rotate(45deg);
            transform: translateY(0.9375rem) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0.9375rem) rotate(0);
            transform: translateY(0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
/* メニューボタン（上線／クリック時） */
.is-drawerActive .hamburger__line::before {
  -webkit-animation: active-btn-bar01 0.75s forwards;
          animation: active-btn-bar01 0.75s forwards;
}

@-webkit-keyframes active-btn-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0.9375rem) rotate(0);
            transform: translateY(0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.9375rem) rotate(45deg);
            transform: translateY(0.9375rem) rotate(45deg);
  }
}

@keyframes active-btn-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0.9375rem) rotate(0);
            transform: translateY(0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.9375rem) rotate(45deg);
            transform: translateY(0.9375rem) rotate(45deg);
  }
}
/* メニューボタン（中線／クリック時） */
.is-drawerActive .hamburger__line {
  background-color: transparent;
}

/* メニューボタン（下線） */
.hamburger__line::after {
  top: 15px;
  top: 0.9375rem;
  -webkit-animation: btn-bar03 0.75s forwards;
          animation: btn-bar03 0.75s forwards;
}

@-webkit-keyframes btn-bar03 {
  0% {
    -webkit-transform: translateY(-0.9375rem) rotate(-45deg);
            transform: translateY(-0.9375rem) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-0.9375rem) rotate(0);
            transform: translateY(-0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes btn-bar03 {
  0% {
    -webkit-transform: translateY(-0.9375rem) rotate(-45deg);
            transform: translateY(-0.9375rem) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-0.9375rem) rotate(0);
            transform: translateY(-0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
/* メニューボタン（下線／クリック時） */
.is-drawerActive .hamburger__line::after {
  -webkit-animation: active-btn-bar03 0.75s forwards;
          animation: active-btn-bar03 0.75s forwards;
}

@-webkit-keyframes active-btn-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-0.9375rem) rotate(0);
            transform: translateY(-0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.9375rem) rotate(-45deg);
            transform: translateY(-0.9375rem) rotate(-45deg);
  }
}

@keyframes active-btn-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-0.9375rem) rotate(0);
            transform: translateY(-0.9375rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.9375rem) rotate(-45deg);
            transform: translateY(-0.9375rem) rotate(-45deg);
  }
}
/* メニューボタン（テキスト） */
.hamburger::after {
  position: absolute;
  bottom: -40px;
  bottom: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "all";
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 0.9545454545;
  letter-spacing: 0.05em;
  color: #333;
  font-style: italic;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-transform: uppercase;
}

.is-drawerActive .hamburger::after {
  content: "close";
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* メニュー（ヘッダー） */
/* メニューリスト */
.menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 各メニュー */
.menu__item {
  width: 100%;
  padding: 16px 0;
  padding: 1rem 0;
  text-align: left;
}

.menu__item a {
  position: relative;
  height: inherit;
}

.menu__item--en {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.6153846154;
  letter-spacing: 0.05em;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .menu__item--en {
    font-size: 2.5625rem;
  }
}

.menu__item--jp {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  color: #808080;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .menu__item--jp {
    font-size: 1.125rem;
  }
}

/* SNSリンク */
.menu__icon-items {
  margin-top: 2.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__icon-item {
  width: 58px;
  width: 3.625rem;
}

/* セクションタイトル（共通） */
.section-title {
  display: inline;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.6363636364;
  letter-spacing: 0em;
  color: #4d4d4d;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0, #ffff00));
  background: linear-gradient(transparent 70%, #ffff00 0);
}
@media screen and (min-width: 768px) {
  .section-title {
    display: inline-block;
    padding: 0 12px;
    font-size: 1.625rem;
    letter-spacing: 0.045em;
  }
}

.section-title.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-title.u-desktop {
    display: inline-block;
  }
}

.section-title.u-mobile {
  display: inline;
}
@media screen and (min-width: 768px) {
  .section-title.u-mobile {
    display: none;
  }
}

/* サービス（共通）*/
/* サービス（共通）＞ タイトル画像*/
.service__title {
  margin-top: -6px;
  margin-top: -0.375rem;
  width: 100%;
  overflow: hidden;
}

/* サービス（共通）＞ サブタイトル*/
.service__sub-title {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .service__sub-title {
    margin-top: 0.8125rem;
    font-size: 1.375rem;
  }
}

/* サービス（共通）＞ 文章*/
.service__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.035em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .service__text {
    margin-top: 1.25rem;
    letter-spacing: 0.05em;
  }
}

/* フォロワー */
/* フォロワー＞ タイトル */
.follower__title {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #4d4d4d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .follower__title {
    font-size: 1.625rem;
  }
}

.follower__title img {
  margin: 0 19px 0 42px;
  margin: 0 1.1875rem 0 2.625rem;
  width: 138px;
  width: 8.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .follower__title img {
    margin: 0 1.875rem 0 0;
    width: 13.125rem;
  }
}

/* フォロワー＞ フォロワー数 */
.follower__count {
  font-weight: 900;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.64;
  letter-spacing: 0.02em;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .follower__count {
    margin-top: 1.3125rem;
    width: 30.25rem;
    font-size: 5.0625rem;
    letter-spacing: 0.03em;
    text-align: right;
  }
}

/* フォロワー＞ 補足説明 */
.follower__description {
  margin: 7px 46px 0 0;
  margin: 0.4375rem 2.875rem 0 0;
  font-weight: 500;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #4d4d4d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: right;
}
@media screen and (min-width: 768px) {
  .follower__description {
    margin: 0.8125rem 0 0 0;
    font-size: 1rem;
  }
}

/* フォロワー＞ 円グラフ */
.follower__chart {
  position: relative;
  margin: 23px auto 0 auto;
  margin: 1.4375rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .follower__chart {
    margin: 0 0 0 5.75rem;
  }
}

#follower_circle {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  /* 円形に */
  background: conic-gradient(#77b4d9 137deg, #e67678 137deg 360deg);
}
@media screen and (min-width: 768px) {
  #follower_circle {
    width: 318px;
    height: 318px;
  }
}

/* フォロワー＞ 円グラフ ＞ 白線 */
#follower_circle::before {
  position: absolute;
  top: 19%;
  left: 49%;
  content: "";
  width: 105px;
  height: 133px;
  border-left: 6px solid #fff;
  border-bottom: 8px solid #fff;
  -webkit-transform: skew(0deg, 47deg);
          transform: skew(0deg, 47deg);
}
@media screen and (min-width: 768px) {
  #follower_circle::before {
    top: 26%;
    left: 49%;
    width: 166px;
    height: 166px;
  }
}

/* フォロワー＞ 円グラフ ＞ ラベル */
.follower__label {
  position: absolute;
  top: 41%;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .follower__label {
    font-size: 0.875rem;
  }
}

.follower__label--women {
  left: 22%;
}

.follower__label--men {
  right: 21%;
}

/* フッター */
.footer {
  width: 100%;
}

/* フッター ＞ 会社情報 */
.footer-company {
  padding: 54px 0 80px;
  padding: 3.375rem 0 5rem;
  background-color: #e1e1e1;
}
@media screen and (min-width: 768px) {
  .footer-company {
    padding: 4.625rem 0 8rem;
  }
}

/* フッター ＞ 会社情報 ＞ インナー */
.footer-company__inner {
  padding: 0 15px 0 15px;
  padding: 0 0.9375rem 0 0.9375rem;
}

/* フッター ＞ 会社情報 ＞ タイトル */
.footer-company__title {
  margin: 0 auto;
  width: 230px;
  width: 14.375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .footer-company__title {
    width: 21.875rem;
  }
}

.footer-company__items {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  gap: 2.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-company__items {
    margin-top: 3.9375rem;
    grid-template-columns: 21.875rem 21.875rem;
  }
}

/* フッター ＞ 会社情報 ＞ ボタン */
.footer-company__link {
  margin-top: 64px;
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-company__link {
    margin-top: 6.4375rem;
  }
}

.footer-company__link a {
  padding: 14px 40px;
  padding: 0.875rem 2.5rem;
  border-radius: 1.5625rem;
  background-color: #8c2226;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer-company__link a {
    padding: 0.8125rem 2rem;
  }
}

/* フッター ＞ コンテナ */
.footer__container {
  padding: 36px 0 69px 0;
  padding: 2.25rem 0 4.3125rem 0;
  background-color: #8c2226;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 3.125rem 0 4.3125rem 0;
  }
}

/* フッター ＞ キャッチコピー */
.footer__catch {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__catch {
    font-size: 1.0625rem;
  }
}

/* フッター ＞ ロゴエリア */
.footer__logo {
  margin-top: 37px;
  margin-top: 2.3125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-top: 3.4375rem;
  }
}

/* フッター ＞ コラボレーション */
.footer__collaboration {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__collaboration {
    margin-top: 1.6875rem;
  }
}

/* フッター ＞ SNSリンク */
.footer__icon-items {
  margin-top: 44px;
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(4, 4.75rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__icon-items {
    margin-top: 1.625rem;
    grid-template-columns: repeat(4, 3.625rem);
  }
}

.footer__icon-item a img {
  width: 100%;
}

/* フッター ＞ コピーライト */
.footer__copyright {
  margin-top: 34px;
  margin-top: 2.125rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5333333333;
  letter-spacing: 0em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 1.875rem;
  }
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  z-index: 20;
}

/* ヘッダー ＞ インナー */
.header__inner {
  margin: 0 auto;
  padding: 0 3.125vw 0 3.125vw;
  width: 100%;
  max-width: 1320px;
  max-width: 82.5rem;
  height: inherit;
}

/* ヘッダー ＞ メニュー */
.header__menu {
  text-align: right;
}

/* ヘッダー ＞ メニューボタン */
.header__menu-button {
  top: 6.4583333333vw;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .header__menu-button {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ヘッダー ＞ メニューリスト */
.header__menu-navi {
  display: none;
  width: 100vw;
  height: 100vh;
  overflow: auto;
}

/* メニューボタンクリック時、bodyのスクロールを非表示 */
.is-drawerActive {
  overflow: hidden;
}

/* ヘッダー ＞ メニューリスト */
.is-drawerActive .header__menu-navi {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
  padding: 1.875rem;
  width: 100%;
  background-color: rgba(255, 255, 255, .97);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .is-drawerActive .header__menu-navi {
    padding: 5.2083333333vw 29% 0 29%;
  }
}

/* ご利用の流れ（下層ページ） */
.sub-flow {
  padding: 40px 0 25px 0;
  padding: 2.5rem 0 1.5625rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-flow {
    padding: 4.1875rem 0 5.6875rem 0;
  }
}

.sub-influencer .sub-flow {
  padding: 40px 0 25px 0;
  padding: 2.5rem 0 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .sub-influencer .sub-flow {
    padding: 4.5rem 0 4.4375rem 0;
  }
}

.sub-flow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 16px 0 15px;
  padding: 0 1rem 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .sub-flow__inner {
    padding: 0 25px;
  }
}

/* ご利用の流れ（下層ページ）＞ フロー */
.sub-flow__items {
  display: inline-block;
  margin: 32px auto 0 auto;
  margin: 2rem auto 0 auto;
  max-width: 558px;
}
@media screen and (min-width: 768px) {
  .sub-flow__items {
    margin: 4.3125rem auto 0 auto;
  }
}

.sub-flow__item {
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
  display: grid;
  grid-template-columns: 4.375rem auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .sub-flow__item {
    margin-bottom: 3.125rem;
    grid-template-columns: 9.375rem auto;
  }
}

/* ご利用の流れ（下層ページ）＞ フロー ＞ 番号 */
.sub-flow__step {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.2727272727;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-flow__step {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 1.0625rem;
  }
}

.sub-company .sub-flow__step {
  background-color: #00aaa0;
}

.sub-influencer .sub-flow__step {
  background-color: #e16464;
}

.sub-flow__step span {
  font-weight: 300;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sub-flow__step span {
    font-size: 2.125rem;
  }
}

.sub-flow__item:not(:last-child) .sub-flow__step:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -37px;
  bottom: -2.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  width: 0.75rem;
  height: 37px;
  height: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .sub-flow__item:not(:last-child) .sub-flow__step:after {
    width: 1rem;
  }
}

.sub-company .sub-flow__item:not(:last-child) .sub-flow__step:after {
  background: url(../images/for-company_page/co-arrow.svg) no-repeat;
}

.sub-influencer .sub-flow__item:not(:last-child) .sub-flow__step:after {
  background: url(../images/for-influencer_page/influ-arrow.svg) no-repeat;
}

/* ご利用の流れ（下層ページ）＞ フロー ＞ 文章 */
.sub-flow__text {
  padding: 0 0 0 12px;
  padding: 0 0 0 0.75rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  color: #4d4d4d;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-flow__text {
    padding: 0 1.3125rem 0 0.3125rem;
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

/* フォロワー数（下層ページ） */
/* フォロワー数（下層ページ）＞ インナー */
.sub-follower__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0 60px 0;
  padding: 1rem 0 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .sub-follower__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 5.75rem 1.25rem;
  }
}
@media screen and (min-width: 1120px) {
  .sub-follower__inner {
    padding: 5.75rem 9.375rem;
  }
}

/* フォロワー数（下層ページ）＞ コンテンツ */
.sub-follower__contents {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

/* メインビジュアル（下層ページ） */
.sub-mv {
  position: relative;
  width: 100%;
  height: 350px;
  height: 21.875rem;
}
@media screen and (min-width: 768px) {
  .sub-mv {
    height: 43.75rem;
  }
}

.sub-mv__image img {
  width: 100%;
  height: 350px;
  height: 21.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 13%;
     object-position: 13%;
}
@media screen and (min-width: 768px) {
  .sub-mv__image img {
    height: 43.75rem;
    -o-object-position: initial;
       object-position: initial;
  }
}

.sub-mv__header {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-mv__header {
    width: 30rem;
  }
}

/* ポイント（下層ページ） */
.sub-point {
  padding: 49px 0 80px 0;
  padding: 3.0625rem 0 5rem 0;
  background-color: #e1e1e1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-point {
    padding: 3.5rem 0 5rem 0;
  }
}

.sub-influencer .sub-point {
  background-color: #ffd9c2;
  padding: 30px 0 80px 0;
  padding: 1.875rem 0 5rem 0;
}
@media screen and (min-width: 768px) {
  .sub-influencer .sub-point {
    padding: 3.3125rem 0 5rem 0;
  }
}

/* ポイント（下層ページ）＞ 画像 */
.sub-point__image {
  margin: 26px auto 0 auto;
  margin: 1.625rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-point__image {
    margin: 3.1875rem auto 0 auto;
    width: 45rem;
  }
}

.sub-influencer .sub-point__image {
  margin: 20px auto 0 auto;
  margin: 1.25rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-influencer .sub-point__image {
    margin: 0.9375rem auto 0 auto;
  }
}

/* ポイント（下層ページ）＞ ポイント */
.sub-point__items {
  margin: 37px auto 0 auto;
  margin: 2.3125rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .sub-point__items {
    margin: 1.625rem 0 0 0;
    grid-template-columns: repeat(3, 21.875rem);
    gap: 2.125rem;
    max-width: 100%;
  }
}

.sub-influencer .sub-point__items {
  margin: 28px auto 0 auto;
  margin: 1.75rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-influencer .sub-point__items {
    margin: 2rem 0 0 0;
  }
}

.sub-point__item {
  width: 100%;
}

/* ポイント（下層ページ）＞ ポイント ＞ 番号 */
.sub-point__no {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-point__no {
    width: 21.875rem;
  }
}

/* ポイント（下層ページ）＞ ポイント ＞ コンテナ */
.sub-point__container {
  background-color: #fff;
  padding: 8px 9px 43px 9px;
  padding: 0.5rem 0.5625rem 2.6875rem 0.5625rem;
  min-height: 235px;
  min-height: 14.6875rem;
}
@media screen and (min-width: 768px) {
  .sub-point__container {
    min-height: 15.625rem;
  }
}

.sub-influencer .sub-point__container {
  padding: 8px 9px 12px 9px;
  padding: 0.5rem 0.5625rem 0.75rem 0.5625rem;
}

/* ポイント（下層ページ）＞ ポイント ＞ 見出し */
.sub-point__header {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #00aaa0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sub-point__header {
    letter-spacing: 0.03em;
  }
}

.sub-influencer .sub-point__header {
  color: #e16464;
}

/* ポイント（下層ページ）＞ ポイント ＞ 文章 */
.sub-point__text {
  margin: 8px 6px 0 15px;
  margin: 0.5rem 0.375rem 0 0.9375rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-point__text {
    margin: 0.8125rem 0.1875rem 0 0.9375rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}

/* 404ページ */
.error-404 {
  margin-top: 200px;
  margin-top: 12.5rem;
  width: 100%;
  height: 300px;
  height: 18.75rem;
  text-align: center;
}

/* プロフィール */
.sub-profile__section {
  background-color: #8c2226;
  color: #fff;
  padding: 60px 0 66px;
  padding: 3.75rem 0 4.125rem;
}
@media screen and (min-width: 768px) {
  .sub-profile__section {
    padding: 5.625rem 0 6rem;
  }
}

/* プロフィール＞ インナー */
.sub-profile__inner {
  max-width: 1200px;
  padding-right: 0;
  padding-left: 0;
}

/* プロフィール＞ コンテナ */
.sub-profile__container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media screen and (min-width: 768px) {
  .sub-profile__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sub-profile__left,
.sub-profile__right {
  display: contents;
}
@media screen and (min-width: 768px) {
  .sub-profile__left,
.sub-profile__right {
    display: inline;
    display: initial;
  }
}

.sub-profile__left {
  max-width: 597px;
}

@media screen and (min-width: 768px) {
  .sub-profile__right {
    margin: 0 2.0625rem 0 7rem;
    width: 100%;
  }
}

/* プロフィール＞ タイトル */
.sub-profile__head {
  margin-left: 5px;
  margin-left: 0.3125rem;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.27em;
  color: #897a3d;
  -webkit-transform: skewX(-22deg);
          transform: skewX(-22deg);
}
@media screen and (min-width: 768px) {
  .sub-profile__head {
    margin-left: 0;
    font-size: 2.1875rem;
    letter-spacing: 0.1em;
  }
}

/* プロフィール＞ 写真 */
.sub-profile__image {
  grid-row: 1/2;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .sub-profile__image {
    width: 49.6666666667vw;
    max-width: 596px;
  }
}

.sub-profile__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* プロフィール＞ メッセージ */
.sub-profile__message {
  grid-row: 4/5;
  margin: 34px 18px 0 18px;
  margin: 2.125rem 1.125rem 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .sub-profile__message {
    margin: 2.5rem 0 0 2.0625rem;
  }
}

.sub-profile__message-text {
  margin: 9px 12px 0 12px;
  margin: 0.5625rem 0.75rem 0 0.75rem;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: -0.01em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sub-profile__message-text {
    margin: 0.5rem 0 0 8.125rem;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

/* プロフィール＞ 名前 */
.sub-profile__title {
  margin: 16px 20px 0;
  margin: 1rem 1.25rem 0;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .sub-profile__title {
    margin: 0 0 0 0.1875rem;
  }
}

.sub-profile__name {
  margin-top: 2px;
  margin-top: 0.125rem;
  font-weight: 900;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sub-profile__name {
    margin-top: 0.375rem;
    font-size: 3.625rem;
  }
}

/* プロフィール ＞ 白吹き出し */
.sub-profile__speech {
  grid-row: 3/4;
  margin: 20px 20px 0 20px;
  margin: 1.25rem 1.25rem 0 1.25rem;
  position: relative;
  background-color: #fff;
  padding: 16px 18px 20px;
  padding: 1rem 1.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-profile__speech {
    margin: 1.625rem 0 0 0;
    padding: 1.25rem 1.375rem 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-profile__speech::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -71%;
    left: -3.6875rem;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 0.8125rem 3.75rem 0.8125rem 0;
  }
}

/* プロフィール ＞ 白吹き出し ＞ タイトル */
.sub-profile__speech dt {
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #8c2226;
}
@media screen and (min-width: 768px) {
  .sub-profile__speech dt {
    font-size: 1.125rem;
  }
}

/* プロフィール ＞ 白吹き出し ＞ 内容 */
.sub-profile__speech dd {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .sub-profile__speech dd {
    margin-bottom: 1.375rem;
    font-size: 1rem;
  }
}

.sub-profile__speech dd:last-child {
  margin-bottom: 0;
}

/* プロフィール＞ SNSリンク */
.sub-profile__link {
  margin: 23px 23px 0 23px;
  margin: 1.4375rem 1.4375rem 0 1.4375rem;
  grid-row: 5/6;
}
@media screen and (min-width: 768px) {
  .sub-profile__link {
    margin: 2.375rem 0 0 0;
  }
}

.link__head {
  margin-left: 3px;
  margin-left: 0.1875rem;
}

.link__list {
  margin: 10px 2px 0 2px;
  margin: 0.625rem 0.125rem 0 0.125rem;
}
@media screen and (min-width: 768px) {
  .link__list {
    margin: 0.5625rem 0 0 0;
  }
}

.link__list li:not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .link__list li:not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.link__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.link__list li a img {
  width: 38px;
  width: 2.375rem;
}
@media screen and (min-width: 768px) {
  .link__list li a img {
    width: 3.5625rem;
  }
}

.link__id {
  margin-left: 4px;
  margin-left: 0.25rem;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .link__id {
    margin-left: 1rem;
    font-size: 1.125rem;
  }
}

/* プロフィール＞ お問い合わせへ */
.sub-profile__button {
  grid-row: 6/7;
  margin: 47px 20px 0 20px;
  margin: 2.9375rem 1.25rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-profile__button {
    margin: 3rem 0 0 0;
  }
}

.sub-profile__button a {
  display: inline-block;
  width: 100%;
  padding: 17px 0 20px 0;
  padding: 1.0625rem 0 1.25rem 0;
  border: 1px solid #fff;
  border-radius: 1.75rem;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.13em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-profile__button a {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.53846;
    letter-spacing: 0em;
  }
}

/* プロフィール＞ SNSフィード */
.sub-profile__feed {
  max-width: 1088px;
  max-width: 68rem;
  margin: 38px 20px 0 20px;
  margin: 2.375rem 1.25rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-profile__feed {
    margin: 3.625rem auto 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .sub-profile__feed .sub-profile__head {
    margin-left: 5.625rem;
  }
}

/* プロフィール＞ ナビゲーション */
.sub-profile__navi {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 42px;
  row-gap: 2.625rem;
  padding: 34px 0;
  padding: 2.125rem 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .sub-profile__navi {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
    -webkit-column-gap: 11.25rem;
       -moz-column-gap: 11.25rem;
            column-gap: 11.25rem;
    padding: 3.125rem 0;
  }
}

.sub-profile__navi li:first-child {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-profile__navi li:first-child {
    text-align: right;
  }
}

.sub-profile__navi li:last-child {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-profile__navi li:last-child {
    text-align: left;
  }
}

.sub-profile__navi a {
  position: relative;
  display: inline-block;
  padding: 16px 0;
  padding: 1rem 0;
  width: 296px;
  width: 18.5rem;
  border-radius: 1.75rem;
  background-color: #897a3d;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-profile__navi a {
    padding: 0.75rem 0;
    font-size: 1rem;
  }
}

.sub-profile__back::after {
  position: absolute;
  top: 50%;
  left: 13px;
  left: 0.8125rem;
  content: "＜";
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .sub-profile__back::after {
    left: 1.875rem;
    font-size: 1rem;
  }
}

.nav-previous {
  display: none;
}

.nav-next a {
  padding: 16px 31px 16px 0;
  padding: 1rem 1.9375rem 1rem 0;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .nav-next a {
    padding: 0.75rem 1.9375rem 0.75rem 0;
  }
}

.nav-next a::after {
  position: absolute;
  top: 50%;
  right: 23px;
  right: 1.4375rem;
  content: "＞";
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 28px;
  font-size: 1.75rem;
}

/* 所属インフルエンサー（下層ページ） */
.sub-creators {
  padding: 40px 0 66px;
  padding: 2.5rem 0 4.125rem;
}
@media screen and (min-width: 768px) {
  .sub-creators {
    padding: 5.125rem 0 10.25rem;
  }
}

/* 所属インフルエンサー（下層ページ）＞ インナー */
.sub-creators__inner {
  padding-right: 0;
  padding-left: 0;
}

/* 所属インフルエンサー（下層ページ）＞ タイトル */
.sub-creators__title {
  width: 294px;
  width: 18.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-creators__title {
    width: 21.875rem;
  }
}
@media screen and (min-width: 768px){
  .category__name{
    margin-left: 0!important;
    font-size: 1.2rem;
  }
}

/* 所属インフルエンサー（下層ページ）＞ カテゴリー一覧 */
.sub-creators__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: 44px auto 0 auto;
  margin: 2.75rem auto 0 auto;
  outline: 1px solid #8c2226;
  outline-offset: -1px;
}
@media screen and (min-width: 768px) {
  .sub-creators__categories {
    margin: 3.75rem auto 0 auto;
  }
}

.sub-creators__category:first-child {
  border-bottom: 1px solid #8c2226;
}
@media screen and (min-width: 768px) {
  .sub-creators__category:first-child {
    border-bottom: none;
  }
}

.sub-creators__category + .sub-creators__category {
  border-bottom: 1px solid #8c2226;
  border-left: 1px solid #8c2226;
}
@media screen and (min-width: 768px) {
  .sub-creators__category + .sub-creators__category {
    border-bottom: none;
  }
}

.sub-creators__category {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .sub-creators__category {
    width: 16.6666666667%;
  }
}

/* 所属インフルエンサー（下層ページ）＞ インフルエンサー一覧 */
.sub-creators__items {
  margin: 80px auto 0 auto;
  margin: 5rem auto 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  row-gap: 34px;
  row-gap: 2.125rem;
}
@media screen and (min-width: 768px) {
  .sub-creators__items {
    margin: 7.8125rem auto 0 auto;
    grid-template-columns: repeat(5, 20%);
    row-gap: 2.9375rem;
  }
}

.sub-creators__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 所属インフルエンサー（下層ページ）＞ インスタ情報 */
.sub-creators__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sub-creators__text img {
  width: 26px;
  width: 1.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .sub-creators__text img {
    width: 2.1875rem;
  }
}

.sub-creators__id {
  margin-left: 6px;
  margin-left: 0.375rem;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sub-creators__id {
    font-size: 1rem;
  }
}

/* 審査について（下層ページ） */
.sub-check {
  background-color: #e1e1e1;
  padding: 32px 0;
  padding: 2rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-check {
    padding: 5.5rem 0;
  }
}

/* 審査について（下層ページ）＞ コンテナ */
.sub-check__container {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  padding: 27px 20px 26px 20px;
  padding: 1.6875rem 1.25rem 1.625rem 1.25rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .sub-check__container {
    padding: 1.5rem 2.8125rem 3rem 3.0625rem;
    width: 31.25rem;
    max-width: 100%;
  }
}

/* 審査について（下層ページ）＞ Checkマーク */
.sub-check__container::before {
  content: "";
  display: block;
  position: absolute;
  top: -44px;
  top: -2.75rem;
  left: -4px;
  left: -0.25rem;
  width: 136px;
  width: 8.5rem;
  height: 83px;
  height: 5.1875rem;
  background: url(../images/common/check.svg) no-repeat;
}
@media screen and (min-width: 768px) {
  .sub-check__container::before {
    top: -2.25rem;
    left: 1.0625rem;
    width: 8.125rem;
    height: 4.875rem;
  }
}

/* 審査について（下層ページ）＞ タイトル */
.sub-check__title {
  font-weight: 700;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.7619047619;
  letter-spacing: 0.05em;
  color: #00aaa0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-check__title {
    font-size: 1.625rem;
  }
}

/* 審査について（下層ページ）＞ 文章 */
.sub-check__text {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.07em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-check__text {
    margin-top: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

/* 問い合わせ（下層ページ） */
.sub-contact {
  padding: 38px 0 66px 0;
  padding: 2.375rem 0 4.125rem 0;
}

.sub-contact__inner {
  max-width: 750px;
  text-align: center;
  padding-top: 17px;
  padding-top: 1.0625rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-contact__inner {
    padding-top: 1.875rem;
  }
}

#wpcf7-f39-o1 {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  #wpcf7-f39-o1 {
    margin-top: 4.5rem;
  }
}

/* フォーム ＞ ラベル */
.form__label {
  display: block;
  margin-top: 45px;
  margin-top: 2.8125rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
}
@media screen and (min-width: 768px) {
  .form__label {
    margin-top: 2.3125rem;
    font-size: 0.875rem;
  }
}

/* フォーム ＞ 必須表示 */
.form__required {
  display: inline-block;
  margin-left: 16px;
  margin-left: 1rem;
  padding: 1px 8px 2px 8px;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border-radius: 12px;
  background-color: #00aaa0;
}

/* フォーム ＞ 入力項目 */
.form__input {
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 10px;
  padding: 0.625rem;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .form__input {
    font-size: 1rem;
  }
}

/* フォーム ＞ ラジオボタン */
.wpcf7-form-control-wrap {
  display: block;
  text-align: left;
}

.wpcf7-list-item {
  display: block;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    display: inline-block;
  }
}

.form__radio label {
  display: inline-block;
  padding: 7px 23px 8px 23px;
  padding: 0.4375rem 1.4375rem 0.5rem 1.4375rem;
  font-weight: 400;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .form__radio label {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

/* spanの左側にボタンを配置するスペースを作る */
input[type=radio] + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
input[type=radio] + span::after,
input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #333;
  border-radius: 50%;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  top: 0;
  left: 0;
}

/* after上書き */
input[type=radio] + span::after {
  opacity: 0;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  top: 5px;
  top: 0.3125rem;
  left: 5px;
  left: 0.3125rem;
  border: none;
  background: #333;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
input[type=radio]:checked + span {
  color: #333;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

/* フォーム ＞ テキストエリア（お問合わせ内容） */
textarea {
  height: 284px;
  height: 17.75rem;
}
@media screen and (min-width: 768px) {
  textarea {
    height: 26.875rem;
  }
}

/* フォーム ＞ 送信ボタン */
.form__button {
  margin-top: 55px;
  margin-top: 3.4375rem;
  width: 225px;
  width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .form__button {
    margin-top: 3rem;
    width: 12.5rem;
  }
}

#norton-idsafe-field-logo-imgId {
  display: none;
}

div.wpcf7 .ajax-loader {
  display: none !important;
}

/*フォーム ＞  プライバシーポリシー*/
form .policy_check .wpcf7-list-item{
  display: block;
}
form .policy_check label{
  display: flex;
  justify-content: center;
}
form .policy_check input[type=checkbox]{
  display: unset;
  appearance: auto;
  background: transparent;
  border: unset;
  border-radius: 0;
  outline: unset;
}

form .policy_text{
  height: 200px;
  margin-top: 2.3125rem;
  margin-bottom: 20px;
  padding: 12px;
  text-align: left;
  overflow-y: scroll;
  border: 1px solid #707070;
}
form .policy_text .policy_title{
  font-size: 16px;
  font-weight: 500;
}
form .policy_text .policy_item *{
  font-size: 14px;
}
form .policy_text .policy_item{
  margin-bottom: 1em;
}
form .policy_text .policy_item dt{
  margin-bottom: 5px;
  font-weight: 500;
}
form .policy_text .policy_item ul{
  padding-top: 1em;
}



/* 登録について（下層ページ） */
.sub-register {
  background-color: #e1e1e1;
  padding: 60px 0;
  padding: 3.75rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-register {
    padding: 1.125rem 0;
    grid-template-columns: 50% 50%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0;
  }
}

/* 登録について（下層ページ）＞ コンテナ */
.sub-register__container {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  padding: 26px 20px 44px 20px;
  padding: 1.625rem 1.25rem 2.75rem 1.25rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .sub-register__container {
    margin: 0 0 0 2.25rem;
    padding: 2.1875rem 2.8125rem 1.875rem 3.0625rem;
    width: 83.3333333333%;
    max-width: 100%;
  }
}

/* 登録について（下層ページ）＞ Checkマーク */
.sub-register__container::before {
  content: "";
  display: block;
  position: absolute;
  top: -44px;
  top: -2.75rem;
  left: -4px;
  left: -0.25rem;
  width: 136px;
  width: 8.5rem;
  height: 83px;
  height: 5.1875rem;
  background: url(../images/common/check.svg) no-repeat;
}
@media screen and (min-width: 768px) {
  .sub-register__container::before {
    top: -2.75rem;
    left: 0.125rem;
    width: 8.125rem;
    height: 4.875rem;
  }
}

/* 登録について（下層ページ）＞ タイトル */
.sub-register__title {
  font-weight: 700;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.380952381;
  letter-spacing: 0.05em;
  color: #00aaa0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-register__title {
    font-size: 1.625rem;
  }
}

/* 登録について（下層ページ）＞ 文章 */
.sub-register__text {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.07em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-register__text {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

/* 登録について（下層ページ）＞ LINE */
.sub-register__button {
  margin-top: 28px;
  margin-top: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-register__button {
    margin-top: 1.875rem;
  }
}

.sub-register__button img {
  width: 240px;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .sub-register__button img {
    width: 13.75rem;
  }
}

/* 所属インフルエンサー（トップページ） */
.top-creators {
  background: -webkit-gradient(linear, left top, right top, color-stop(4%, #ff9e4d), color-stop(42%, #d30086), to(#3b31c9));
  background: linear-gradient(to right, #ff9e4d 4%, #d30086 42%, #3b31c9 100%);
  padding: 22px 0 40px;
  padding: 1.375rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-creators {
    padding: 2.8125rem 0 3.625rem;
  }
}

/* 所属インフルエンサー（トップページ）＞ インナー */
.top-creators__inner {
  padding-right: 0;
  padding-left: 0;
}

/* 所属インフルエンサー（トップページ）＞ タイトル */
.top-creators__title {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 2.6;
  letter-spacing: 0.07em;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-style: italic;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-creators__title {
    font-size: 3.125rem;
  }
}

/* 所属インフルエンサー（トップページ）＞ 一覧 */
.top-creators__items {
  margin: 22px auto 0 auto;
  margin: 1.375rem auto 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
@media screen and (min-width: 768px) {
  .top-creators__items {
    margin: 2.25rem auto 0 auto;
    grid-template-columns: repeat(5, 20%);
  }
}

.top-creators__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 所属インフルエンサー（トップページ）＞ VIEW MORE */
.top-creators__more {
  margin-top: 34px;
  margin-top: 2.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-creators__more {
    margin-top: 3.75rem;
  }
}

.top-creators__more a img {
  display: inline-block;
  width: 225px;
  width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .top-creators__more a img {
    width: 21.25rem;
  }
}

/* Q&A（トップページ） */
.top-faq {
  padding: 70px 0 153px;
  padding: 4.375rem 0 9.5625rem;
}
@media screen and (min-width: 768px) {
  .top-faq {
    padding: 3.75rem 0 10.0625rem;
  }
}

.top-faq__inner {
  max-width: 758px;
}

/* Q&A（トップページ）＞ タイトル */
.top-faq__title {
  margin: 0 auto;
  width: 70px;
  width: 4.375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .top-faq__title {
    width: 6.875rem;
  }
}

/* Q&A（トップページ）＞ 一覧 */
.top-faq__list {
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .top-faq__list {
    margin-top: 4.625rem;
  }
}

.top-faq__list a {
  margin-top: 16px;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  outline: 1px solid #802226;
  outline-offset: -1px;
}

/* Q&A（トップページ）＞ 質問 */
.top-faq__question {
  padding: 6px;
  padding: 0.375rem;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  letter-spacing: 0.04em;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .top-faq__question {
    padding: 0.5625rem 1.375rem;
    font-size: 1rem;
  }
}

/* ボタン（矢印） */
.top-faq__arrow {
  position: relative;
  display: block;
  width: 30px;
  width: 1.875rem;
  height: inherit;
  background-color: #802226;
}
@media screen and (min-width: 768px) {
  .top-faq__arrow {
    width: 2.5rem;
  }
}

.top-faq__arrow::before,
.top-faq__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .top-faq__arrow::before,
.top-faq__arrow::after {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.top-faq__arrow::before {
  background: #fff;
  top: 17px;
  top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .top-faq__arrow::before {
    top: 1.25rem;
  }
}

.top-faq__arrow::after {
  background: #802226;
  top: 15px;
  top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-faq__arrow::after {
    top: 0.9375rem;
  }
}

.top-faq__list a.is-active .top-faq__arrow::before {
  top: 18px;
  top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .top-faq__list a.is-active .top-faq__arrow::before {
    top: 1.5625rem;
  }
}

.top-faq__list a.is-active .top-faq__arrow::after {
  top: 20px;
  top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-faq__list a.is-active .top-faq__arrow::after {
    top: 1.875rem;
  }
}

/* Q&A（トップページ）＞ 回答 */
.top-faq__answer {
  display: none;
  padding: 8px 0 4px 8px;
  padding: 0.5rem 0 0.25rem 0.5rem;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .top-faq__answer {
    padding: 0.625rem 2.5625rem 0.375rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6875;
    letter-spacing: 0.05em;
  }
}

.top-faq__list a.is-active + .top-faq__answer {
  display: block;
}

/* フォロワー数（トップページ） */
/* フォロワー数（トップページ）＞ インナー */
.top-follower__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0 60px 0;
  padding: 1rem 0 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .top-follower__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 5.75rem 1.25rem;
  }
}
@media screen and (min-width: 1120px) {
  .top-follower__inner {
    padding: 5.75rem 9.375rem;
  }
}

/* フォロワー数（トップページ）＞ コンテンツ */
.top-follower__contents {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

/* LED（トップページ） */
.top-led {
  position: relative;
}

/* LED（トップページ）＞ コンテンツ */
.top-led__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  padding: 62px 25px 57px 25px;
  padding: 3.875rem 1.5625rem 3.5625rem 1.5625rem;
  background-color: rgba(255, 255, 255, .9);
}
@media screen and (min-width: 768px) {
  .top-led__contents {
    width: 26.375rem;
    padding: 3.875rem 2.875rem 4.5625rem 2.75rem;
    -webkit-transform: translate(-122%, -50%);
            transform: translate(-122%, -50%);
  }
}

/* LED（トップページ）＞ タイトル */
.top-led__title {
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.40625;
  letter-spacing: 0.05em;
  color: #8a7a3d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-led__title {
    font-size: 2.375rem;
    line-height: 1.2894736842;
  }
}

/* LED（トップページ）＞ 文章 */
.top-led__text {
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #4d4d4d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .top-led__text {
    margin-top: 1.3125rem;
    font-size: 0.9375rem;
    line-height: 1.5333333333;
    letter-spacing: 0.05em;
  }
}

.top-led__image {
  width: 100%;
  height: 650px;
  height: 40.625rem;
}
@media screen and (min-width: 768px) {
  .top-led__image {
    height: 40rem;
  }
}

.top-led__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ページリンク（トップページ） */
.top-links__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .top-links__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* ページリンク（トップページ）＞ 左側 */
.top-links__left {
  padding: 58px 30px 60px 30px;
  padding: 3.625rem 1.875rem 3.75rem 1.875rem;
  background-color: #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .top-links__left {
    padding: 4.1875rem 6.75rem 2.5rem 5.25rem;
    width: 50vw;
  }
}

/* ページリンク（トップページ）＞ 文章 */
.top-links__contents {
  margin: 0 0 0 auto;
  max-width: 600px;
}

/* ページリンク（トップページ）＞ タイトル */
.top-links__title {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.55;
  letter-spacing: 0.068em;
  color: #812226;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .top-links__title {
    font-size: 1.625rem;
    letter-spacing: 0.05em;
  }
}

/* ページリンク（トップページ）＞ 本文 */
.top-links__text {
  margin: 28px 0 0 5px;
  margin: 1.75rem 0 0 0.3125rem;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #4d4d4d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .top-links__text {
    margin: 2rem 0 0 0.3125rem;
    font-size: 1rem;
    line-height: 1.4375;
    letter-spacing: 0.05em;
  }
}

/* ページリンク（トップページ）＞ 右側 */
@media screen and (min-width: 768px) {
  .top-links__right {
    width: 50vw;
    background: -webkit-gradient(linear, left top, left bottom, from(#00a79d), color-stop(50%, #00a79d), color-stop(50%, #da6464), to(#da6464));
    background: linear-gradient(180deg, #00a79d 0%, #00a79d 50%, #da6464 50%, #da6464 100%);
  }
}

/* ページリンク（トップページ）＞ リンク */
.top-links__items {
  margin: 0 auto 0 0;
}

@media screen and (min-width: 768px) {
  .top-links__item img {
    max-width: 600px;
    width: 50vw;
  }
}

/* メインビジュアル（トップページ） */
.top-mv__container {
  position: relative;
  width: 100%;
  height: 350px;
}
@media screen and (min-width: 768px) {
  .top-mv__container {
    height: 700px;
  }
}

.top-mv__image {
  width: 100%;
  height: 100%;
}

.top-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 41.8666666667%;
     object-position: 41.8666666667%;
}
@media screen and (min-width: 768px) {
  .top-mv__image img {
    -o-object-position: initial;
       object-position: initial;
  }
}

.top-mv__logo {
  display: none;
  position: absolute;
  top: 50%;
  left: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 54%;
  height: 65%;
}
@media screen and (min-width: 768px) {
  .top-mv__logo {
    width: 60%;
    max-width: 75rem;
  }
}
@media screen and (min-width: 1120px) {
  .top-mv__logo {
    top: 52%;
    left: 22%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    height: auto;
  }
}

.top-mv__logo img {
  max-height: 100%;
}

.top-mv__message {
  width: 100%;
  padding: 31px 30px 41px 30px;
  padding: 1.9375rem 1.875rem 2.5625rem 1.875rem;
  background-color: #e1e1e1;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-mv__message {
    font-size: 2rem;
  }
}

.top-mv__message span {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4090909091;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .top-mv__message span {
    font-size: 2.5rem;
  }
}

.top-mv__message em {
  font-weight: 900;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2083333333;
  letter-spacing: 0.05em;
  color: #812226;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .top-mv__message em {
    font-size: 2.9375rem;
  }
}

/* サービス（トップページ） */
.top-service {
  padding: 92px 0 113px;
  padding: 5.75rem 0 7.0625rem;
}
@media screen and (min-width: 768px) {
  .top-service {
    padding: 6.25rem 0 10.0625rem;
  }
}

.top-service__inner {
  max-width: 1040px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top-service__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* サービス（トップページ）＞ タイトル */
.top-service__title {
  margin: 0 auto;
  width: 200px;
  width: 12.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .top-service__title {
    width: 18.75rem;
  }
}

/* サービス（トップページ）＞ 一覧 */
.top-service__items {
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .top-service__items {
    margin-top: 3.375rem;
  }
}

.top-service__item {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .top-service__item {
    grid-template-columns: 61% auto;
    gap: 6.3333333333%;
  }
}

.top-service__item + .top-service__item {
  margin-top: 140px;
  margin-top: 8.75rem;
}
@media screen and (min-width: 768px) {
  .top-service__item + .top-service__item {
    margin-top: 5.6875rem;
  }
}

.top-service__contents {
  padding: 0 20px 0 20px;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .top-service__contents {
    padding: 0;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.top-service__image {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .top-service__image {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
/*# sourceMappingURL=styles.css.map */