@charset "UTF-8";

body {
  font-family: "Lato", sans-serif;
}

/* font-weight */
body {
  color: #2F2E41;
}

.u-pc {
  display: none;
}

@media screen and (min-width: 1000px) {
  .u-pc {
    display: block;
  }
}

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 1000px) {
  html {
    font-size: 2.1361815754vw;
  }
}

@media (min-width: 749px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 1000px) {
  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: 1000px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::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 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 {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

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

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

/* フォームリセット */
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;
}

.c-bottomPageCta .cta__inner {
  border-radius: 0;
}

@media screen and (min-width: 1000px) {
  .c-bottomPageCta .cta__inner {
    padding: 3.875rem 0;
  }
}

.c-bottomPageCta .cta__lead {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

@media screen and (min-width: 1000px) {
  .c-bottomPageCta .cta__lead {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .c-bottomPageCta .cta__downloadButton {
    margin-top: 1.875rem;
    min-width: 24rem;
    font-size: 1rem;
  }
}

.c-bottomPageFooter .footer__inner {
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

@media screen and (min-width: 1000px) {
  .c-bottomPageFooter .footer__inner {
    margin-inline: auto;
    width: 100%;
    max-width: 80rem;
    padding: 2.5rem 5.625rem;
  }
}

.c-bottomPageFooter .footer__copy {
  padding-bottom: 0;
}

.c-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (min-width: 1000px) {
  .c-breadcrumb li {
    font-size: 1rem;
  }
}

.c-breadcrumb li:after {
  /* ▶を表示*/
  padding: 0 0.2em;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(/image/static/breadcrumb_aroow_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 6px;
  margin-bottom: 6px;
}

.c-breadcrumb li:last-child:after {
  content: none;
}

.c-breadcrumb li a {
  text-decoration: none;
  color: #888;
}

.c-breadcrumb li a:hover {
  text-decoration: underline;
}

.c-features__inner {
  margin-inline: auto;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  max-width: 390px;
  max-width: 24.375rem;
}

@media screen and (min-width: 1000px) {
  .c-features__inner {
    max-width: 65.625rem;
    padding: 2.5rem 1.5625rem 3.75rem;
  }
}

.c-features__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .c-features__title {
    font-size: 1.875rem;
  }
}

.c-features__items {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .c-features__items {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.c-features__item {
  background-color: #fff;
  border-radius: 0.25rem;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .c-features__item {
    border-radius: 1rem;
  }
}

@media screen and (max-width: 999px) {
  .c-features__item::after {
    position: absolute;
    top: 50%;
    right: 1.09375rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 9px;
    height: 17px;
    background-image: url(/image/static/arrow_primary.svg);
    background-size: contain;
    vertical-align: middle;
  }
}

@media screen and (max-width: 380px) {
  .c-features__item::after {
    right: 0.625rem;
  }
}

.c-features__itemInner {
  padding: 10px;
  padding: 0.625rem;
  max-width: 314px;
  max-width: 19.625rem;
}

@media screen and (min-width: 1000px) {
  .c-features__itemInner {
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
  }
}

.c-features__itemTitleWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-features__itemTitleWrapper span {
  background-color: #FB5E5E;
  display: block;
  width: 3px;
  height: 12px;
}

@media screen and (min-width: 1000px) {
  .c-features__itemTitleWrapper span {
    width: 4px;
    height: 25px;
  }
}

.c-features__itemTitle {
  padding-left: 8px;
  padding-left: 0.5rem;
  font-size: 12px;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .c-features__itemTitle {
    padding-left: 0.75rem;
    font-size: 1.125rem;
  }
}

.c-features__itemTextWrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .c-features__itemTextWrapper {
    margin-top: 1.5rem;
  }
}

.c-features__itemText {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .c-features__itemText {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.c-features__itemText+.c-features__itemText {
  padding-top: 0.5em;
}

@media screen and (min-width: 1000px) {
  .c-features__itemBottom {
    margin-top: auto;
    padding-top: 1.6875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-features__itemIcon--01.c-features__itemIcon {
  max-width: 48px;
  max-width: 3rem;
  aspect-ratio: 48/48;
}

.c-features__itemIcon--02.c-features__itemIcon {
  max-width: 52px;
  max-width: 3.25rem;
  aspect-ratio: 52/48;
}

.c-features__itemIcon--03.c-features__itemIcon {
  max-width: 60px;
  max-width: 3.75rem;
  aspect-ratio: 60/48;
}

.c-features__itemIcon--04.c-features__itemIcon {
  max-width: 48px;
  max-width: 3rem;
  aspect-ratio: 48/50;
}

.c-features__itemIcon--05.c-features__itemIcon {
  max-width: 52px;
  max-width: 3.25rem;
  aspect-ratio: 52/48;
}

.c-features__itemButton {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

.c-features__pageTopButtonWrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .c-features__pageTopButtonWrapper {
    margin-top: 3.75rem;
  }
}

.c-features__pageTopButton.c-secondaryButton {
  min-width: 200px;
  min-width: 12.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (min-width: 1000px) {
  .c-features__pageTopButton.c-secondaryButton {
    min-width: 21.25rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 999px) {
  .c-features__pageTopButton.c-secondaryButton {
    background-color: #fff;
  }
}

.c-features__breadcrumbs {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.ad-services {
  background-color: #F5F5F5;
}

.ad-services__inner {
  margin-inline: auto;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  max-width: 390px;
  max-width: 24.375rem;
}

@media screen and (min-width: 1000px) {
  .ad-services__inner {
    max-width: 65.625rem;
    padding: 4.0rem 1.5625rem 3.75rem;
  }
}

.ad-services__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .ad-services__title {
    font-size: 1.875rem;
  }
}

.ad-services__item-table {
  width: 100%;
  border-spacing: 0;
  font-size: 12px;
  font-weight: bold;
  border-radius: 10px;
}

@media screen and (min-width: 1000px) {
  .ad-services__item-table {
    font-size: 16px;
  }
}

.ad-services__item-table tbody {
  border-radius: 10px;
}

.ad-services__item-table th {
  width: 50%;
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
  text-align: left;
  padding-left: 110px;
}

.ad-services__item-table td {
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: top;
  text-align: left;
  padding-left: 50px;
}

@media all and (max-width: 999px) {

  .ad-services__item-table th,
  .ad-services__item-table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-left: 30px;
  }
}

.ad-services__item-section {
  max-width: 1024px;
  margin: 50px auto;
  padding: 60px 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
}

@media all and (max-width: 999px) {
  .ad-services__item-section {
    margin: 20px auto;
    padding: 20px 10px 0px 10px;
  }
}


.ad-services__itemList {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 1px 8px;
  background-color: #FB5E5E;
  border-radius: 50%;
}

.c-formSubmitBtn {
  display: inline-block;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  padding: 14px;
  padding: 0.875rem;
  min-width: 188px;
  min-width: 11.75rem;
  text-align: center;
  background-color: #FB5E5E;
}

.c-formSubmitBtn.disabled,
.c-formSubmitBtn:disabled {
  opacity: 0.2;
}

.c-secondaryButton {
  display: inline-block;
  border: 1px solid #FB5E5E;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FB5E5E;
  padding: 14px;
  padding: 0.875rem;
  min-width: 171px;
  min-width: 10.6875rem;
  text-align: center;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-secondaryButton:hover {
  color: #fff;
  background-color: #FB5E5E;
  opacity: 1;
}

.c-secondaryButton--bgWhite {
  background-color: #fff;
}

.c-sectionTitle {
  text-align: center;
}

.c-sectionTitle__textJP {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .c-sectionTitle__textJP {
    font-size: 2rem;
  }
}

.c-tertiaryButton {
  display: block;
  background-color: #1F214A;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  max-width: 84px;
  max-width: 5.25rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 0.25rem;
}

@media screen and (min-width: 1000px) {
  .c-tertiaryButton {
    font-size: 1rem;
  }
}

.contact {
  position: fixed;
  top: 74px;
  right: 1.875vw;
  width: 29.6875vw;
  background-color: #F1EFE8;
  border-radius: 0.5rem;
}

.contact__inner {
  width: 100%;
  padding: 16px;
  margin: 0 auto;
  position: relative;
}

.contact__required {
  position: absolute;
  top: 12px;
  right: 16px;
}

.contact__requiredText {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding-left: 8px;
  padding-left: 0.5rem;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact__item+.contact__item {
  margin-top: 16px;
  margin-top: 1rem;
}

.contact__itemLabel {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact__itemLabel.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.contact__itemLabel-Required {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background-color: #FB5E5E;
  border-radius: 50%;
}

.contact__itemInput {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  height: 40px;
  padding: 10.5px 8px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  background-color: #fff;
}

.contact__itemInput::-webkit-input-placeholder,
.contact__itemTextarea::-webkit-input-placeholder {
  color: #B7B7B7;
}

.contact__itemInput::-moz-placeholder,
.contact__itemTextarea::-moz-placeholder {
  color: #B7B7B7;
}

.contact__itemInput::-ms-input-placeholder,
.contact__itemTextarea::-ms-input-placeholder {
  color: #B7B7B7;
}

.contact__itemInput::placeholder,
.contact__itemTextarea::placeholder {
  color: #B7B7B7;
}

.contact__privacyCheck label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  vertical-align: text-top;
  cursor: pointer;
}

.contact__privacyCheck label a {
  text-decoration: underline;
}

.contact__privacyCheckLabelText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  vertical-align: text-top;
}

/* ラベルのスタイル　*/
.contact__privacyCheck label {
  /* ラベルの位置 */
  padding-left: 25px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

/* ボックスのスタイル */
.contact__privacyCheck label:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #fff;
}

/* 元のチェックボックスを表示しない */
.contact__privacyCheck input[type=checkbox] {
  display: none;
}

/* チェックした時のスタイル */
.contact__privacyCheck input[type=checkbox]:checked+label:before {
  /* チェックの文字 */
  content: "✓";
  /* チェックのサイズ */
  font-size: 16px;
  color: #2F2E41;
  padding-left: 3px;
  line-height: 1;
}

.contact__submitBtn {
  margin-top: 36px;
  margin-top: 2.25rem;
  text-align: center;
}

.error {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: red;
}

.error-hidden {
  display: none;
}

.cta__inner {
  background-color: #FB5E5E;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.grecaptcha-explanation {
  margin-left: 24px;
  font-size: 10px;
}

/* recaptchaマークの非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 1000px) {
  .cta__inner {
    border-radius: 0.5rem;
    padding: 2rem 0;
  }
}

.cta__lead {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .cta__lead {
    font-size: 24px;
  }
}

@media screen and (min-width: 1000px) {
  .cta__buttonBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
  }
}

.cta__downloadButton {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 17px;
  padding: 1.0625rem;
  max-width: 280px;
  max-width: 17.5rem;
  margin-inline: auto;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

@media screen and (min-width: 1000px) {
  .cta__downloadButton {
    min-width: 17rem;
    margin-inline: 0;
    padding: 1.09375rem;
    margin-top: 2.0625rem;
  }
}

@media screen and (min-width: 1000px) {
  .cta__downloadButton.c-tertiaryButton {
    font-size: 16px;
  }
}

.cta__downloadButton.u-pc {
  display: none;
}

@media screen and (min-width: 1000px) {
  .cta__downloadButton.u-pc {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .cta__downloadButton.u-sp {
    display: none;
  }
}

.cta__downloadButton:hover {
  background-color: rgba(31, 33, 74, .7);
  opacity: 1;
}

.cta__trialButton {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 16px;
  padding: 1rem;
  max-width: 280px;
  max-width: 17.5rem;
  background-color: #fff;
  color: #1F214A;
  border: 1px solid #1F214A;
  margin-inline: auto;
  position: relative;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

@media screen and (min-width: 1000px) {
  .cta__trialButton {
    min-width: 18.5625rem;
    margin-inline: 0;
    padding: 1.09375rem;
    margin-top: 2.0625rem;
  }
}

@media screen and (min-width: 1000px) {
  .cta__trialButton.c-tertiaryButton {
    font-size: 16px;
  }
}

.cta__trialButton::after {
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  right: -15px;
  right: -0.9375rem;
  content: "";
  display: inline-block;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  background-image: url(/image/static/free_icon.svg);
  background-size: contain;
  vertical-align: middle;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

@media screen and (min-width: 1000px) {
  .cta__trialButton::after {
    top: -1.5625rem;
    right: -1.5625rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.cta__trialButton:hover {
  background-color: #1F214A;
  color: #fff;
  opacity: 1;
}

.cta__trialButton:hover::after {
  background-image: url(/image/static/free_icon_hover.svg);
  opacity: 1;
}

.drawerMenu {
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 99;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-top: 13.33333vw;
}

/* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
nav.drawerMenu.active {
  visibility: visible;
  right: 0;
}

.drawerMenu__items {
  margin: 0 auto;
  width: 100%;
}

.drawerMenu__item,
.drawerMenu__subItem {
  list-style-type: none;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}

.drawerMenu__item:last-child {
  padding-bottom: 0;
}

.drawerMenu__subItem {
  position: relative;
}

.drawerMenu__item span,
.drawerMenu__subItem a {
  display: block;
  color: #2F2E41;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  position: relative;
}

.drawerMenu__subItem a {
  padding-left: 30px;
  padding-left: 1.875rem;
}

.drawerMenu__item span {
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}

.drawerMenu__item span::after {
  position: absolute;
  content: "";
  top: 38%;
  right: 20px;
  right: 1.25rem;
  border-top: 2px solid #D9D9D9;
  border-top: 0.125rem solid #D9D9D9;
  border-right: 2px solid #D9D9D9;
  border-right: 0.125rem solid #D9D9D9;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.drawerMenu__item span.open::after {
  top: 32%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.drawerMenu__subItems {
  display: none;
}

.drawerMenu__subItem::after {
  position: absolute;
  content: "";
  top: 38%;
  right: 20px;
  right: 1.25rem;
  border-top: 2px solid #D9D9D9;
  border-top: 0.125rem solid #D9D9D9;
  border-right: 2px solid #D9D9D9;
  border-right: 0.125rem solid #D9D9D9;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawerMenu__loginBlock {
  padding: 20px;
  padding: 1.25rem;
}

.drawerMenu__loginLead {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.drawerMenu__loginButton {
  margin-top: 12px;
  padding: 15px;
  padding: 0.9375rem;
  font-weight: 700;
  max-width: 164px;
  max-width: 10.25rem;
  margin-inline: auto;
}

.drawerMenu__ctaBlock {
  background-color: #FB5E5E;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.drawerMenu__ctaLead {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.drawerMenu__downloadButton {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 14px;
  padding: 0.875rem;
  max-width: 280px;
  max-width: 17.5rem;
  margin-inline: auto;
}

.drawerMenu__trialButton {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 14px;
  padding: 0.875rem;
  max-width: 280px;
  max-width: 17.5rem;
  background-color: #fff;
  color: #1F214A;
  border: 1px solid #1F214A;
  margin-inline: auto;
}

.footer {
  border-top: 1px solid #EDEBE1;
}

.footer__inner {
  width: 100%;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
  padding: 32px 16px 0;
  padding: 2rem 1rem 0;
}

@media screen and (min-width: 1000px) {
  .footer__inner {
    margin-inline: 0;
    width: 68.51563vw;
    max-width: 68.51563vw;
    padding: 3.125vw 5.46875vw 2.5vw;
  }
}

.footer__logo {
  max-width: 144px;
  max-width: 9rem;
  aspect-ratio: 144/32;
}

.footer__body {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
  gap: 2rem;
}

@media screen and (min-width: 1000px) {
  .footer__body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4.5rem;
    margin-top: 1.375rem;
  }
}

.footer__nav {
  max-width: 200px;
  max-width: 12.5rem;
}

.footer__navTitle {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.footer__navItems {
  margin-top: 16px;
  margin-top: 1rem;
}

.footer__navItem {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
}

.footer__navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.footer__navItem+.footer__navItem {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.footer__navItemIcon {
  max-width: 16px;
  max-width: 1rem;
  aspect-ratio: 1/1;
}

.footer__navItemIcon--Twwiter {
  max-width: 16px;
  max-width: 1rem;
  aspect-ratio: 16/13;
}

.footer__copy {
  text-align: right;
  padding: 24px 16px 16px;
  padding: 1.5rem 1rem 1rem;
}

@media screen and (min-width: 1000px) {
  .footer__copy {
    padding: 1.25rem 0;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1150px) {
  .footer__copy {
    padding: 1.25rem 3.125rem 1.25rem 0;
  }
}

.footer__copyText {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #343434;
  font-weight: 700;
}

.globalMenu {
  display: none;
}

@media screen and (min-width: 1000px) {
  .globalMenu {
    display: block;
    height: inherit;
  }
}

.globalMenu__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 22px;
  margin-left: 1.375rem;
}

.globalMenu__item {
  height: inherit;
  position: relative;
}

.globalMenu__item a {
  height: inherit;
  color: #2F2E41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.9375vw;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
}

.globalMenu__buttonBlock {
  display: none;
}

@media screen and (min-width: 1000px) {
  .globalMenu__buttonBlock {
    display: block;
    height: inherit;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}

@media screen and (min-width: 1000px) {
  .globalMenu__loginButton {
    min-width: 5.25rem;
    font-size: 0.8125rem;
    padding: 0.6875rem;
  }
}

.globalMenu__trialButtonImg {
  max-width: 144px;
  max-width: 9rem;
  aspect-ratio: 144/56;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 100;
  right: 12px;
  right: 0.75rem;
  top: 14px;
  top: 0.875rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  cursor: pointer;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  background: #D9D9D9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 6px;
  top: 0.375rem;
}

.hamburger span:nth-child(2) {
  top: 14px;
  top: 0.875rem;
}

.hamburger span:nth-child(3) {
  top: 22px;
  top: 1.375rem;
}

/* ナビ開いてる時のバツボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  top: 1rem;
  left: 0;
  background: #D9D9D9;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  top: 1rem;
  background: #D9D9D9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: #fff;
  height: 52px;
  height: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .header {
    height: 3.5rem;
  }
}

.header__inner {
  width: 100%;
  max-width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5.12821vw;
  padding-right: 5.12821vw;
}

@media screen and (min-width: 1000px) {
  .header__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .header__inner {
    max-width: 90rem;
    margin-inline: auto;
  }
}

.header__logoWrapper {
  position: relative;
  z-index: 100;
  top: 0;
}

.header__logo {
  max-width: 36.92308vw;
  aspect-ratio: 144/32;
}

@media screen and (min-width: 1000px) {
  .header__logo {
    max-width: 9rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .inner {
    max-width: 799px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.swiper {
  padding-bottom: 52px !important;
}

.swiper-pagination-bullet {
  background: #EDEBE1 !important;
  background: #EDEBE1 !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  width: 7px !important;
  height: 7px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FB5E5E !important;
}

.feature {
  /* ===============================================
# fv
=============================================== */
  /* ===============================================
# merit
=============================================== */
}

.feature .fv {
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .feature .fv {
    margin-top: 4.5rem;
  }
}

.feature .fv__titleBlock {
  background-color: #FB5E5E;
  padding: 26px 25px;
  padding: 1.625rem 1.5625rem;
}

@media screen and (min-width: 1000px) {
  .feature .fv__titleBlock {
    padding: 4.5rem 1.5625rem 3.75rem;
  }
}

.feature .fv__titleWrapper {
  display: grid;
  place-items: center;
}

.feature .fv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .feature .fv__title {
    font-size: 2rem;
  }
}

.feature .fv__body {
  padding: 22px 25px 16px;
  padding: 1.375rem 1.5625rem 1rem;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .feature .fv__body {
    padding: 4.5rem 1.5625rem 5.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .feature .fv__body {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.feature .fv__body:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 15px solid #fff;
}

@media screen and (min-width: 1000px) {
  .feature .fv__body:before {
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 30px solid #fff;
  }
}

.feature .fv__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .feature .fv__lead {
    font-size: 1.5rem;
  }
}

.feature .fv__imgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .feature .fv__imgWrapper {
    margin-top: 2.5rem;
  }
}

.feature .fv__img {
  margin-inline: auto;
  max-width: 340px;
  max-width: 21.25rem;
  aspect-ratio: 340/317;
}

@media screen and (min-width: 1000px) {
  .feature .fv__img {
    max-width: 56.25rem;
    aspect-ratio: 900/218;
  }
}

.feature .merit {
  background-color: #FAFAFA;
}

.feature .merit__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .feature .merit__inner {
    max-width: 65.625rem;
    padding: 5rem 1.5625rem;
  }
}

.feature .merit__titleWrapper {
  text-align: center;
}

.feature .merit__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .feature .merit__title {
    font-size: 2rem;
  }
}

.feature .merit__leadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .feature .merit__leadWrapper {
    margin-top: 1.5rem;
    padding: 0 3rem;
  }
}

.feature .merit__lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .feature .merit__lead {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.feature .merit__item {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid2";
}

@media screen and (min-width: 1000px) {
  .feature .merit__item {
    margin-top: 4rem;
    grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid3";
  }
}

.feature .merit__item1 {
  grid-area: grid1;
}

.feature .merit__itemTag {
  margin-top: 10.5px;
  margin-top: 0.65625rem;
  display: inline-block;
  background-color: #FB5E5E;
  color: #fff;
  padding: 4px;
  padding: 0.25rem;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  min-width: 67px;
  min-width: 4.1875rem;
  border-radius: 0.25rem;
}

@media screen and (min-width: 1000px) {
  .feature .merit__itemTag {
    margin-top: 1.21875rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: 6rem;
    border-radius: 0.5rem;
  }
}

.feature .merit__itemTitleWrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .feature .merit__itemTitleWrapper {
    margin-top: 1rem;
  }
}

.feature .merit__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  .feature .merit__itemTitle {
    font-size: 1.5rem;
  }
}

.feature .merit__item2 {
  grid-area: grid2;
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 1000px) {
  .feature .merit__item2 {
    margin-top: 1.5rem;
    margin-right: 4.0625rem;
  }
}

.feature .merit__itemText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .feature .merit__itemText {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.feature .merit__itemText span {
  color: #FB5E5E;
  font-weight: 700;
}

.feature .merit__item3 {
  grid-area: grid3;
  display: grid;
  place-items: center;
}

.feature .merit__itemImg {
  display: grid;
  place-items: center;
}

.feature .merit__item--01 .merit__itemImg {
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 118/109;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .feature .merit__item--01 .merit__itemImg {
    max-width: 15rem;
    aspect-ratio: 240/220;
    margin-right: 2.25rem;
  }
}

.feature .merit__item--02 .merit__itemImg {
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 276/163;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .feature .merit__item--02 .merit__itemImg {
    max-width: 17.25rem;
  }
}

.feature .merit__item--03 .merit__itemImg {
  max-width: 106px;
  max-width: 6.625rem;
  aspect-ratio: 1/1;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .feature .merit__item--03 .merit__itemImg {
    max-width: 19.625rem;
    aspect-ratio: 314/221;
  }
}

.feature .merit__item--04 .merit__itemImg {
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 242/246;
  margin-left: auto;
}

.feature .merit__item--05 .merit__itemImg {
  aspect-ratio: 242/246;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .feature .merit__item--04 .merit__itemImg {
    max-width: 15.125rem;
    margin-right: 2.625rem;
  }

  .feature .merit__item--05 .merit__itemImg {
    max-width: 15.125rem;
    margin-right: 2.625rem;
  }
}

.pc-01 {
  /* ===============================================
  # fv
  =============================================== */
  /* ===============================================
  # merit
  =============================================== */
}

.pc-01 .fv {
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv {
    margin-top: 4.5rem;
  }
}

.pc-01 .fv__titleBlock {
  background-color: #FB5E5E;
  padding: 26px 25px;
  padding: 1.625rem 1.5625rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__titleBlock {
    padding: 4.5rem 1.5625rem 3.75rem;
  }
}

.pc-01 .fv__titleWrapper {
  display: grid;
  place-items: center;
}

.pc-01 .fv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__title {
    font-size: 2rem;
  }
}

.pc-01 .fv__body {
  padding: 22px 25px 16px;
  padding: 1.375rem 1.5625rem 1rem;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__body {
    padding: 4.5rem 1.5625rem 5.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-01 .fv__body {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-01 .fv__body:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 15px solid #fff;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__body:before {
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 30px solid #fff;
  }
}

.pc-01 .fv__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__lead {
    font-size: 1.5rem;
  }
}

.pc-01 .fv__imgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__imgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-01 .fv__img {
  margin-inline: auto;
  max-width: 340px;
  max-width: 21.25rem;
  aspect-ratio: 340/317;
}

@media screen and (min-width: 1000px) {
  .pc-01 .fv__img {
    max-width: 56.25rem;
    aspect-ratio: 900/218;
  }
}

.pc-01 .merit {
  background-color: #FAFAFA;
}

.pc-01 .merit__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__inner {
    max-width: 65.625rem;
    padding: 5rem 1.5625rem;
  }
}

.pc-01 .merit__titleWrapper {
  text-align: center;
}

.pc-01 .merit__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__title {
    font-size: 2rem;
  }
}

.pc-01 .merit__leadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__leadWrapper {
    margin-top: 1.5rem;
    padding: 0 3rem;
  }
}

.pc-01 .merit__lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__lead {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.pc-01 .merit__item {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid2";
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__item {
    margin-top: 4rem;
    grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid3";
  }
}

.pc-01 .merit__item1 {
  grid-area: grid1;
}

.pc-01 .merit__itemTag {
  margin-top: 10.5px;
  margin-top: 0.65625rem;
  display: inline-block;
  background-color: #FB5E5E;
  color: #fff;
  padding: 4px;
  padding: 0.25rem;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  min-width: 67px;
  min-width: 4.1875rem;
  border-radius: 0.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__itemTag {
    margin-top: 1.21875rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: 6rem;
    border-radius: 0.5rem;
  }
}

.pc-01 .merit__itemTitleWrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__itemTitleWrapper {
    margin-top: 1rem;
  }
}

.pc-01 .merit__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__itemTitle {
    font-size: 1.5rem;
  }
}

.pc-01 .merit__item2 {
  grid-area: grid2;
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__item2 {
    margin-top: 1.5rem;
    margin-right: 4.0625rem;
  }
}

.pc-01 .merit__itemText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__itemText {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.pc-01 .merit__itemText span {
  color: #FB5E5E;
  font-weight: 700;
}

.pc-01 .merit__item3 {
  grid-area: grid3;
  display: grid;
  place-items: center;
}

.pc-01 .merit__itemImg {
  display: grid;
  place-items: center;
}

.pc-01 .merit__item--01 .merit__itemImg {
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 118/109;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__item--01 .merit__itemImg {
    max-width: 15rem;
    aspect-ratio: 240/220;
    margin-right: 2.25rem;
  }
}

.pc-01 .merit__item--02 .merit__itemImg {
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 276/163;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__item--02 .merit__itemImg {
    max-width: 17.25rem;
  }
}

.pc-01 .merit__item--03 .merit__itemImg {
  max-width: 106px;
  max-width: 6.625rem;
  aspect-ratio: 1/1;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__item--03 .merit__itemImg {
    max-width: 19.625rem;
    aspect-ratio: 314/221;
  }
}

.pc-01 .merit__item--04 .merit__itemImg {
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 242/246;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-01 .merit__item--04 .merit__itemImg {
    max-width: 15.125rem;
    margin-right: 2.625rem;
  }
}

.pc-02 {
  /* ===============================================
  # fv
  =============================================== */
  /* ===============================================
  # merit
  =============================================== */
}

.pc-02 .fv {
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv {
    margin-top: 4.5rem;
  }
}

.pc-02 .fv__titleBlock {
  background-color: #FB5E5E;
  padding: 26px 15px;
  padding: 1.625rem 0.9375rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__titleBlock {
    padding: 4.5rem 1.5625rem 3.75rem;
  }
}

.pc-02 .fv__titleWrapper {
  display: grid;
  place-items: center;
}

.pc-02 .fv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__title {
    font-size: 2rem;
  }
}

.pc-02 .fv__body {
  padding: 30px 25px 32px;
  padding: 1.875rem 1.5625rem 2rem;
  position: relative;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__body {
    padding: 4.5rem 1.5625rem 5.8125rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-02 .fv__body {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-02 .fv__body:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 15px solid #fff;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__body:before {
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 30px solid #fff;
  }
}

.pc-02 .fv__headItem {
  border: 1px solid #E8E8E9;
  border-radius: 0.5rem;
}

.pc-02 .fv__headItemInner {
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__headItemInner {
    padding: 2rem 3.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 2rem;
  }
}

.pc-02 .fv__headItemText {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__headItemText {
    font-size: 0.9375rem;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__headItemImgWrap {
    width: 71%;
  }
}

.pc-02 .fv__headItemImg {
  max-width: 236px;
  max-width: 14.75rem;
  aspect-ratio: 236/142;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__headItemImg {
    max-width: 21.25rem;
  }
}

.pc-02 .fv__leadWrapper {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__leadWrapper {
    margin-top: 7.0625rem;
  }
}

.pc-02 .fv__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__lead {
    font-size: 2rem;
  }
}

.pc-02 .fv__imgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__imgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-02 .fv__img {
  margin-inline: auto;
  max-width: 340px;
  max-width: 21.25rem;
  aspect-ratio: 340/554;
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__img {
    max-width: 56.5rem;
    aspect-ratio: 904/218;
  }
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__textWrapper {
    margin-top: 2.5rem;
    text-align: center;
  }
}

@media screen and (min-width: 1000px) {
  .pc-02 .fv__text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
  }
}

.pc-02 .merit {
  background-color: #FAFAFA;
}

.pc-02 .merit__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__inner {
    max-width: 65.625rem;
    padding: 5rem 1.5625rem;
  }
}

