@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
:root {
  /*メイン色*/
  --main-pink:#ff335c;
  --main-pink-light:#ff7bac;
  /*テキスト色*/
  --text-bk:#454545;
  --text-wh:#fff;
  --text-red:#F83336;
  --text-pink:#ff9691;
  --text-blue:#70a9ff;
  /*背景色*/
  --bg-bk:#454545;
  --bg-wh:#fff;
  --bg-light-gray:#f0f0ee;
  --bg-pink:#ffeef5;
  /*線色*/
  --br-gray:#ccc;
  --br-bk:#454545;
  /*テキストサイズ*/
  --fs-div:1rem;
  --fs-h2:calc(var(--fs-div) * 3);
  --fs-p:calc(var(--fs-div) * 0.875);
  /*角丸*/
  --box-rounded:20px;
  --box-rounded-full:1000px;
}
@media (min-width: 768px) {
  :root {
    --fs-p:calc(var(--fs-div) * 1);
  }
}

/* ============================================================ */
/* Reset CSS */
/* ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.layout {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.layout img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.layout h1, .layout h2, .layout h3, .layout h4, .layout h5 {
  line-height: 1;
}

.layout-inner {
  display: flex;
  height: 100dvh;
  flex-flow: column;
}

.fc-pink {
  color: var(--main-pink);
}

.sp-display {
  display: block;
}

.pc-display {
  display: none;
}

@media (min-width: 768px) {
  .sp-display {
    display: none;
  }

  .pc-display {
    display: block;
  }
}
/* ============================================================ */
/* メインページ（main） */
/* ============================================================ */
.layout main {
  font-size: var(--fs-div);
  background-color: var(--bg-wh);
  line-height: 1.6;
  padding-top: 60px;
  padding-bottom: 0;
  font-feature-settings: 'palt';
  letter-spacing: 1px;
  color: var(--text-bk);
  flex: 1;
}
.layout main section {
  background-color: var(--bg-wh);
  padding: 3rem 0;
}
.layout main.index section:nth-child(even) {
  background-color: var(--bg-pink);
}
.layout main.index section:nth-child(even) h2 .main-title {
  color: var(--text-bk);
}
.layout main.index section:nth-child(even) h2 .sub-title {
  color: var(--text-bk);
}
.layout main.index section:nth-child(even) h2 .sub-title:before {
  background-image: url(../images/icon-underline-bk.svg);
}
.layout main.index section:nth-child(even) .another-btn {
  border: 1px solid var(--text-bk);
}
.layout main.index section:nth-child(even) .another-btn span {
  color: var(--text-bk);
}
.layout main.index section:nth-child(even) .another-btn:before {
  background-color: var(--text-bk);
}
.layout main p {
  font-size: var(--fs-p);
}

/* ============================================================ */
/* セクション共通 */
/* ============================================================ */
section > div > div + * {
  margin-top: 3rem;
}

