@charset "UTF-8";
/*============================
  A modern CSS reset
============================*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

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

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*============================
  base
============================*/
/* フォント */
html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

/* リスト */
ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* リンク */
a {
  text-decoration: none;
  color: #000;
}

/* 送信ボタン（safari用） */
input[type=submit] {
  -webkit-appearance: none;
}

/* 画面拡大防止（iPhone用） */
input[type=text], input[type=email], input[type=number], input[type=url], textarea {
  font-size: 16px;
}

/* iphoneハイライトカラー消す */
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*============================
  ボタン
============================*/
.c-button {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.c-button:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.c-button--orange {
  font-size: 40px;
  line-height: 1.2;
  padding: 30px 50px;
  border-radius: 20px;
  background: linear-gradient(108.69deg, #FFA760 17.22%, #FB7102 88.28%, #FB7102 88.28%);
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .c-button--orange {
    font-size: 30px;
    padding: 25px 45px;
  }
}
@media screen and (max-width: 767px) {
  .c-button--orange {
    font-size: 20px;
    padding: 20px 40px;
  }
}
.c-button--pink {
  font-size: 24px;
  line-height: 1.2083333333;
  padding: 20px 30px;
  border-radius: 10px;
  background: linear-gradient(108.69deg, #F50093 45.76%, #FB7102 88.28%);
  /* sp style */
}
@media screen and (max-width: 767px) {
  .c-button--pink {
    font-size: 16px;
    line-height: 1.1875;
    padding: 10px 20px;
  }
}

/*============================
  セクション見出し
============================*/
.c-heading {
  text-align: center;
  margin-bottom: 60px;
  /* 見出し */
  /* リード文 */
}
.c-heading__title {
  font-weight: 700;
  font-size: 40px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .c-heading__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading__title {
    font-size: 22px;
  }
}
.c-heading__title .orange {
  color: #FB7102;
}
.c-heading__lead {
  font-size: 20px;
  font-size: 2rem;
  margin-top: 20px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .c-heading__lead {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.c-heading--white {
  color: #fff;
}

/*============================
  modal
============================*/
.c-modal {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  /* 閉じるボタン */
}
.c-modal__content {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .c-modal__content {
    width: 90%;
  }
}
.c-modal__close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  width: 50px;
  height: 50px;
  background-color: transparent;
  cursor: pointer;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .c-modal__close-button {
    top: 0;
    right: 0;
  }
}
.c-modal__close-button::before, .c-modal__close-button::after {
  content: "";
  width: 20px;
  height: 4px;
  background-color: #000;
  position: absolute;
  top: 20px;
  right: 13px;
}
.c-modal__close-button::before {
  transform: rotate(-45deg);
}
.c-modal__close-button::after {
  transform: rotate(45deg);
}
.c-modal__bg {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}

.c-modal.open {
  display: block;
  -webkit-animation: modal 0.5s linear 0s;
          animation: modal 0.5s linear 0s;
}

/* モーダルアニメーション */
@-webkit-keyframes modal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*============================
  l-wrapper
============================*/
/* 背景スクロール固定用 */
.l-wrapper.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*============================
  l-inner
============================*/
.l-inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/*============================
  セクション
============================*/
.l-section {
  padding-top: 100px;
  padding-bottom: 100px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/*============================
  ヘッダー
============================*/
.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 30px 40px;
  /* tb style */
  /* ロゴ */
  /* メニュー */
  /* お問い合わせボタン */
  /* ドロワーボタン（SP用） */
  /* ドロワーボタン（SP）開いてる時 */
}
@media screen and (max-width: 1200px) {
  .p-header {
    padding: 0;
  }
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.p-header__logo {
  width: 335.5px;
  z-index: 15;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-header__logo {
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 167.75px;
  }
}
.p-header__menu {
  width: calc(100% - 335.5px);
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-header__menu {
    height: 0;
    overflow: hidden;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
  }
}
.p-header__menu.open {
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-header__menu.open {
    height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__menu.open {
    height: 307px;
  }
}
.p-header__menu-inner {
  /* pc style */
  /* tb style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-header__menu-inner {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  .p-header__menu-inner {
    display: block;
    padding: 100px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__menu-inner {
    padding: 76px 20px 30px;
  }
}
.p-header__list {
  /* pc style */
  /* tb style */
}
@media screen and (min-width: 768px) {
  .p-header__list {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1200px) {
  .p-header__list {
    display: block;
  }
}
.p-header__list-item {
  text-align: center;
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-header__list-item {
    margin-bottom: 30px;
  }
}
.p-header__list-item:not(:first-child) {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-header__list-item:not(:first-child) {
    margin-left: 30px;
  }
}
.p-header__list-item a {
  font-size: 24px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-header__list-item a {
    font-size: 16px;
  }
}
.p-header__list-item a:hover {
  font-weight: 700;
  color: #FB7102;
  border-bottom: 2px solid #FB7102;
}
.p-header__button {
  text-align: center;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  /* tb style */
}
@media screen and (max-width: 1200px) {
  .p-header__button {
    justify-content: center;
  }
}
.p-header__drawer-button {
  background: linear-gradient(135deg, #F50093 25%, #FB7102 95.33%);
  border-radius: 0px 0px 0px 14px;
  border: none;
  padding: 0 14px 0 13px;
  z-index: 15;
  display: none;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-header__drawer-button {
    display: block;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawer-button {
    width: 46px;
    height: 46px;
  }
}
.p-header__drawer-button span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 50vh;
  position: relative;
  transition: 0.3s;
}
.p-header__drawer-button span:nth-child(1) {
  top: -4px;
}
.p-header__drawer-button span:nth-child(3) {
  top: 4px;
}
.p-header__drawer-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
}
.p-header__drawer-button.open span:nth-child(2) {
  opacity: 0;
}
.p-header__drawer-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}

/*============================
  メインビジュアル
============================*/
.p-mv {
  background-image: url("../images/circle_bg_06.png"), url("../images/circle_bg_03.png"), url("../images/circle_bg_05.png"), linear-gradient(to top, transparent 100px, #F6F6F6 100px);
  background-repeat: no-repeat;
  background-position: left -232px top -271px, right -220px bottom 5px, right -330px top 40px, left 0 top 0;
  background-size: 843px 843px, 479px 479px, 845px 845px, 100% 100%;
  height: calc(100vh + 100px);
  padding-top: 137px;
  padding-bottom: 100px;
  /* tb style */
  /* sp style */
  /* テキスト + 画像 */
  /* テキスト */
  /* 画像 */
  /* パソコンイラストのディスプレイ部分 */
}
@media screen and (max-width: 1200px) {
  .p-mv {
    background-position: left -450px top -271px, right -220px bottom 5px, right -450px top 40px, left 0 top 0;
    background-size: 843px 843px, 479px 479px, 845px 845px, 100% 100%;
    padding-top: 62.91px;
    min-height: 990px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    background-image: url("../images/circle_bg_06.png"), url("../images/circle_bg_03.png"), url("../images/circle_bg_05.png");
    background-position: left -157px top -107px, right -95px bottom 95px, right -140px top 25px;
    background-size: 411px 411px, 224px 224px, 313px 313px;
    background-color: #F6F6F6;
    height: 100vh;
    padding-top: 46px;
    padding-bottom: 0;
    min-height: 600px;
  }
}
.p-mv__inner {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  padding-left: 5.5555555556%;
  position: relative;
  display: flex;
  align-items: center;
  /* tab style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-mv__inner {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-bottom: 12px;
  }
}
.p-mv__content {
  width: 100%;
  position: relative;
  /* tb style */
}
@media screen and (max-width: 1200px) {
  .p-mv__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-mv__texts {
  /* pc style */
  /* tb style */
}
@media screen and (min-width: 768px) {
  .p-mv__texts {
    max-width: 54%;
    padding-top: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .p-mv__texts {
    max-width: 100%;
  }
}
.p-mv__text {
  font-size: 24px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-mv__text {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 14px;
    padding-left: 19px;
    padding-right: 4px;
  }
}
.p-mv__catchcopy {
  font-weight: 700;
  font-size: 40px;
  margin-top: 13px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-mv__catchcopy {
    font-size: 33px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__catchcopy {
    font-size: 22px;
    padding-left: 19px;
    padding-right: 4px;
    margin-top: 8px;
  }
}
.p-mv__catchcopy .orange {
  color: #FB7102;
}
.p-mv__button {
  margin-top: 60px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-mv__button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__button {
    text-align: center;
    margin-top: 30px;
  }
}
.p-mv__image {
  /* pc style */
  /* tb style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-mv__image {
    width: 47.3661764706%;
    position: absolute;
    bottom: -35px;
    right: 10.3%;
  }
}
@media screen and (max-width: 1200px) {
  .p-mv__image {
    width: 100%;
    max-width: 650px;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__image {
    max-width: 309px;
  }
}
.p-mv__image::after {
  content: "";
  width: 100.8%;
  height: 100.8%;
  background-image: url("../images/mv_image_02.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-mv__image::after {
    background-image: url("../images/mv_image_02_sp.png");
  }
}
.p-mv__image img {
  mix-blend-mode: difference;
}
.p-mv .c-button {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-mv .c-button {
    border-radius: 10px;
  }
}

/*============================
  こんなお悩みはありませんか？
============================*/
.p-problem {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  /* pc style */
  /* sp style */
  /* 矢印ボタン */
}
@media screen and (min-width: 768px) {
  .p-problem {
    margin-top: -100px;
  }
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-problem__list {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-problem__list {
    display: flex;
    justify-content: space-between;
  }
}
.p-problem__item {
  padding: 8px 20px;
  /* pc style */
  /* tb style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-problem__item {
    width: 33.3333333333%;
    max-width: 290px;
  }
}
@media screen and (max-width: 1200px) {
  .p-problem__item {
    padding: 8px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
  }
}
.p-problem__item:not(:first-child) {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-problem__item:not(:first-child) {
    margin-top: 30px;
  }
}
.p-problem__item:nth-child(2n) .p-problem__item-text {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-problem__item:nth-child(2n) .p-problem__item-text {
    order: 1;
    margin-left: 0;
    margin-right: 10px;
  }
}
.p-problem__item:nth-child(2n) .p-problem__item-image {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-problem__item:nth-child(2n) .p-problem__item-image {
    order: 2;
  }
}
.p-problem__item-image {
  position: relative;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.25));
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-problem__item-image {
    width: 41.7910447761%;
    max-width: 140px;
    filter: drop-shadow(2.25px 2.25px 2.8125px rgba(0, 0, 0, 0.25));
  }
}
.p-problem__item-image::after {
  content: "";
  width: 100%;
  height: 0px;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.p-problem__item-text {
  font-size: 20px;
  font-size: 2rem;
  /* pc style */
  /* tb style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-problem__item-text {
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .p-problem__item-text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__item-text {
    width: 55.223880597%;
    max-width: 185px;
    font-size: 15px;
    font-size: 1.5rem;
    margin-left: 10px;
  }
}
.p-problem__item-text .bold {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-problem__item-text .bold {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__item-text .bold {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-problem__button {
  display: block;
  width: 172px;
  height: 172px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 72px);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-problem__button {
    width: 120px;
    height: 120px;
    transform: translate(-50%, 55px);
  }
}
@media screen and (max-width: 767px) {
  .p-problem__button {
    width: 86px;
    height: 86px;
    transform: translate(-50%, 37px);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  }
}
.p-problem__button img {
  width: 108.96px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-problem__button img {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__button img {
    width: 54.48px;
  }
}

/*============================
  そのお悩み、オンラインガチャで解決します！
============================*/
.p-solution {
  background-image: url("../images/circle_bg_02.png"), url("../images/circle_bg_01.png"), url("../images/circle_bg_02.png");
  background-repeat: no-repeat;
  background-position: left -95px top 145px, right -125px top 580px, left -128px top 1050px;
  background-size: 492px 492px, 492px 492px, 492px 492px;
  background-color: #F6F6F6;
  padding-top: 100px;
  padding-bottom: 160px;
  /* sp style */
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution {
    background-position: left -60px top 165px, right -55px top 730px, left -65px top 1300px;
    background-size: 249px 249px, 249px 249px, 249px 249px;
  }
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-solution__item {
  background-color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-solution__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-solution__item {
    border-radius: 20px;
    padding: 30px;
  }
}
.p-solution__item:not(:first-child) {
  margin-top: 60px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution__item:not(:first-child) {
    margin-top: 40px;
  }
}
.p-solution__item:nth-child(2n+1) .p-solution__item-image {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-solution__item:nth-child(2n+1) .p-solution__item-image {
    order: 2;
  }
}
.p-solution__item:nth-child(2n+1) .p-solution__item-texts {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-solution__item:nth-child(2n+1) .p-solution__item-texts {
    order: 1;
  }
}
.p-solution__item-image {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-solution__item-image {
    width: 38.5714285714%;
  }
}
.p-solution__item-image img {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution__item-image img {
    margin-right: auto;
    margin-left: auto;
  }
}
.p-solution__item-texts {
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-solution__item-texts {
    width: 61.4285714286%;
    padding-left: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-solution__item-texts {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
}
.p-solution__item-number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #F50093;
  display: flex;
  align-items: center;
}
.p-solution__item-number .span01 {
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.18em;
  padding: 6px 0;
  border-bottom: 2px solid #F50093;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution__item-number .span01 {
    font-size: 14px;
    line-height: 16px;
    padding: 4px 0px 2px;
  }
}
.p-solution__item-number .span02 {
  font-size: 48px;
  line-height: 56px;
  margin-left: 4px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution__item-number .span02 {
    font-size: 32px;
    line-height: 38px;
  }
}
.p-solution__item-heading {
  font-weight: 700;
  font-size: 28px;
  margin-top: 10px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution__item-heading {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-solution__item-text {
  margin-top: 30px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-solution__item-text {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

/*============================
  豊富な機能～料金プラン
============================*/
.p-price-container {
  background-image: url("../images/circle_bg_04.png");
  background-repeat: no-repeat;
  background-position: right -225px top 555px;
  background-size: 845px 845px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price-container {
    background-position: right -115px top 865px;
    background-size: 399px 399px;
  }
}

/*============================
  豊富な機能
============================*/
.p-function__list {
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-function__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-function__list {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-function__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 80px;
  position: relative;
  /* pc style */
  /* tb style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-function__item {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 10px;
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .p-function__item {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-function__item {
    padding-left: 28px;
  }
}
.p-function__item:nth-child(n+3) {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-function__item:nth-child(n+3) {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
    margin-top: 30px;
  }
}
.p-function__item:not(:first-child) {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-function__item:not(:first-child) {
    margin-top: 20px;
  }
}
.p-function__item::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  background: url("../images/function_icon_check.svg") no-repeat center center/contain;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.25));
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-function__item::after {
    left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-function__item::after {
    width: 18px;
    height: 18px;
    left: 0;
  }
}
.p-function__item-texts {
  width: calc(100% - 137px);
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-function__item-texts {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 767px) {
  .p-function__item-texts {
    width: calc(100% - 102.75px);
  }
}
.p-function__item-text {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  color: #888888;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-function__item-text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-function__item-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-function__item-heading {
  font-weight: 700;
  font-size: 28px;
  margin-top: 8px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-function__item-heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-function__item-heading {
    font-size: 18px;
    margin-top: 4px;
  }
}
.p-function__item-heading--small {
  font-size: 26px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-function__item-heading--small {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-function__item-heading--small {
    font-size: 17px;
  }
}
.p-function__item-thumbnail {
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  width: 137px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-function__item-thumbnail {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-function__item-thumbnail {
    width: 102.75px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
  }
}

/*============================
  料金プラン
============================*/
.p-price {
  overflow: hidden;
  /* 初期費用無料マークの影 */
  /* 初期費用無料マーク */
  /* 注意事項 */
}
.p-price__plans {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-price__plans {
    display: flex;
    justify-content: space-between;
  }
}
.p-price__plan {
  width: 45.5357142857%;
  border-radius: 30px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__plan {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-price__plan {
    width: 100%;
    border-radius: 20px;
  }
}
.p-price__plan:not(:first-child) {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__plan:not(:first-child) {
    margin-top: 40px;
  }
}
.p-price__plan:first-child::after {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -52px;
  right: -22px;
  z-index: -1;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__plan:first-child::after {
    width: 100px;
    height: 100px;
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__plan:first-child::after {
    width: 80px;
    height: 80px;
    top: -37px;
    right: -10px;
  }
}
.p-price__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 54px;
  color: #fff;
  text-align: center;
  background-color: #F50093;
  padding: 30px 0;
  border-radius: 30px 30px 0 0;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__name {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__name {
    font-size: 24px;
    line-height: 33px;
    padding: 20px 0;
    border-radius: 20px 20px 0 0;
  }
}
.p-price__detail {
  padding: 30px 21px;
  border: 9px solid #F50093;
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background-color: #fff;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__detail {
    padding: 20px 9px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__detail {
    padding: 10px 16px;
    border: 4px solid #F50093;
    border-top: 0;
    border-radius: 0 0 20px 20px;
  }
}
.p-price__price {
  color: #F50093;
  padding-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__price {
    padding-bottom: 8px;
  }
}
.p-price__price-heading {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 23px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__price-heading {
    font-size: 10px;
    line-height: 12px;
  }
}
.p-price__price-text {
  font-weight: 700;
  line-height: 72px;
  height: 72px;
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-price__price-text {
    margin-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__price-text {
    line-height: 48px;
    height: 48px;
  }
}
.p-price__price-text .span01 {
  font-size: 72px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__price-text .span01 {
    font-size: 54px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__price-text .span01 {
    font-size: 36px;
  }
}
.p-price__price-text .span02 {
  font-size: 64px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__price-text .span02 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__price-text .span02 {
    font-size: 24px;
  }
}
.p-price__price-text .span03 {
  font-size: 32px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__price-text .span03 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__price-text .span03 {
    font-size: 20px;
  }
}
.p-price__price-text .span04 {
  font-size: 20px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__price-text .span04 {
    font-size: 14px;
  }
}
.p-price__price-text .span05 {
  font-size: 40px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__price-text .span05 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__price-text .span05 {
    font-size: 20px;
  }
}
.p-price__list {
  border-top: 2px solid #F50093;
  padding-top: 30px;
  min-height: 386px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__list {
    min-height: 290px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__list {
    padding-top: 10px;
    min-height: 206px;
  }
}
.p-price__item {
  font-weight: 700;
  font-size: 24px;
  color: #888888;
  position: relative;
  padding: 8px 8px 8px 57px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__item {
    font-size: 18px;
    padding: 8px 8px 8px 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__item {
    font-size: 14px;
    padding: 8px 8px 8px 39.75px;
  }
}
.p-price__item::after {
  content: "";
  width: 29px;
  height: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  background: url("../images/price_icon_check.svg") no-repeat center center/contain;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.25));
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__item::after {
    width: 25px;
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__item::after {
    width: 21.75px;
    height: 16.5px;
    filter: drop-shadow(3px 3px 1.5px rgba(0, 0, 0, 0.25));
  }
}
.p-price__item:not(:first-child) {
  margin-top: 10px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__item:not(:first-child) {
    margin-top: 5px;
  }
}
.p-price__point {
  width: 120px;
  height: 120px;
  background: linear-gradient(98.62deg, #FFA760 17.25%, #FB7102 95.84%);
  border-radius: 50%;
  transform: rotate(18.45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -52px;
  right: -22px;
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .p-price__point {
    width: 100px;
    height: 100px;
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__point {
    width: 80px;
    height: 80px;
    top: -37px;
    right: -10px;
  }
}
.p-price__point-text {
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding-top: 5px;
}
.p-price__point-text .span01 {
  font-size: 16px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__point-text .span01 {
    font-size: 10px;
  }
}
.p-price__point-text .span02 {
  display: inline-block;
  font-size: 24px;
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-price__point-text .span02 {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .p-price__point-text .span02 {
    display: block;
    font-size: 16px;
    margin-top: -3px;
  }
}
.p-price__note-list {
  border: 3px solid #F50093;
  border-radius: 30px;
  padding: 57px;
  margin-top: 60px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__note-list {
    margin-top: 40px;
    border-radius: 20px;
    padding: 20px 17px;
  }
}
.p-price__note-item {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5452;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-price__note-item {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-price__note-item:not(:first-child) {
  margin-top: 8px;
}

/*============================
  サービス概要資料
============================*/
.p-document {
  background-image: url("../images/document_bg.jpg");
  background-size: cover;
  background-position: center -500px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-document {
    background-position: center -300px;
  }
}
.p-document .c-heading {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-document .c-heading {
    margin-bottom: 40px;
  }
}
.p-document .c-heading__title {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-document .c-heading__title {
    font-size: 20px;
  }
}
.p-document__button {
  text-align: center;
}

/*============================
  お問い合わせ
============================*/
.p-contact {
  background-image: url("../images/circle_bg_06.png");
  background-repeat: no-repeat;
  background-position: left -226px top -224px;
  background-size: 843px 843px;
  /* sp style */
  /* アラート */
  /* フォーム */
  /* 送信ボタン */
}
@media screen and (max-width: 767px) {
  .p-contact {
    background-position: left -127px top -84.39px;
    background-size: 370px 370px;
  }
}
.p-contact__form-container {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border: 9px solid #FFA760;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
  padding: 51px 21px;
  border-radius: 30px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-contact__form-container {
    border: 4px solid #FFA760;
    padding: 26px 16px;
    border-radius: 20px;
  }
}
.p-contact__alert-box {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  background: #FFA760;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 30px 24px 30px 30px;
  margin-bottom: 30px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-contact__alert-box {
    font-size: 16px;
    padding: 20px 14px 20px 20px;
  }
}
.p-contact__alert-box.hidden {
  display: none;
}
.p-contact__alert-close {
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.p-contact__form-item {
  padding: 18px 30px;
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-contact__form-item {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__form-item {
    padding: 10px 0px;
  }
}
.p-contact__form-item:not(:last-child) {
  border-bottom: 2px solid #F6F6F6;
}
.p-contact__form-item--message {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-contact__form-item--message {
    align-items: flex-start;
  }
}
.p-contact__form-item--message .p-contact__item-name {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .p-contact__form-item--message .p-contact__item-name {
    padding-top: 10px;
  }
}
.p-contact__item-name {
  font-weight: 700;
  display: flex;
  align-items: center;
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-contact__item-name {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__item-name {
    font-size: 12px;
  }
}
.p-contact__required {
  display: inline-block;
  font-weight: 700;
  font-size: 10px;
  width: 37.5px;
  transform: scale(0.8);
  color: #fff;
  text-align: center;
  padding: 2px 0px;
  background-color: #F50093;
  border-radius: 3px;
  margin-left: 5px;
  margin-top: -1px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-contact__required {
    width: 50px;
    transform: scale(0.6);
    padding: 1px 0px;
    margin-left: 0;
  }
}
.p-contact__item-data {
  /* pc style */
  /* sp style */
}
@media screen and (min-width: 768px) {
  .p-contact__item-data {
    width: calc(100% - 18rem);
  }
}
@media screen and (max-width: 767px) {
  .p-contact__item-data {
    margin-top: 2px;
  }
}
.p-contact input[type=text], .p-contact input[type=number], .p-contact input[type=email], .p-contact input[type=url], .p-contact textarea {
  width: 100%;
  border: 1px solid #D4D4D8;
  border-radius: 4px;
  padding: 10px 12px 9px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
  /* sp style */
}
.p-contact input[type=text]::-moz-placeholder, .p-contact input[type=number]::-moz-placeholder, .p-contact input[type=email]::-moz-placeholder, .p-contact input[type=url]::-moz-placeholder, .p-contact textarea::-moz-placeholder {
  color: #D4D4D8;
  /* sp style */
}
.p-contact input[type=text]::placeholder, .p-contact input[type=number]::placeholder, .p-contact input[type=email]::placeholder, .p-contact input[type=url]::placeholder, .p-contact textarea::placeholder {
  color: #D4D4D8;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-contact input[type=text]::-moz-placeholder, .p-contact input[type=number]::-moz-placeholder, .p-contact input[type=email]::-moz-placeholder, .p-contact input[type=url]::-moz-placeholder, .p-contact textarea::-moz-placeholder {
    font-size: 12px;
  }
  .p-contact input[type=text]::placeholder, .p-contact input[type=number]::placeholder, .p-contact input[type=email]::placeholder, .p-contact input[type=url]::placeholder, .p-contact textarea::placeholder {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact input[type=text], .p-contact input[type=number], .p-contact input[type=email], .p-contact input[type=url], .p-contact textarea {
    padding: 4px 5px 4px 10px;
  }
}
.p-contact textarea {
  height: 216px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-contact textarea {
    height: 195px;
  }
}
.p-contact__submit {
  margin-top: 25px;
  text-align: center;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    margin-top: 15px;
  }
}
.p-contact__submit input {
  border: none;
  cursor: pointer;
}

/*============================
  フッター
============================*/
.p-footer {
  padding: 37px 0;
  text-align: center;
  background-color: #F6F6F6;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 30px 0px;
  }
}
.p-footer__logo {
  max-width: 337.5px;
  margin-right: auto;
  margin-left: auto; /* sp style */
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 168.65px;
  }
}
.p-footer__list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.p-footer__list-item:not(:first-child) {
  margin-left: 30px;
}
.p-footer__list-item a {
  font-size: 24px;
}
.p-footer__list-item a:hover {
  font-weight: 700;
  color: #FB7102;
  border-bottom: 2px solid #FB7102;
}
.p-footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2083333333;
  color: rgba(0, 0, 0, 0.56);
  margin-top: 30px;
  /* sp style */
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 12px;
    line-height: 1.25;
  }
}

/*============================
  hidden
============================*/
.u-pc {
  /* sp style */
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  /* pc style */
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

.u-tab-hidden {
  /* tb style */
  /* sp style */
}
@media screen and (max-width: 1200px) {
  .u-tab-hidden {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-tab-hidden {
    display: block;
  }
}

/* Global */
/* Foundation */
/* Component */
/* Layout */
/* Project */
/* Utility */
/*# sourceMappingURL=style.css.map */