.pc-02 .merit__titleWrapper {
  text-align: center;
}

.pc-02 .merit__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__title {
    font-size: 2rem;
  }
}

.pc-02 .merit__leadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__leadWrapper {
    margin-top: 1.5rem;
    padding: 0 3rem;
  }
}

.pc-02 .merit__lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__lead {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.pc-02 .merit__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid2";
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__item {
    grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid3";
  }
}

.pc-02 .merit__item1 {
  grid-area: grid1;
}

.pc-02 .merit__itemTag {
  display: inline-block;
  background-color: #FB5E5E;
  color: #fff;
  padding: 4px;
  padding: 0.25rem;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  min-width: 67px;
  min-width: 4.1875rem;
  border-radius: 0.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__itemTag {
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: 6rem;
    border-radius: 0.5rem;
  }
}

.pc-02 .merit__itemTitleWrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__itemTitleWrapper {
    margin-top: 1rem;
  }
}

.pc-02 .merit__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__itemTitle {
    font-size: 1.5rem;
  }
}

.pc-02 .merit__item2 {
  grid-area: grid2;
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__item2 {
    margin-top: 1.5rem;
    margin-right: 4.0625rem;
  }
}

.pc-02 .merit__itemText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__itemText {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.pc-02 .merit__itemText span {
  color: #FB5E5E;
  font-weight: 700;
}

.pc-02 .merit__item3 {
  grid-area: grid3;
  display: grid;
  place-items: center;
}

.pc-02 .merit__itemImg {
  display: grid;
  place-items: center;
  max-width: 118px;
  max-width: 7.375rem;
  aspect-ratio: 118/109;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__itemImg {
    max-width: 18.75rem;
    aspect-ratio: 300/300;
  }
}

.pc-02 .merit__item+.merit__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 1000px) {
  .pc-02 .merit__item+.merit__item {
    margin-top: 5rem;
  }
}