section .box-wrap div + div {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  section .row div + div {
    margin-top: 0;
  }

  section > div > div + * {
    margin-top: 4rem;
  }
}
/* ============================================================ */
/* 見出し（h2） */
/* ============================================================ */
h2 {
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
h2 .main-title {
  color: var(--text-pink);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
  font-weight: normal;
}
h2 .sub-title {
  color: var(--text-pink);
  font-size: var(--fs-div);
  position: relative;
}
h2 .sub-title::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -120%;
  translate: -50% 0%;
  background-image: url(../images/icon-underline.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100px;
  height: 12px;
}

@media (min-width: 768px) {
  h2 .main-title {
    font-size: calc(var(--fs-h2) * 1.25);
  }
}
/* ============================================================ */
/* フリーページ 見出し（.free-page h2） */
/* ============================================================ */
.free-title {
  padding: 3rem 0;
  background-color: var(--bg-pink);
}
.free-title .main-title {
  font-size: calc(var(--fs-h2) * .6);
  line-height: 1.1;
  color: var(--text-bk);
}
.free-title .main-title small {
  display: block;
  margin-bottom: .25rem;
}
.free-title .sub-title {
  color: var(--text-bk);
}
.free-title .sub-title:before {
  background-image: url(../images/icon-underline-bk.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 768px) {
  .free-title .main-title {
    font-size: calc(var(--fs-h2) * .75);
  }
}
.free-title-h3 {
  padding: 0 0 2rem;
  position: relative;
  text-align: center;
}
.free-title-h3 h3 {
  font-size: calc(var(--fs-h2) * .5);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  background-size: 100% 100%;
}

/* ============================================================ */
/* フリーページ （main.free-page） */
/* ============================================================ */
main.free-page section {
  padding: 1.5rem 0 3rem;
}

/* ============================================================ */
/* 共通カードボックス（.st-box） */
/* ============================================================ */
.st-box li {
  list-style: none;
  position: relative;
}
.st-box > * img {
  border-radius: var(--box-rounded);
  border: 1px solid var(--br-gray);
}
.st-box > * h3,
.st-box > * h4 {
  font-weight: bold;
  text-align: center;
}
.st-box > * h5 {
  font-size: var(--fs-div);
  text-align: center;
}
.st-box > * + * {
  margin-top: 0.5rem;
}

/*POINT etc..*/
.sub-mark {
  aspect-ratio: 1 / 1;
  background-color: var(--text-pink);
  background-image: linear-gradient(135deg, var(--main-pink) 35%, var(--main-pink-light) 100%);
  position: absolute;
  top: -1rem;
  left: -.5rem;
  border-radius: var(--box-rounded-full);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-wh);
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  font-size: var(--fs-p);
  width: 3.8em;
}
.sub-mark p {
  position: relative;
  top: 3px;
  display: flex;
  flex-flow: column;
  /* 数字を::afterで自動生成 */
}
.sub-mark p::after {
  content: counter(step);
}

@media (min-width: 768px) {
  .sub-mark {
    font-size: clamp(12px, 1.5625vw, 16px);
  }
}
/*STEP*/
.step-list {
  counter-reset: step;
}
.step-list li {
  list-style: none;
  counter-increment: step;
  position: relative;
  margin-bottom: 1.5rem;
}
.step-list li figure {
  position: relative;
}
.step-list li figure img {
  border-radius: var(--box-rounded);
  border: 1px solid var(--br-gray);
}
.step-list li figure div {
  aspect-ratio: 1 / 1;
  font-size: 1rem;
  background-color: var(--main-pink);
  background-image: linear-gradient(135deg, var(--main-pink) 35%, var(--main-pink-light) 100%);
  position: absolute;
  top: -1.5rem;
  left: -.5rem;
  border-radius: var(--box-rounded-full);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-wh);
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  width: 3.8em;
}
.step-list li figure div > p {
  position: relative;
  top: 3px;
  display: flex;
  flex-flow: column;
  margin-top: 0;
  margin-top: -.1rem;
  line-height: 1;
}
.step-list li figure div > p::after {
  content: counter(step);
}
.step-list li p {
  margin-top: 0.25rem;
  text-align: center;
}

/* ============================================================ */
/* ファーストページ ヘッダー（.index-top） */
/* ============================================================ */
main section.index-top {
  position: relative;
  padding: 0 0 3rem;
}
main section.index-top .top-inner {
  position: relative;
  /* ボタンエリア */
}
main section.index-top .top-inner .top-main {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  overflow: hidden;
  height: 110vw;
}
main section.index-top .top-inner .top-main .top-vj {
  height: 100%;
}
main section.index-top .top-inner .top-main .top-vj img {
  z-index: 11;
  height: 125%;
  width: auto;
  position: absolute;
  left: 50%;
  top: 45%;
  translate: -50% -50%;
}
main section.index-top .top-inner .main-text {
  padding: 0 1rem .5rem;
  position: absolute;
  left: 50%;
  bottom: 0%;
  translate: -50% 0%;
  z-index: 11;
  width: 100%;
  max-width: 1200px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.8) 100%);
}
main section.index-top .top-inner .main-text img {
  position: relative;
  z-index: 15;
  filter: drop-shadow(0px 0px 10px white);
}
main section.index-top .top-inner .main-text:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -11rem;
  translate: -50% 0%;
  z-index: 8;
  width: 120%;
  background-color: rgba(255, 255, 255, 0.8);
  filter: blur(30px);
  height: calc(100% + 10rem);
}
main section.index-top .top-inner .top-btn {
  width: 100%;
  margin: 0;
  background-color: var(--bg-wh);
}
main section.index-top .top-inner .top-btn p {
  margin: 0;
}
main section.index-top .top-inner .top-btn .st-logo {
  display: none;
}
main section.index-top .top-inner .top-btn .btn-group .btn-group-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-top: .5rem;
}
main section.index-top .top-inner .top-btn .btn-group .btn-group-div + * {
  margin-top: 1rem;
}
main section.index-top .top-inner .top-btn .btn-group .btn-group-div p {
  font-weight: bold;
  font-size: var(--fs-div);
  margin-bottom: 0.25rem;
}

/* タブレット（768px以上） */
@media (min-width: 768px) {
  main section.index-top .top-inner .top-main {
    height: 43vw;
    max-height: 528px;
    max-width: 1320px;
    margin: 0 auto;
  }
  main section.index-top .top-inner .top-main .top-vj img {
    width: auto;
    height: 150%;
    left: 76%;
    top: 67%;
    translate: -50% -50%;
  }
  main section.index-top .top-inner .top-main .main-text {
    padding: 0 0 0 4vw;
    left: 0%;
    top: 50%;
    bottom: unset;
    translate: 0% -50%;
    width: 65%;
    background-image: unset;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    display: flex;
  }
  main section.index-top .top-inner .top-main .main-text:before {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: unset;
    translate: -50% -50%;
    width: 105%;
  }
  main section.index-top .top-inner .top-btn {
    padding: 2rem 0;
    height: auto;
    width: 100%;
  }
  main section.index-top .top-inner .top-btn .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    gap: 2rem;
  }
  main section.index-top .top-inner .top-btn .btn-group .btn-group-div {
    width: 100%;
    max-width: 300px;
    margin-top: 0;
    padding-top: 0;
  }
  main section.index-top .top-inner .top-btn .btn-group .btn-group-div + * {
    margin: 0;
  }
  main section.index-top .top-inner .top-btn .btn-group .btn-group-div a {
    width: 100%;
  }
}
@media (min-width: 992px) {
  main section.index-top .top-inner .top-main {
    height: 40vw;
  }

  main section.index-top .top-inner .top-main .main-text {
    padding: 0 0 0 5vw;
    width: 60%;
  }
}
/* ============================================================ */
/* 実績（. record） */
/* ============================================================ */
.record {
  margin-top: 2rem;
}
.record ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
}
.record ul li {
  list-style: none;
  flex: 0 0 calc(100% / 3 - .5rem);
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 3;
}
.record ul li:before {
  content: '';
  position: absolute;
  left: 51.5%;
  top: 51.5%;
  translate: -50% -50%;
  border-radius: var(--box-rounded-full);
  border: 1.5px solid var(--text-blue);
  z-index: 8;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.record ul li:after {
  content: '';
  position: absolute;
  left: 48.5%;
  top: 48.5%;
  translate: -50% -50%;
  border-radius: var(--box-rounded-full);
  border: 1.5px solid var(--text-pink);
  z-index: 10;
  width: 100%;
  height: 100%;
}
.record ul li img {
  border-radius: var(--box-rounded-full);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .record {
    margin-top: 1rem;
  }
  .record ul li {
    flex: 0 0 calc(100% / 3 - 1.5rem);
    padding: .5rem;
  }
}
/* ============================================================ */
/* 宣伝サイト（.site-list） */
/* ============================================================ */
/* ============================================================ */
/* 特徴（.features） */
/* ============================================================ */
.features ul.features-list li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
}
.features ul.features-list li p {
  font-size: var(--fs-div);
}
.features ul.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0% -50%;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.features ul.features-list li + li {
  margin-top: 1rem;
}