.pc-03 {
  /* ===============================================
  # fv
  =============================================== */
  /* ===============================================
  # merit
  =============================================== */
}

.pc-03 .fv {
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv {
    margin-top: 4.5rem;
  }
}

.pc-03 .fv__titleBlock {
  background-color: #FB5E5E;
  padding: 26px 15px;
  padding: 1.625rem 0.9375rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__titleBlock {
    padding: 4.5rem 1.5625rem 3.75rem;
  }
}

.pc-03 .fv__titleWrapper {
  display: grid;
  place-items: center;
}

.pc-03 .fv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__title {
    font-size: 2rem;
  }
}

.pc-03 .fv__subtitle {
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__subtitle {
    font-size: 16px;
  }
}

.pc-03 .fv__body {
  background-color: #F5F5F5;
  position: relative;
}

.pc-03 .fv__body:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 15px solid #F5F5F5;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__body:before {
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 30px solid #F5F5F5;
  }
}

.pc-03 .fv__inner {
  padding: 30px 25px 32px;
  padding: 1.875rem 1.5625rem 2rem;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__inner {
    padding: 3.5rem 1.5625rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-03 .fv__inner {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-03 .fv__head {
  padding: 30px 25px 32px;
  padding: 1.875rem 1.5625rem 2rem;
  position: relative;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__head {
    padding: 4.5rem 1.5625rem 5.8125rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-03 .fv__head {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-03 .fv__headItem {
  border: 1px solid #E8E8E9;
  border-radius: 0.5rem;
}

.pc-03 .fv__headItemInner {
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__headItemInner {
    padding: 2rem 3.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 2rem;
  }
}

.pc-03 .fv__headItemText {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__headItemText {
    font-size: 0.9375rem;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__headItemImgWrap {
    width: 95%;
  }
}

.pc-03 .fv__headItemImg {
  max-width: 236px;
  max-width: 14.75rem;
  aspect-ratio: 236/142;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__headItemImg {
    max-width: 21.25rem;
  }
}

.pc-03 .fv__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__lead {
    font-size: 1.5rem;
  }
}

.pc-03 .fv__imgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__imgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-03 .fv__img {
  margin-inline: auto;
  max-width: 253px;
  max-width: 15.8125rem;
  aspect-ratio: 253/496;
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__img {
    max-width: 56.25rem;
    aspect-ratio: 900/185;
  }
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__textWrapper {
    margin-top: 2.5rem;
    text-align: center;
  }
}

@media screen and (min-width: 1000px) {
  .pc-03 .fv__text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
  }
}

.pc-03 .merit__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__inner {
    max-width: 65.625rem;
    padding: 5rem 1.5625rem 7.5rem;
  }
}

.pc-03 .merit__titleWrapper {
  text-align: center;
}

.pc-03 .merit__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__title {
    font-size: 2rem;
  }
}

.pc-03 .merit__leadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__leadWrapper {
    margin-top: 1.5rem;
    padding: 0 3rem;
  }
}

.pc-03 .merit__lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__lead {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.pc-03 .merit__leadImgWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__leadImgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-03 .merit__leadImg {
  max-width: 290px;
  max-width: 18.125rem;
  aspect-ratio: 670/245;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__leadImg {
    max-width: 41.875rem;
  }
}

.pc-03 .merit__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__items {
    margin-top: 5rem;
  }
}

.pc-03 .merit__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid2";
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__item {
    grid-template-areas: "grid1 grid1 grid3" "grid2 grid2 grid3";
  }
}

.pc-03 .merit__item1 {
  grid-area: grid1;
}

.pc-03 .merit__itemTag {
  display: inline-block;
  background-color: #FB5E5E;
  color: #fff;
  padding: 4px;
  padding: 0.25rem;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  min-width: 67px;
  min-width: 4.1875rem;
  border-radius: 0.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__itemTag {
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: 6rem;
    border-radius: 0.5rem;
  }
}

.pc-03 .merit__itemTitleWrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__itemTitleWrapper {
    margin-top: 1rem;
  }
}

.pc-03 .merit__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__itemTitle {
    font-size: 1.5rem;
  }
}

.pc-03 .merit__item2 {
  grid-area: grid2;
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__item2 {
    margin-top: 1.5rem;
    margin-right: 4.0625rem;
    width: 90%;
  }
}

.pc-03 .merit__itemText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__itemText {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.pc-03 .merit__itemText span {
  color: #FB5E5E;
  font-weight: 700;
}

.pc-03 .merit__item3 {
  grid-area: grid3;
  display: grid;
  place-items: center;
}

.pc-03 .merit__itemImg {
  display: grid;
  place-items: center;
}

.pc-03 .merit__item--01 .merit__itemImg {
  max-width: 57px;
  max-width: 3.5625rem;
  aspect-ratio: 94/150;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__item--01 .merit__itemImg {
    max-width: 5.875rem;
    margin-right: 2.25rem;
  }
}

.pc-03 .merit__item--02 .merit__itemImg {
  max-width: 110px;
  max-width: 6.875rem;
  aspect-ratio: 319/211;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__item--02 .merit__itemImg {
    max-width: 19.9375rem;
  }
}

.pc-03 .merit__item--03 .merit__itemImg {
  max-width: 109px;
  max-width: 6.8125rem;
  aspect-ratio: 319/156;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__item--03 .merit__itemImg {
    max-width: 19.9375rem;
  }
}

.pc-03 .merit__item+.merit__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 1000px) {
  .pc-03 .merit__item+.merit__item {
    margin-top: 5rem;
  }
}

.pc-04 {
  /* ===============================================
  # fv
  =============================================== */
  /* ===============================================
  # template
  =============================================== */
}

.pc-04 .fv {
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv {
    margin-top: 4.5rem;
  }
}

.pc-04 .fv__titleBlock {
  background-color: #FB5E5E;
  padding: 26px 15px;
  padding: 1.625rem 0.9375rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__titleBlock {
    padding: 4.5rem 1.5625rem 3.75rem;
  }
}

.pc-04 .fv__titleWrapper {
  display: grid;
  place-items: center;
}

.pc-04 .fv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__title {
    font-size: 2rem;
  }
}

.pc-04 .fv__body {
  background-color: #F5F5F5;
  position: relative;
}