/* ============================================================ */
/* ノウハウ（.knowhow） */
/* ============================================================ */
/* ============================================================ */
/* ユーザーの声（.feedback） */
/* ============================================================ */
.feedback .st-box li.images {
  text-align: center;
}
.feedback .st-box li.images img {
  width: 50%;
  border-radius: var(--box-rounded-full);
}
.feedback .st-box p + p {
  text-align: right;
}

/* ============================================================ */
/* Q&A（.faq-page） */
/* ============================================================ */
.faq {
  counter-reset: faq-counter;
}
.faq .faq-list {
  padding-top: 1rem;
}
.faq .faq-list dl {
  counter-increment: faq-counter;
}
.faq .faq-list dl + dl {
  margin-top: 2rem;
  border-top: 1px dashed var(--br-gray);
  padding-top: 2rem;
}
.faq .faq-list dl dt {
  padding-left: 3.5rem;
  font-weight: bold;
  position: relative;
}
.faq .faq-list dl dt::before {
  content: "Q" counter(faq-counter);
  border-radius: var(--box-rounded-full);
  width: 3rem;
  height: 3rem;
  background-color: var(--text-pink);
  color: var(--text-wh);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: calc(var(--fs-div) * 1.25);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0% -50%;
}
.faq .faq-list dl dd {
  margin-top: 1.5rem;
  padding-left: 3.5rem;
  position: relative;
}
.faq .faq-list dl dd::before {
  content: 'A.';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: calc(var(--fs-div) * 1.25);
  font-weight: bold;
  color: var(--main-pink);
  position: absolute;
  left: 2rem;
  top: -0.3rem;
}

/* ============================================================ */
/* 規約（.terms）/ プライバシー（.privacy) */
/* ============================================================ */
.terms, .privacy {
  font-size: var(--fs-p);
}
.terms li, .privacy li {
  margin-bottom: 10px;
}
.terms li:last-child, .privacy li:last-child {
  margin-bottom: 0;
}
.terms dt, .privacy dt {
  font-size: 1rem;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--br-gray);
}
.terms dd, .privacy dd {
  margin: 10px 10px 30px;
}
.terms ul,
.terms ol, .privacy ul,
.privacy ol {
  padding-left: 20px;
}
.terms .revision, .privacy .revision {
  text-align: right;
  font-weight: bold;
}
.terms p, .privacy p {
  margin-bottom: 1rem;
}
.terms a, .privacy a {
  display: inline-block;
}

/* ============================================================ */
/* 会社概要（.company） */
/* ============================================================ */
.company table {
  width: 100%;
}
.company table tr th, .company table tr td {
  padding: 1.5rem 1rem 1.5rem 0;
  border-bottom: 1px dashed var(--br-gray);
  text-align: left;
}
.company table tr th {
  min-width: 140px;
  width: 35%;
}
.company table tr:first-child th, .company table tr:first-child td {
  border-top: 1px dashed var(--br-gray);
}

/* ============================================================ */
/* インフォメーション（.menber-info） */
/* ============================================================ */
.news .news-box {
  border: 1px solid var(--br-gray);
  border-radius: var(--box-rounded);
  background-color: var(--bg-wh);
  max-height: 400px;
}
.news .news-box ul {
  overflow-y: auto;
  padding: 1.5rem 1rem 1rem 1rem;
  height: 100%;
}
.news .news-box li {
  list-style: none;
}
.news .news-box li + li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--br-gray);
}
.news .news-box li a {
  color: var(--text-bk);
  text-decoration: none;
}
.news .news-box li a:hover {
  text-decoration: none;
  opacity: .7;
}
.news .news-box li p.date {
  display: inline-block;
  font-weight: bold;
  font-size: calc(var(--fs-div) * 1.25);
}
.news .news-box li p.category {
  display: inline-block;
  padding: 0.25rem;
  line-height: 1;
  background-color: var(--main-pink);
  color: var(--text-wh);
  font-size: calc(var(--fs-div) * .75);
}

.free-page .news .news-box {
  max-height: unset;
  border: 0;
}
.free-page .news .news-box ul {
  padding: 0;
  overflow-y: unset;
}

.btnkoku-primary {
    color: white;
    background-color: #337ab7;
    border-color: #2e6da4;
}


.btnkoku {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