.pc-04 .fv__body:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 15px solid #F5F5F5;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__body:before {
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 30px solid #F5F5F5;
  }
}

.pc-04 .fv__inner {
  padding: 30px 25px 32px;
  padding: 1.875rem 1.5625rem 2rem;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__inner {
    padding: 3.5rem 1.5625rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-04 .fv__inner {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-04 .fv__head {
  padding: 30px 25px 32px;
  padding: 1.875rem 1.5625rem 2rem;
  position: relative;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__head {
    padding: 4.5rem 1.5625rem 5.8125rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-04 .fv__head {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-04 .fv__headItem {
  border: 1px solid #E8E8E9;
  border-radius: 0.5rem;
}

.pc-04 .fv__headItemInner {
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__headItemInner {
    padding: 2rem 3.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 2rem;
  }
}

.pc-04 .fv__headItemText {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__headItemText {
    font-size: 0.9375rem;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__headItemImgWrap {
    width: 95%;
  }
}

.pc-04 .fv__headItemImg {
  max-width: 236px;
  max-width: 14.75rem;
  aspect-ratio: 236/142;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__headItemImg {
    max-width: 21.25rem;
  }
}

.pc-04 .fv__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__lead {
    font-size: 1.5rem;
  }
}

.pc-04 .fv__imgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__imgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-04 .fv__img {
  margin-inline: auto;
  max-width: 253px;
  max-width: 15.8125rem;
  aspect-ratio: 253/496;
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__img {
    max-width: 56.25rem;
    aspect-ratio: 900/185;
  }
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__textWrapper {
    margin-top: 2.5rem;
    text-align: center;
  }
}

@media screen and (min-width: 1000px) {
  .pc-04 .fv__text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
  }
}

.pc-04 .template__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__inner {
    max-width: 65.625rem;
    padding: 5rem 1.5625rem 7.5rem;
  }
}

.pc-04 .template__titleWrapper {
  text-align: center;
}

.pc-04 .template__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__title {
    font-size: 2rem;
  }
}

.pc-04 .template__leadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__leadWrapper {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.pc-04 .template__lead {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__lead {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.pc-04 .template__anchorLinkWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__anchorLinkWrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 2.5rem;
  }
}

.pc-04 .template__anchorLink {
  display: inline-block;
  background-color: #1F214A;
  color: #fff;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 0.5rem;
  max-width: 310px;
  max-width: 19.375rem;
  width: 100%;
  position: relative;
}

.pc-04 .template__anchorLink::after {
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url(/image/static/arrow_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.pc-04 .template__anchorLink--excel {
  max-width: 247px;
  max-width: 15.4375rem;
}

.pc-04 .template__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__body {
    margin-top: 3.4375rem;
  }
}

.pc-04 .template__anchorTagWrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__anchorTagWrapper {
    margin-top: 3.4375rem;
  }
}

.pc-04 .template__anchorTag {
  display: inline-block;
  background-color: #FB5E5E;
  color: #fff;
  padding: 8px;
  padding: 0.5rem;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 100vmax;
  max-width: 256px;
  max-width: 16rem;
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__anchorTag {
    font-size: 0.875rem;
    max-width: 18.125rem;
  }
}

.pc-04 .template__anchorTag--Excel {
  max-width: 153px;
  max-width: 9.5625rem;
  padding: 6px;
  padding: 0.375rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__anchorTag--Excel {
    max-width: 10.6875rem;
    padding: 0.5rem;
  }
}

.pc-04 .template__items {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__items {
    margin-top: 1.25rem;
  }
}

.pc-04 .template__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__itemTitle {
    font-size: 1.5rem;
  }
}

.pc-04 .template__itemImgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.pc-04 .template__itemImg {
  max-width: 350px;
  max-width: 21.875rem;
  aspect-ratio: 350/643;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__itemImg {
    max-width: 62.5rem;
    aspect-ratio: 1000/470;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--01 {
    max-width: 21.875rem;
    aspect-ratio: 350/643;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--02 {
    max-width: 21.875rem;
    aspect-ratio: 350/643;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--03 {
    max-width: 21.875rem;
    aspect-ratio: 350/698;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--04 {
    max-width: 21.875rem;
    aspect-ratio: 350/621;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--05 {
    max-width: 21.875rem;
    aspect-ratio: 350/717;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--06 {
    max-width: 21.875rem;
    aspect-ratio: 350/665;
  }
}

@media screen and (max-width: 999px) {
  .pc-04 .template__itemImg--07 {
    max-width: 21.875rem;
    aspect-ratio: 350/890;
  }
}

.pc-04 .template__item+.template__item {
  margin-top: 36px;
  margin-top: 2.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-04 .template__item+.template__item {
    margin-top: 5rem;
  }
}

.pc-05 {
  /* ===============================================
  # fv
  =============================================== */
  /* ===============================================
  # point
  =============================================== */
  /* ===============================================
  # support
  =============================================== */
}

.pc-05 .fv {
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv {
    margin-top: 4.5rem;
  }
}

.pc-05 .fv__titleBlock {
  background-color: #FB5E5E;
  padding: 26px 15px;
  padding: 1.625rem 0.9375rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__titleBlock {
    padding: 4.5rem 1.5625rem 3.75rem;
  }
}

.pc-05 .fv__titleWrapper {
  display: grid;
  place-items: center;
}

.pc-05 .fv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__title {
    font-size: 2rem;
  }
}

.pc-05 .fv__body {
  background-color: #F5F5F5;
  position: relative;
}

.pc-05 .fv__body:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 15px solid #F5F5F5;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__body:before {
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 30px solid #F5F5F5;
  }
}

.pc-05 .fv__inner {
  padding: 30px 25px 32px;
  padding: 1.875rem 1.5625rem 2rem;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__inner {
    padding: 3.5rem 1.5625rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-05 .fv__inner {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-05 .fv__leadWrapper {
  text-align: center;
}

.pc-05 .fv__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__lead {
    font-size: 1.5rem;
  }
}

.pc-05 .fv__imgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__imgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-05 .fv__img {
  max-width: 280px;
  max-width: 17.5rem;
  aspect-ratio: 280/505;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__img {
    max-width: 56.25rem;
    aspect-ratio: 900/210;
  }
}

.pc-05 .fv__main {
  padding: 30px 20px 32px;
  padding: 1.875rem 1.25rem 2rem;
  position: relative;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__main {
    padding: 4.5rem 1.5625rem 5.8125rem;
    max-width: 62.8125rem;
  }
}

@media screen and (max-width: 380px) {
  .pc-05 .fv__main {
    padding: 1.375rem 1.1875rem 1rem;
  }
}

.pc-05 .fv__headItem {
  border: 1px solid #E8E8E9;
  border-radius: 0.5rem;
  max-width: 340px;
  max-width: 21.25rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__headItem {
    max-width: 54.375rem;
  }
}

.pc-05 .fv__headItemInner {
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__headItemInner {
    padding: 2rem 3.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 2rem;
  }
}

.pc-05 .fv__headItemText {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__headItemText {
    font-size: 0.9375rem;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__headItemImgWrap {
    width: 95%;
  }
}

.pc-05 .fv__headItemImg {
  max-width: 171px;
  max-width: 10.6875rem;
  aspect-ratio: 171/154;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__headItemImg {
    max-width: 12.9375rem;
  }
}

.pc-05 .fv__summary {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__summary {
    margin-top: 5rem;
  }
}

.pc-05 .fv__summaryTitleWrapper {
  text-align: center;
}

.pc-05 .fv__summaryTitle {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__summaryTitle {
    font-size: 1.5rem;
  }
}

.pc-05 .fv__summaryLeadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__summaryLeadWrapper {
    margin-top: 1rem;
  }
}

.pc-05 .fv__summaryLead {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__summaryLead {
    font-size: 1rem;
  }
}

.pc-05 .fv__summaryLead span {
  color: #FB5E5E;
  font-weight: 700;
}

.pc-05 .fv__summaryImgWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__summaryImgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-05 .fv__summaryImg {
  margin-inline: auto;
  max-width: 306px;
  max-width: 19.125rem;
  aspect-ratio: 306/109;
}

@media screen and (min-width: 1000px) {
  .pc-05 .fv__summaryImg {
    max-width: 43.5625rem;
    aspect-ratio: 697/248;
  }
}

.pc-05 .point__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__inner {
    max-width: 65.625rem;
    padding: 5rem 1.5625rem 3.75rem;
  }
}

.pc-05 .point__titleWrapper {
  text-align: center;
}

.pc-05 .point__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__title {
    font-size: 2rem;
  }
}

.pc-05 .point__imgWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__imgWrapper {
    margin-top: 2.5rem;
  }
}

.pc-05 .point__img {
  max-width: 350px;
  max-width: 21.875rem;
  aspect-ratio: 350/156;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__img {
    max-width: 53rem;
    aspect-ratio: 848/184;
  }
}

.pc-05 .point__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__items {
    margin-top: 5rem;
  }
}

.pc-05 .point__itemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__itemInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__itemTextArea {
    width: 55%;
  }
}

.pc-05 .point__itemTag {
  display: inline-block;
  background-color: #FB5E5E;
  color: #fff;
  padding: 4px;
  padding: 0.25rem;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  min-width: 67px;
  min-width: 4.1875rem;
  border-radius: 100vmax;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__itemTag {
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: 6rem;
  }
}

.pc-05 .point__itemTitleWrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__itemTitleWrapper {
    margin-top: 1rem;
  }
}

.pc-05 .point__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__itemTitle {
    font-size: 1.5rem;
  }
}

.pc-05 .point__itemLine {
  margin-top: 16px;
  margin-top: 1rem;
  display: block;
  width: 64px;
  width: 4rem;
  height: 4px;
  height: 0.25rem;
  background-color: #EDEBE1;
}

.pc-05 .point__itemTextWrapper {
  margin-top: 16px;
  margin-top: 1rem;
}

.pc-05 .point__itemText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__itemText {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.pc-05 .point__itemText+.point__itemText {
  padding-top: 1em;
}

.pc-05 .point__itemText span {
  color: #FB5E5E;
  font-weight: 700;
}

.pc-05 .point__itemImg {
  margin-inline: auto;
}

.pc-05 .point__item--01 .point__itemImg {
  max-width: 282px;
  max-width: 17.625rem;
  aspect-ratio: 282/200;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__item--01 .point__itemImg {
    max-width: 26.625rem;
  }
}

.pc-05 .point__item--02 .point__itemImg {
  max-width: 286px;
  max-width: 17.875rem;
  aspect-ratio: 286/200;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__item--02 .point__itemImg {
    max-width: 26.5625rem;
  }
}

.pc-05 .point__item--03 .point__itemImg {
  max-width: 286px;
  max-width: 17.875rem;
  aspect-ratio: 286/200;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__item--03 .point__itemImg {
    max-width: 24.8125rem;
  }
}

.pc-05 .point__item+.point__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .point__item+.point__item {
    margin-top: 5rem;
  }
}

.pc-05 .support__inner {
  margin-inline: auto;
  max-width: 390px;
  max-width: 24.375rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__inner {
    max-width: 61.125rem;
    padding: 3.75rem 1.5625rem 7.5rem;
  }
}

.pc-05 .support__titleWrapper {
  text-align: center;
}

.pc-05 .support__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FB5E5E;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__title {
    font-size: 2rem;
  }
}

.pc-05 .support__leadWrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__leadWrapper {
    margin-top: 2.5625rem;
  }
}

.pc-05 .support__lead {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__lead {
    font-size: 1rem;
  }
}

.pc-05 .support__lead span {
  color: #FB5E5E;
  font-weight: 700;
}

.pc-05 .support__video {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.pc-05 .support__videoTitleWrapper,
.pc-05 .support__itemTitleWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

@media screen and (min-width: 1000px) {

  .pc-05 .support__videoTitleWrapper,
  .pc-05 .support__itemTitleWrapper {
    gap: 1rem;
  }
}

.pc-05 .support__videoTitleWrapper span,
.pc-05 .support__itemTitleWrapper span {
  display: block;
  width: 4px;
  width: 0.25rem;
  height: 22px;
  height: 1.375rem;
  background-color: #1F214A;
}

@media screen and (min-width: 1000px) {

  .pc-05 .support__videoTitleWrapper span,
  .pc-05 .support__itemTitleWrapper span {
    width: 0.5rem;
    height: 2rem;
  }
}

.pc-05 .support__videoTitle,
.pc-05 .support__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1F214A;
}

@media screen and (min-width: 1000px) {

  .pc-05 .support__videoTitle,
  .pc-05 .support__itemTitle {
    font-size: 1.5rem;
  }
}

.pc-05 .support__videoItems {
  margin-top: 18px;
  margin-top: 1.125rem;
  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;
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__videoItems {
    margin-top: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 2rem;
  }
}

.pc-05 .support__videoItemImg {
  max-width: 330px;
  max-width: 20.625rem;
  aspect-ratio: 448/253;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__videoItemImg {
    max-width: 28rem;
  }
}

.pc-05 .support__items {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__items {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 2rem;
  }
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__item {
    width: 50%;
  }
}

.pc-05 .support__itemImgWrapper {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.pc-05 .support__itemImg {
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__itemImg {
    max-width: 28rem;
    aspect-ratio: 448/206;
  }
}

@media screen and (max-width: 999px) {
  .pc-05 .support__itemImg--01 {
    max-width: 20.625rem;
    aspect-ratio: 330/115;
  }
}

@media screen and (max-width: 999px) {
  .pc-05 .support__itemImg--02 {
    max-width: 20.625rem;
    aspect-ratio: 330/143;
  }
}

.pc-05 .support__itemNote {
  margin-top: 18px;
  margin-top: 1.125rem;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__itemNote {
    margin-top: 1rem;
    text-align: left;
  }
}

.pc-05 .support__itemNoteText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .pc-05 .support__itemNoteText {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.topContainer {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .topContainer {
    width: 68.51563vw;
    padding: 4.6875vw 5vw;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1150px) {
  .topContainer {
    width: 61.51563vw;
  }
}

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

@media screen and (min-width: 1000px) {
  .topCta {
    margin-top: 3.75rem;
  }
}

.topLookerStudio {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .topLookerStudio {
    margin-top: 5.125rem;
  }
}

.topLookerStudio__title {
  max-width: 500px;
  margin-inline: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topLookerStudio__titleJP {
    position: relative;
    margin-top: 0.5rem;
    width: 500px;
  }
}

.topLookerStudio__imgWrapper {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (min-width: 1000px) {
  .topLookerStudio__imgWrapper {
    margin-top: 1.5rem;
    margin-inline: auto;
  }
}

.topLookerStudio__img {
  aspect-ratio: 2870/1636;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topLookerStudio__img {
    max-width: 46.4375rem;
    aspect-ratio: 2870/1636;
  }
}

@media screen and (max-width: 768px) {
  .topLookerStudio {
    display: none;
  }
}

.topLookerStudio__buttonWrapper{
  margin-top: 1.5rem;
  text-align: center;
}

.hs-cta-embed {
  display: inline-block;
}

.topDataConnect {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .topDataConnect {
    margin-top: 5.125rem;
  }
}

.topDataConnect__title {
  max-width: 342px;
  max-width: 21.375rem;
  margin-inline: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topDataConnect__title {
    max-width: 22.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .topDataConnect__titleJP {
    position: relative;
    margin-top: 0.5rem;
  }
}

.topDataConnect__imgWrapper {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (min-width: 1000px) {
  .topDataConnect__imgWrapper {
    margin-top: 1.5rem;
  }
}

.topDataConnect__img {
  max-width: 390px;
  max-width: 24.375rem;
  aspect-ratio: 390/621;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topDataConnect__img {
    max-width: 39.1875rem;
    aspect-ratio: 627/430;
  }
}

@media screen and (min-width: 1000px) {
  .topDataConnect__info {
    margin-top: 1.25rem;
    text-align: center;
  }
}

@media screen and (min-width: 1000px) {
  .topDataConnect__infoText {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.8;
  }
}

.topCompanyLogo {
  margin-top: 50px;
}

@media screen and (min-width: 1000px) {
  .topCompanyLogo {
    margin-top: 5.125rem;
  }
}

.topCompanyLogo__title {
  max-width: 342px;
  max-width: 21.375rem;
  margin-inline: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topCompanyLogo__title {
    max-width: 22.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .topCompanyLogo__titleJP {
    position: relative;
    margin-top: 0.5rem;
  }
}

.topCompanyLogo__imgWrapper {}

@media screen and (min-width: 1000px) {
  .topCompanyLogo__imgWrapper {
    margin-top: 1.5rem;
  }
}

.topCompanyLogo__img {
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topCompanyLogo__img {
    max-width: 39.1875rem;
  }
}

@media screen and (min-width: 1000px) {
  .topCompanyLogo__info {
    margin-top: 1.25rem;
    text-align: center;
  }
}

@media screen and (min-width: 1000px) {
  .topCompanyLogo__infoText {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.8;
  }
}

.topCompanyLogo__detailItemButtonWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .topCompanyLogo__detailItemButtonWrapper {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.topCompanyLogo__detailItemButton {
  margin-inline: auto;
}


.topDocument__inner {
  width: 100%;
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
  padding: 36px 20px;
  padding: 2.25rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topDocument__inner {
    margin-inline: 0;
    width: 68.51563vw;
    max-width: 68.51563vw;
    padding: 4.6875vw 5vw;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1150px) {
  .topDocument__inner {
    width: 61.51563vw;
  }
}

.topDocument__ebookBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .topDocument__ebookBody {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 3.5rem;
  }
}

@media screen and (min-width: 1000px) {
  .topDocument__ebookTextBlock {
    width: 52%;
  }
}

.topDocument__ebookTitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .topDocument__ebookTitle {
    font-size: 1.5rem;
    text-align: left;
  }
}

.topDocument__ebookTextWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.topDocument__ebookText {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (min-width: 1000px) {
  .topDocument__ebookImgWrapper {
    width: 50%;
  }
}

.topDocument__ebookImg {
  max-width: 271px;
  max-width: 16.9375rem;
  aspect-ratio: 271/172;
}

@media screen and (min-width: 1000px) {
  .topDocument__ebookImg {
    max-width: 20.9375rem;
    aspect-ratio: 335/258;
  }
}

.topDocument__ebookButtonWrapper,
.topDocument__magazineButtonWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 1000px) {

  .topDocument__ebookButtonWrapper,
  .topDocument__magazineButtonWrapper {
    margin-top: 2.5rem;
  }
}

.topDocument__magazine {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.topDocument__magazineTitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .topDocument__magazineTitle {
    font-size: 1.5rem;
    text-align: left;
  }
}

.topDocument__magazineTextWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.topDocument__magazineText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (min-width: 1000px) {
  .topDocument__magazineText {
    font-size: 0.875rem;
  }
}

.topDocument__magazineItems {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  gap: 1rem;
}

@media screen and (min-width: 1000px) {
  .topDocument__magazineItems {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.topDocument__magazineItem {
  max-width: 320px;
  max-width: 20rem;
  margin-inline: auto;
  width: 100%;
  padding: 16px 28px 18px;
  padding: 1rem 1.75rem 1.125rem;
  background-color: #fff;
  border-radius: 0.5rem;
}

@media screen and (min-width: 1000px) {
  .topDocument__magazineItem {
    max-width: 15rem;
    padding: 1rem;
    height: 15rem;
  }
}

.topDocument__magazineItemImg {
  max-width: 284px;
  max-width: 17.75rem;
  aspect-ratio: 208/112;
}

@media screen and (min-width: 1000px) {
  .topDocument__magazineItemImg {
    max-width: 13rem;
  }
}

.topDocument__magazineItemBody {
  margin-top: 16px;
  margin-top: 1rem;
}

.topDocument__magazineItemText {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topDocument__magazineItemText::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(/image/static/blank_link_icon.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 3px;
  margin-left: 0.1875rem;
}

.topFAQ__inner {
  max-width: 350px;
  max-width: 21.875rem;
  margin-inline: auto;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .topFAQ__inner {
    max-width: 100%;
    padding-bottom: 0;
  }
}

.topFAQ__titleJP {
  color: #2F2E41;
}

.topFAQ__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.topFAQ__accordionItem {
  /* margin-bottomにすると変な動きをするのでpaddingにする */
  padding-bottom: 6px;
}

.topFAQ__accordionItem+.topFAQ__accordionItem {
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (min-width: 1000px) {
  .topFAQ__accordionItem+.topFAQ__accordionItem {
    margin-top: 0.5rem;
  }
}

.topFAQ__accordionLabel {
  position: relative;
  cursor: pointer;
  background-color: #FAFAFA;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
}

.topFAQ__accordionLabelText,
.topFAQ__accordionContentText {
  max-width: 262px;
  max-width: 16.375rem;
}

@media screen and (min-width: 1000px) {

  .topFAQ__accordionLabelText,
  .topFAQ__accordionContentText {
    max-width: 94%;
  }
}

.topFAQ__accordionContent {
  display: none;
  background-color: #FAFAFA;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}

.topFAQ__accordionContent span {
  vertical-align: top;
}

.topFAQ__accordionContentText {
  display: inline-block;
  padding-left: 6px;
  padding-left: 0.375rem;
}

.topFAQ__accordionIconWrapper {
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

.topFAQ__accordionIcon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* プラスアイコン */
.topFAQ__accordionIcon:before,
.topFAQ__accordionIcon:after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #2F2E41;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.topFAQ__accordionIcon:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.topFAQ__accordionIcon.open:before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.topFv {
  margin-top: 79px;
  margin-top: 4.9375rem;
}

@media screen and (min-width: 1000px) {
  .topFv {
    margin-top: 3.75rem;
  }
}

.topFv__inner {
  max-width: 454px;
  max-width: 28.375rem;
  padding: 0 18px;
  padding: 0 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topFv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    padding: 0;
    gap: 3rem;
  }
}

.topFv__textBlock {
  display: contents;
}

@media screen and (min-width: 1000px) {
  .topFv__textBlock {
    display: block;
    width: 20.5625rem;
  }
}

.topFv__lead {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .topFv__lead {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (min-width: 1000px) {
  .topFv__lead {
    font-size: 1rem;
  }
}

.topFv__logoWrapper {
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (max-width: 999px) {
  .topFv__logoWrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 1000px) {
  .topFv__logoWrapper {
    margin-top: 1.5rem;
  }
}

.topFv__logo {
  max-width: 216px;
  max-width: 13.5rem;
  aspect-ratio: 216/48;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topFv__logo {
    max-width: 18.875rem;
    aspect-ratio: 302/67;
  }
}

.topFv__textWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (max-width: 999px) {
  .topFv__textWrapper {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.topFv__text {
  font-size: 16px;
  /* font-size: 0.8125rem; */
  font-weight: 400;
  letter-spacing: 0.07em;
  white-space: pre-wrap;
}

@media screen and (min-width: 1000px) {
  .topFv__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 999px) {
  .topFv__imgBlock {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.topFv__img {
  max-width: 317px;
  max-width: 19.8125rem;
  aspect-ratio: 371/288;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topFv__img {
    max-width: 23.1875rem;
  }
}

.topFv__bannerWrapper {
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 1000px) {
  .topFv__bannerWrapper {
    margin-top: 0.5625rem;
  }
}

.topFv__banner {
  max-width: 354px;
  max-width: 22.125rem;
  aspect-ratio: 354/80;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topFv__banner {
    max-width: 46.4375rem;
    aspect-ratio: auto;
  }
}

.topMerit {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .topMerit {
    margin-top: 5rem;
  }
}

.topMerit__inner {
  max-width: 390px;
  max-width: 24.375rem;
  margin-inline: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topMerit__inner {
    max-width: 100%;
  }
}

.topMerit__items {
  margin-top: 32px;
  margin-top: 2rem;
  background-color: #F9F9F9;
  max-width: 378px;
  max-width: 23.625rem;
  margin-inline: auto;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  border-radius: 0.5rem;
}

@media screen and (min-width: 1000px) {
  .topMerit__items {
    border-radius: 0;
    background-color: transparent;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -webkit-column-gap: 1.125rem;
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
    row-gap: 1rem;
  }
}

.topMerit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 24px 0;
  padding: 1.5rem 0;
}

@media screen and (min-width: 1000px) {
  .topMerit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #F9F9F9;
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
  }
}

.topMerit__item+.topMerit__item {
  border-top: 1px solid #fff;
}

@media screen and (min-width: 1000px) {
  .topMerit__item+.topMerit__item {
    border-top: none;
  }
}

.topMerit__itemIconWrapper {
  min-width: 64px;
  min-width: 4rem;
}

@media screen and (min-width: 1000px) {
  .topMerit__itemIconWrapper {
    min-width: auto;
  }
}

.topMerit__item--01 .topMerit__itemIcon {
  max-width: 48px;
  max-width: 3rem;
  aspect-ratio: 48/48;
}

.topMerit__item--02 .topMerit__itemIcon {
  max-width: 52px;
  max-width: 3.25rem;
  aspect-ratio: 52/48;
}

.topMerit__item--03 .topMerit__itemIcon {
  max-width: 60px;
  max-width: 3.75rem;
  aspect-ratio: 60/48;
}

.topMerit__item--04 .topMerit__itemIcon {
  max-width: 48px;
  max-width: 3rem;
  aspect-ratio: 48/50;
}

.topMerit__item--05 .topMerit__itemIcon {
  max-width: 52px;
  max-width: 3.25rem;
  aspect-ratio: 52/48;
}

@media screen and (min-width: 1000px) {
  .topMerit__itemTextBlock {
    margin-top: 0.5rem;
  }
}

.topMerit__itemTitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .topMerit__itemTitle {
    font-size: 1.125rem;
  }
}

.topMerit__itemText {
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-size: 12px;
  font-weight: 400;
}

@media screen and (min-width: 1000px) {
  .topMerit__itemText {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
  }
}

.topMerit__detailItems {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItems {
    margin-top: 3.75rem;
  }
}

.topMerit__detailItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItem {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3.125rem;
  }
}

.topMerit__detailItemTextBlock {
  display: contents;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItemTextBlock {
    display: block;
    min-width: 30vw;
  }
}

.topMerit__detailItemTitle {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (max-width: 999px) {
  .topMerit__detailItemTitle {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItemTitle {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 999px) {
  .topMerit__detailItemTextWrapper {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.topMerit__detailItemText {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItemText {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
  }
}

.topMerit__detailItemButtonWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .topMerit__detailItemButtonWrapper {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItemButtonWrapper {
    text-align: left;
  }
}

.topMerit__detailItemButton {
  margin-inline: auto;
}

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

@media screen and (max-width: 999px) {
  .topMerit__detailItemImgWrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItemImgWrapper {
    margin-top: 0;
    width: 100%;
  }
}

.topMerit__detailItem+.topMerit__detailItem {
  margin-top: 40px;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItem:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.topMerit__detailItemImg {
  margin-inline: auto;
}

.topMerit__detailItem--01 .topMerit__detailItemImg {
  max-width: 350px;
  max-width: 21.875rem;
  aspect-ratio: 350/176;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItem--01 .topMerit__detailItemImg {
    max-width: 18.75rem;
    aspect-ratio: 300/221;
  }
}

.topMerit__detailItem--02 .topMerit__detailItemImg {
  max-width: 237px;
  max-width: 14.8125rem;
  aspect-ratio: 297/217;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItem--02 .topMerit__detailItemImg {
    max-width: 18.5625rem;
  }
}

.topMerit__detailItem--03 .topMerit__detailItemImg {
  max-width: 296px;
  max-width: 18.5rem;
  aspect-ratio: 296/148;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItem--03 .topMerit__detailItemImg {
    max-width: 16.625rem;
    aspect-ratio: 266/173;
  }
}

.topMerit__detailItem--04 .topMerit__detailItemImg {
  max-width: 329px;
  max-width: 20.5625rem;
  aspect-ratio: 329/207;
}

.topMerit__detailItem--05 .topMerit__detailItemImg {
  max-width: 270px;
  max-width: 16.875rem;
  aspect-ratio: 264/101;
}

@media screen and (min-width: 1000px) {
  .topMerit__detailItem--05 .topMerit__detailItemImg {
    max-width: 16.5rem;
  }
}

.topPrice__inner {
  max-width: 350px;
  max-width: 21.875rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topPrice__inner {
    max-width: 100%;
  }
}

.topPrice__titleJP {
  color: #2F2E41;
}

.topPrice__imgBlock {
  margin-top: 32px;
  margin-top: 2rem;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topPrice__imgBlock {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1.25rem;
  }
}

.topPrice__img {
  max-width: 242px;
  max-width: 15.125rem;
  aspect-ratio: 242/126;
}

.topPrice__info {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

.topPrice__infoText {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

@media screen and (min-width: 1000px) {
  .topPrice__infoText {
    text-align: center;
  }
}

.topPrice__buttonWrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .topPrice__buttonWrapper {
    margin-top: 2.5rem;
  }
}

.topPrice__button.c-secondaryButton {
  color: #fff;
  background-color: #FB5E5E;
  margin-inline: auto;
  min-width: 250px;
  min-width: 15.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 1000px) {
  .topPrice__button.c-secondaryButton {
    min-width: 21.25rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1000px) {
  .topUserVoice {
    background-color: #FAFAFA;
  }
}

.topUserVoice__inner {
  width: 100%;
  padding: 36px 20px;
  padding: 2.25rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__inner {
    width: 68.51563vw;
    padding: 4.6875vw 5vw 4.29688vw;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1150px) {
  .topUserVoice__inner {
    width: 61.51563vw;
  }
}

@media screen and (min-width: 1000px) {
  .topUserVoice__titleEN {
    color: #fff;
  }
}

@media screen and (min-width: 1000px) {
  .topUserVoice__titleJP {
    color: #2F2E41;
  }
}

.topUserVoice__body.u-sp {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__body.u-sp {
    display: none;
  }
}

.topUserVoice__body.u-pc {
  display: none;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__body.u-pc {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.5625rem;
    -moz-column-gap: 2.5625rem;
    column-gap: 2.5625rem;
  }
}

@media screen and (min-width: 1000px) {
  .topUserVoice__items {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 1.875rem;
  }
}

.topUserVoice__item {
  background-color: #FAFAFA;
  border-radius: 1rem;
  max-width: 350px;
  max-width: 21.875rem;
  margin-inline: auto;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__item {
    background-color: #fff;
    border-radius: 1rem;
    max-width: 22rem;
  }
}

.topUserVoice__itemInner {
  padding: 32px 24px;
  padding: 2rem 1.5rem;
}

.topUserVoice__itemTitle {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__itemTitle {
    text-align: left;
    font-size: 1.125rem;
  }
}

.topUserVoice__itemMeta {
  margin-top: 16px;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  gap: 0.625rem;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__itemMeta {
    margin-top: 1.25rem;
  }
}

.topUserVoice__itemCategory {
  background-color: #F7F7F7;
  border-radius: 0.1875rem;
  padding: 3px;
  padding: 0.1875rem;
  min-width: 44px;
  min-width: 2.75rem;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.topUserVoice__itemTerm {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

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

.topUserVoice__itemText {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__itemText {
    font-size: 0.8125rem;
  }
}

.topUserVoice__itemText span {
  color: #FB5E5E;
  font-weight: 700;
}

.topUserVoice__itemNoteWrapper {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__itemNoteWrapper {
    margin-top: 1.875rem;
    padding-right: 1.8125rem;
    max-width: 20.1875rem;
  }
}

.topUserVoice__itemNote {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 1000px) {
  .topUserVoice__itemNote {
    font-size: 0.8125rem;
  }
}

.topUserVoice__itemNote a {
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */

.topNEWS {
  background-color: #FAFAFA;
}

.topNEWS__inner {
  width: 100%;
  padding: 36px 20px;
  padding: 2.25rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .topNEWS__inner {
    width: 68.51563vw;
    padding: 4.6875vw 5vw 4.29688vw;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1150px) {
  .topNEWS__inner {
    width: 61.51563vw;
  }
}

.topNEWS__titleJP {
  color: #2F2E41;
}

.topNEWS__body {
  margin-top: 40px;
  text-align: center;
}

.topNEWS__news {
  padding-bottom: 6px;
  display: inline-block;
}

.topNEWS__itemLabel {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  padding: 8px 16px;
  display: flex;
  gap: 6px;
}

.topNEWS__itemLabelText {
  max-width: 262px;
  max-width: 16.375rem;
}

@media screen and (min-width: 1000px) {
  .topNEWS__itemLabelText {
    max-width: 94%;
  }
}

@media screen and (min-width: 1000px) {
  .topNEWS__date {
    margin-right: 20px;
  }
}

.topNEWS__itemLink {
  color: #FB5E5E;
}

a.link-blank[target="_blank"]:after {
  font-family: "Material Icons";
  content: "\e895";
  margin-left: 3px;
  position: relative;
  bottom: -2px;
  text-decoration: none;
}

/* ------------------------------------------------
terms
------------------------------------------------ */

.terms {
  display: block;
  width: 1100px;
  margin: 40px auto;
}

.terms p {
  margin: 60px 0;
  line-height: 1.7;
  text-align: left;
}

.terms_contents {
  width: 1100px;
  font-size: 14px;
  margin-top: 20px;
}

.terms dl,
.privacy dl {
  display: block;
  padding: 0;
}

.terms dt,
.privacy dt {
  margin: 30px 0 10px;
  padding: 5px 0;
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 18px;
  border-bottom: 2px solid #FAFAFA;
}

.terms dd {
  margin: 5px 0 10px 2em;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  counter-increment: cnt;
}

.terms dd::before {
  content: counter(cnt) ". ";
  margin-left: -1em;
  width: 1em;
}

.terms ul {
  display: list-item;
  list-style: disc;
  margin: 10px 0 0 30px;
}

.terms ul:not(.browser-default)>li {
  list-style: disc;
}

.terms ol {
  margin-left: 10px;
}

.terms ol li {
  counter-reset: item 0;
  padding: 5px 0 0 20px;
  counter-increment: cnt01;
  list-style: none;
}

.terms ol li::before {
  content: "(" counter(cnt01) ") ";
  display: inline-block;
  margin-left: -1.5em;
  width: 1.5em;
}

.privacy dd {
  margin: 5px 0;
  padding: 0;
  font-size: 14px;
}

.privacy dd.list {
  margin: 5px 0 5px 30px;
  counter-increment: cnt;
}

.privacy dd.list::before {
  content: "(" counter(cnt) ") ";
  display: inline-block;
  margin-left: -1.5em;
  width: 1.5em;
}

p.sign {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: right;
}

.styleNone,
.styleNone::before {
  content: none !important;
  margin-left: 10px !important;
}

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

  .terms,
  .terms_contents {
    width: 90vw;
  }
}

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

  .terms,
  .terms_contents {
    width: 90vw;
    font-size: 12px;
  }

  .terms h3 {
    margin-top: 70px;
    font-size: 26px;
  }

  .terms p {
    margin-bottom: 30px;
  }

  .terms dt {
    font-size: 16px;
  }

  .terms dd {
    font-size: 12px;
    padding-right: 10px;
  }
}

/* ------------------------------------------------
404
------------------------------------------------ */

.error_image img {
  margin: 40px auto 0;
  max-width: 550px;
  width: 300%;
  display: block;
}

.error_message {
  padding: 30px;
  background: #f5f5f5;
  border: 6px solid #000;
  border-radius: 30px;
  position: relative;
  top: -10px;
  max-width: 1000px;
  text-align: center;
}

.error_message p {
  margin: 20px auto;
}

.error_message a {
  margin: 20px auto 40px;
  background: #545454;
  padding: 10px;
  display: block;
  width: 210px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

.error_wrap {
  margin: 0 auto;
  width: 1000px;
  padding: 100px 0;
}

@media screen and (max-width: 700px) {
  .error_wrap {
    width: 100%;
    padding: 60px 20px;
  }

  .error_image.wrap {
    padding-top: 100px;
  }

  .error_image img {
    width: 80%;
    margin-top: 10px;
  }

  .error_message {
    border-radius: 20px;
    padding: 10px;
    border: 3px solid #000;
    top: -3px;
  }

  .error_message p {
    margin: 20px 10px;
  }

  .error_message a {
    font-size: 12px;
  }
}

/* ------------------------------------------------
契約情報登録・更新
------------------------------------------------ */
.customer-subtitle {
  font-size: 25px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 30px;
}

.customer-explanation {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 13px;
}

.customer-datepicker {
  width: auto !important;
}

.customer-form-group {
  margin-bottom: 5px;
}

.customer-error {
  height: 15px;
  margin-bottom: 15px;
  color: #FF0000;
  font-size: 12px;
}

@media screen and (max-width: 780px) {
  .customer-error {
    margin-left: 0%;
  }
}

@media screen and (min-width: 1000px) {
  .customer-page__inner {
    margin: 0 350px;
    width: 990px;
    padding: 30px 50px;
  }
}

@media screen and (max-width: 999px) {
  .customer-page__inner {
    padding: 1.875rem 1.1875rem 2rem;
  }
}

.customer-page__inner>table>tbody>tr>th {
  width: 290px;
}

.customer-confirm-btn {
  padding: 1.3rem 5rem;
  font-weight: 700 !important;
  font-size: 1.6rem;
  background: #fff;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  border-radius: 5px;
  height: 55px;
  width: 255px;
}

.customer-btn-light {
  border: 1px solid #888 !important;
  margin-right: 30px;
  line-height: 43px !important;
}

/* outline */
.btn-outline {
  border: 2px solid #fb5e5e;
  z-index: 1;
  color: #fb5e5e;
}

.btn-outline:active {
  top: 2px;
}

/* secondary */
.btn-outline.btn-secondary {
  border: 2px solid #1F204B;
  color: #fff;
  background: #1F214A;
}

.btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}