html {
  color: #373737;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.6rem;
  }
}

header, main, section, aside, footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

em {
  font-style: normal;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.flowLink {
  position: relative;
  padding: 2px 0;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.relative {
  position: relative;
}

.anker_link {
  position: absolute;
  top: -8.5rem;
  right: 0;
  left: 0;
  height: 1px;
}
@media only screen and (max-width: 767px) {
  .anker_link {
    top: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@-webkit-keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  height: 8.5rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .header {
    position: absolute;
    height: 12rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  height: 8.5rem;
  width: 98%;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    justify-content: center;
    height: 12rem;
    width: 100%;
  }
}
.header__logo {
  width: 16rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 23rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 12rem;
    width: 100vw;
    background-color: #fff;
    transition: all ease-in-out 0.6s;
    transform: translateY(100%);
  }
  .header .gnav.active {
    transform: translateX(0);
  }
}
.header .gnav__list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item {
    width: 50%;
  }
}
.header .gnav__item .icon {
  width: 4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .icon {
    width: 6rem;
  }
}
.header .gnav__item .icon figcaption {
  text-align: center;
  color: #fff;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .icon figcaption {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
}
.header .gnav__item.tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34rem;
  gap: 1rem;
  height: 8.5rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item.tel a {
    height: 12rem;
    gap: 2rem;
    width: 100%;
  }
}
.header .gnav__item.tel a .icon figcaption {
  color: #CF220E;
}
.header .gnav__item.tel a .detail {
  color: #CF220E;
  line-height: 1.2;
}
.header .gnav__item.tel a .detail .nmb {
  display: block;
  font-weight: 600;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item.tel a .detail .nmb {
    font-size: 3.6rem;
  }
}
.header .gnav__item.tel a .detail .time {
  display: block;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item.tel a .detail .time {
    font-size: 2.2rem;
  }
}
.header .gnav__item.dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34rem;
  gap: 1.5rem;
  height: 8.5rem;
  background: rgb(27, 161, 231);
  background: linear-gradient(90deg, rgb(27, 161, 231) 0%, rgb(103, 181, 157) 100%);
  background-position: 60% 50%;
  background-size: 180% auto;
  transition: all ease-in-out 0.3s;
}
.header .gnav__item.dl a:hover {
  background-position: 100% 50%;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item.dl a {
    height: 12rem;
    gap: 2.5rem;
    width: 100%;
  }
}
.header .gnav__item.dl a .note {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
.header .gnav__item.dl a .note span {
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item.dl a .note {
    font-size: 2.8rem;
  }
}

.main {
  line-height: 1.6;
  margin-top: 8.5rem;
}
@media only screen and (max-width: 767px) {
  .main {
    margin-top: 12rem;
  }
}
.main > section {
  background-color: #fff;
}
.main > section:not(.trouble, .contact, .thanks) {
  padding-top: 30.5rem;
}
@media only screen and (max-width: 767px) {
  .main > section:not(.trouble, .contact, .thanks) {
    padding-top: 31.5rem;
  }
}
.main > section.gray {
  background-color: #F1F1F1;
}
.main > section.line03 + section {
  padding-top: 33rem;
}
@media only screen and (max-width: 767px) {
  .main > section.line03 + section {
    padding-top: 37rem;
  }
}
@media only screen and (max-width: 767px) {
  .main > section.sp-line03 + section {
    padding-top: 35rem;
  }
}

.wrapper {
  margin: auto;
  width: 90%;
  max-width: 1400px;
}
@media only screen and (max-width: 767px) {
  .wrapper {
    width: 86%;
  }
}
@media print, screen and (min-width: 768px) {
  .wrapper.small01 {
    width: 86%;
    max-width: 1200px;
  }
}
@media print, screen and (min-width: 768px) {
  .wrapper.small02 {
    width: 84%;
    max-width: 1100px;
  }
}

.titleType01 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 7rem;
  color: #000;
}
@media print, screen and (min-width: 768px) {
  .titleType01 {
    letter-spacing: 1px;
  }
}
.titleType01 em {
  font-size: 5rem;
}

.btnType01 {
  display: block;
  border: 2px solid #fff;
  font-size: 2.4rem;
  border-radius: 5rem;
  background: rgb(27, 161, 231);
  background: linear-gradient(90deg, rgb(27, 161, 231) 0%, rgb(103, 181, 157) 100%);
  background-position: 5% 50%;
  background-size: 200% auto;
  text-align: center;
  height: 10rem;
  line-height: 9.5rem;
  width: 57rem;
  max-width: 100%;
  color: #fff;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .btnType01 {
    letter-spacing: 1px;
  }
}
.btnType01:hover {
  background-position: 100% 50%;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .btnType01 {
    font-size: 3.2rem;
    border-radius: 10rem;
    height: 13rem;
    line-height: 12.5rem;
    width: 58rem;
  }
}
.btnType01.dl span::after {
  background-image: url("../img/icon-arrow-dl.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 3.6rem;
  width: 2.8rem;
  transform: rotate(0);
}
.btnType01.red {
  background: #CF220E;
  background: linear-gradient(90deg, #cf220e 0%, #eb603f 100%);
  background-position: 60% 50%;
  background-size: 180% auto;
  text-align: center;
}
.btnType01.red:hover {
  background-position: 100% 50%;
  opacity: 1;
}
.btnType01:hover span::after {
  bottom: -1rem;
}
.btnType01 span {
  position: relative;
  padding-right: 5rem;
}
@media only screen and (max-width: 767px) {
  .btnType01 span {
    padding-right: 6rem;
  }
}
.btnType01 span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/icon-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 2.6rem;
  width: 2.8rem;
  transform: rotate(90deg);
  transition: all ease-in-out 0.3s;
}

.dl-form__item {
  font-size: 1.7rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__item {
    font-size: 2.6rem;
  }
}
.dl-form__item:not(:first-child) {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__item:not(:first-child) {
    margin-top: 3.5rem;
  }
}
.dl-form__item input[type=text], .dl-form__item input[type=email], .dl-form__item input[type=tel] {
  display: block;
  width: 100%;
  line-height: 5.5rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .dl-form__item input[type=text], .dl-form__item input[type=email], .dl-form__item input[type=tel] {
    line-height: 9rem;
    padding: 0 3rem;
  }
}
.dl-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__privacy {
    margin-top: 3.5rem;
    gap: 2rem;
  }
}
.dl-form__privacy .checkbox {
  position: relative;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 4rem;
  width: 4rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__privacy .checkbox {
    height: 6rem;
    width: 6rem;
  }
}
.dl-form__privacy .checkbox:checked::after {
  opacity: 1;
}
.dl-form__privacy .checkbox::before, .dl-form__privacy .checkbox::after {
  content: "";
  display: block;
  position: absolute;
}
.dl-form__privacy .checkbox::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1.5px solid #333;
  left: 0;
  border-radius: 1rem;
  height: inherit;
  width: inherit;
}
.dl-form__privacy .checkbox::after {
  border-bottom: 3px solid #333;
  border-left: 3px solid #333;
  opacity: 0;
  height: 1.5rem;
  width: 2.5rem;
  transform: rotate(-45deg);
  top: 1rem;
  left: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__privacy .checkbox::after {
    height: 2rem;
    width: 3.5rem;
    transform: rotate(-45deg);
    top: 1.7rem;
    left: 1.3rem;
  }
}
.dl-form__privacy .note a {
  -webkit-text-decoration: underline #CF220E;
          text-decoration: underline #CF220E;
  color: #CF220E;
}
.dl-form__btn {
  position: relative;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__btn {
    margin-top: 3.5rem;
    width: 100%;
    line-height: 11rem;
  }
}
.dl-form__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5rem;
  bottom: 0;
  margin: auto;
  background-image: url("../img/icon-arrow-dl.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 3.6rem;
  width: 2.8rem;
  transform: rotate(0);
}
@media only screen and (max-width: 767px) {
  .dl-form__btn::after {
    right: 6rem;
  }
}
.dl-form__btn button {
  position: absolute;
  inset: 0;
  margin: auto;
  padding-right: 4rem;
  z-index: 2;
}
.dl-form__message {
  color: #CF220E;
  font-weight: bold;
  text-align: center;
  padding: 0.6rem 1.4rem;
  border: 2px solid #CF220E;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .dl-form__message {
    padding: 1rem 2rem;
    margin-top: 3rem;
  }
}

.ml1em {
  margin-left: -0.1em;
}

.text_cb span {
  letter-spacing: -0.1em;
  margin-left: -0.1em;
}
.text_cb span.big {
  margin-left: -0.2em;
  margin-right: 0.1em;
}

.text_qa {
  letter-spacing: 0.1em;
}

@-webkit-keyframes mv_scroll {
  0% {
    height: 0;
    bottom: 9rem;
  }
  70% {
    height: 7rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}

@keyframes mv_scroll {
  0% {
    height: 0;
    bottom: 9rem;
  }
  70% {
    height: 7rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
.mv {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .mv {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85rem;
  }
}
@media only screen and (max-width: 767px) {
  .mv {
    padding: 7rem 0;
  }
}
.mv__copy, .mv__scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  text-align: center;
  writing-mode: vertical-rl;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .mv__copy, .mv__scroll {
    display: none;
  }
}
.mv__copy {
  left: 3rem;
}
.mv__scroll {
  right: 3rem;
  letter-spacing: 1px;
}
.mv__scroll a {
  position: relative;
  display: inline-block;
  padding-bottom: 10rem;
}
.mv__scroll a::before, .mv__scroll a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 2px;
}
.mv__scroll a::before {
  height: 9rem;
  background-color: #373737;
  bottom: 0;
}
.mv__scroll a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 9rem;
  -webkit-animation: mv_scroll 1.6s ease-in-out 0s infinite normal forwards;
          animation: mv_scroll 1.6s ease-in-out 0s infinite normal forwards;
}
.mv.mv01 {
  background-color: #CF220E;
  color: #fff;
}
.mv.mv01 .mv__copy {
  color: #fff;
}
.mv.mv01 .mv__title {
  position: relative;
  padding: 0 5rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__title {
    padding: 0;
  }
}
.mv.mv01 .mv__title .bubble {
  position: absolute;
  top: -1.5rem;
  right: 9rem;
  width: 30rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__title .bubble {
    display: none;
  }
}
.mv.mv01 .mv__title .text {
  font-size: 7.6rem;
  line-height: 1.1;
  font-weight: bold;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .mv.mv01 .mv__title .text {
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__title .text {
    line-height: 1.3;
    font-size: 7.4rem;
  }
}
.mv.mv01 .mv__title .text small {
  font-size: 5.6rem;
}
.mv.mv01 .mv__title .text .big {
  font-size: 8.5rem;
}
.mv.mv01 .mv__title .text .big small {
  font-size: 6.8rem;
}
.mv.mv01 .mv__title .text .big strong {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 12.2rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__title .text .big strong {
    display: inline-block;
    margin-top: -1.6rem;
  }
}
.mv.mv01 .mv__note {
  font-size: 2.2rem;
  padding: 0 5rem;
  margin: 3rem 0 4rem;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__note {
    font-size: 2.6rem;
    margin: 2rem 0 5rem;
    padding: 0;
  }
}
.mv.mv01 .mv__content {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__content {
    display: block;
    margin: auto;
    width: 60rem;
  }
}
.mv.mv01 .mv__content .img {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__content .img {
    width: 100%;
  }
}
.mv.mv01 .mv__content .download {
  width: 38%;
  text-align: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__content .download {
    width: 100%;
    margin-top: 3.5rem;
  }
}
.mv.mv01 .mv__content .download .text {
  position: relative;
  font-weight: bold;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  padding-top: 2.5rem;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__content .download .text {
    font-size: 2.6rem;
    padding: 0 0 0 4rem;
  }
}
.mv.mv01 .mv__content .download .text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url("../img/icon-book.svg");
  background-size: cover;
  width: 1.6rem;
  height: 2.1rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__content .download .text::before {
    top: 0.7rem;
    right: auto;
    left: 14.5rem;
    width: 2rem;
    height: 2.7rem;
  }
}
.mv.mv01 .mv__content .download .btnType01 {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv01 .mv__content .download .btnType01 {
    margin-top: 3.5rem;
    width: 100%;
  }
}
.mv.mv02 {
  padding: 7rem 0;
  background: #FAE9E7;
  background: linear-gradient(90deg, #fae9e7 0%, #f8dedb 100%);
}
.mv.mv02 .wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .wrapper {
    display: block;
  }
}
.mv.mv02 .mv__info {
  width: 56%;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__info {
    width: 100%;
  }
}
.mv.mv02 .mv__info .titleType01 {
  text-align: left;
  font-size: 6.8rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: bold;
  padding-left: 6rem;
}
@media print, screen and (min-width: 768px) {
  .mv.mv02 .mv__info .titleType01 {
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__info .titleType01 {
    padding-left: 0;
    font-size: 7.6rem;
  }
}
.mv.mv02 .mv__info .titleType01 small {
  font-size: 5rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__info .titleType01 small {
    font-size: 5.6rem;
  }
}
.mv.mv02 .mv__info .titleType01 .red {
  color: #CF220E;
}
.mv.mv02 .mv__info .titleType01 .big01 {
  font-size: 8.6rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__info .titleType01 .big01 {
    font-size: 9.2rem;
  }
}
.mv.mv02 .mv__info .titleType01 .big01 small {
  font-size: 6.8rem;
}
.mv.mv02 .mv__info .titleType01 .big02 {
  font-size: 6.8rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__info .titleType01 .big02 {
    font-size: 7.6rem;
  }
}
.mv.mv02 .mv__info .titleType01 .big02 em {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 10.5rem;
  margin-top: -2rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__info .titleType01 .big02 em {
    font-size: 12.2rem;
  }
}
.mv.mv02 .mv__dl {
  margin-top: 4rem;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__dl {
    width: 100%;
    margin: 5rem auto 0;
  }
}
.mv.mv02 .mv__dl .title {
  color: #CF220E;
  font-size: 3.8rem;
  margin: 1rem 0 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__dl .title {
    font-size: 4.6rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.mv.mv02 .mv__dl .message {
  color: #CF220E;
  font-weight: bold;
  text-align: center;
  padding: 0.6rem 1.4rem;
  border: 2px solid #CF220E;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .mv__dl .message {
    padding: 1rem 2rem;
    margin-top: 3rem;
  }
}
.mv.mv02 .dl-form {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .mv.mv02 .dl-form {
    margin-top: 3rem;
  }
}

.induction {
  position: relative;
  margin: 15rem 0 -17.5rem;
  height: 35rem;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .induction {
    margin: 15rem 0 -18.5rem;
    height: 37rem;
  }
}
.induction.line03 {
  height: 40rem;
  margin-bottom: -20rem;
}
@media only screen and (max-width: 767px) {
  .induction.line03 {
    height: 50rem;
    margin-bottom: -25rem;
  }
}
@media only screen and (max-width: 767px) {
  .induction.sp-line03 {
    height: 44rem;
    margin-bottom: -22rem;
  }
}
.induction .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  text-align: center;
  background-color: #CF220E;
  height: 100%;
}
.induction .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url("../img/induction-triangle.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 10rem;
  width: 36rem;
}
.induction .wrapper > * {
  position: relative;
  z-index: 2;
}
.induction__title {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .induction__title {
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .induction__title {
    font-size: 3.4rem;
  }
}
.induction__title em {
  font-size: 4.4rem;
}
@media only screen and (max-width: 767px) {
  .induction__title em {
    font-size: 4rem;
  }
}
.induction .btnType01 {
  margin: 3rem auto 0;
}

.trouble {
  padding-top: 14rem;
}
.trouble .titleType01 {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .trouble .titleType01 {
    margin-bottom: 6rem;
  }
}
.trouble .induction {
  margin-top: 10rem;
}

.strength__list {
  counter-reset: number 0;
}
@media only screen and (max-width: 767px) {
  .strength__list {
    margin-left: -7vw;
    width: 100vw;
  }
}
.strength__item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50rem;
  padding-left: 15rem;
  height: 31rem;
}
@media only screen and (max-width: 767px) {
  .strength__item {
    border-radius: 0;
    height: auto;
    padding: 4rem 7% 19.5rem 15rem;
  }
}
.strength__item:not(:first-child) {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .strength__item:not(:first-child) {
    margin-top: 22rem;
  }
}
.strength__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4.5rem;
  margin: auto;
  width: 6.5rem;
  height: 3.5rem;
  border-left: 3px solid #CF220E;
  border-bottom: 3px solid #CF220E;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .strength__item::after {
    top: 6rem;
    bottom: auto;
    border-left: 2px solid #CF220E;
    border-bottom: 2px solid #CF220E;
  }
}
.strength__info {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .strength__info {
    width: 100%;
  }
}
.strength__info .title {
  color: #000;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .strength__info .title {
    letter-spacing: 1px;
  }
}
.strength__info .title small {
  font-size: 2.8rem;
}
.strength__info .title em {
  font-size: 3.6rem;
}
.strength__info .note {
  line-height: 2;
  margin-top: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.strength__img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  right: -14vw;
  width: 50vw;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .strength__img {
    top: auto;
    right: auto;
    bottom: -15.5rem;
    left: 15rem;
    height: 31rem;
    width: 100%;
  }
}
.strength__img::before {
  counter-increment: number 1;
  content: counter(number) "";
  position: absolute;
  top: 2rem;
  left: -4rem;
  font-size: 3rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  background: #CF220E;
  background: linear-gradient(90deg, #cf220e 0%, #eb603f 100%);
  text-align: center;
  border-radius: 50%;
  line-height: 10rem;
  width: 10rem;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .strength__img::before {
    font-size: 4rem;
    width: 10.7rem;
  }
}
.strength__img .img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
  border: 2px solid #CF220E;
  height: 100%;
  width: 100%;
}
.strength__img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .strength .induction {
    margin-top: 30rem;
  }
}

.step__list {
  display: flex;
  justify-content: space-between;
  margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .step__list {
    flex-wrap: wrap;
    gap: 8rem 0;
  }
}
.step__item {
  position: relative;
  width: 22.5%;
  background-color: #EBEBEB;
  border: 2px solid #EBEBEB;
  border-radius: 3rem;
  padding: 5rem 0 2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .step__item {
    width: 46%;
  }
}
.step__item.active {
  background-color: #FAE9E7;
  border: 2px solid #CF220E;
}
.step__item.active .title {
  color: #CF220E;
}
.step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3.4rem;
  bottom: 0;
  margin: auto;
  background-image: url("../img/icon-arrow-black.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 2.7rem;
  height: 2.7rem;
}
@media only screen and (max-width: 767px) {
  .step__item:not(:last-child)::after {
    right: -4rem;
  }
}
@media only screen and (max-width: 767px) {
  .step__item:nth-child(2)::after {
    top: auto;
    right: auto;
    bottom: -6rem;
    left: -4rem;
    transform: rotate(135deg);
  }
}
.step__item .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  height: 11rem;
}
.step__item .note {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .step__item .note {
    font-size: 2.4rem;
    margin-top: 1.5em;
    margin-bottom: 4rem;
  }
}
.step__item .attention {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.step__item .attention span {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  padding: 0.2rem 1.5rem;
  border-radius: 1rem;
  background-color: #CF220E;
}
@media only screen and (max-width: 767px) {
  .step__item .attention span {
    font-size: 2.6rem;
  }
}
.step__item .attention + .note {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.step__nmb {
  position: absolute;
  top: -5rem;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 3rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  background: #CF220E;
  background: linear-gradient(90deg, #cf220e 0%, #eb603f 100%);
  text-align: center;
  border-radius: 50%;
  height: 10rem;
  width: 10rem;
  z-index: 2;
}
.step__nmb .icon {
  width: 5rem;
}
@media only screen and (max-width: 767px) {
  .step__nmb .icon {
    width: 6rem;
  }
}
.step__nmb .nmb {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .step__nmb .nmb {
    line-height: 1;
    margin: 0.5rem 0 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .price__table {
    padding-bottom: 1rem;
    overflow: scroll hidden;
  }
  .price__table table {
    width: 155%;
  }
}
.price__table th, .price__table td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #B2B2B2;
}
.price__table thead th {
  height: 7rem;
  width: 26.6666666667%;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  .price__table thead th {
    height: 8rem;
  }
}
.price__table thead th:first-child {
  width: 20%;
  background-color: #F1F1F1;
}
.price__table thead th:nth-child(2) {
  vertical-align: middle;
  height: 10rem;
  background-color: #fff;
  text-align: center;
  border: 0.8rem solid #CF220E;
  border-bottom: 1px solid #B2B2B2;
}
@media only screen and (max-width: 767px) {
  .price__table thead th:nth-child(2) {
    height: 12rem;
  }
}
.price__table thead th:nth-child(2) .logo {
  width: 65%;
  margin: auto;
}
.price__table thead th:nth-child(3) span {
  border-right: 1px solid #B2B2B2;
}
.price__table thead th span {
  display: block;
  background-color: #CBCBCB;
  border-top: 1px solid #B2B2B2;
  line-height: 7rem;
  width: 100%;
  font-size: 2rem;
  letter-spacing: 6px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .price__table thead th span {
    line-height: 8rem;
    font-size: 2.6rem;
  }
}
.price__table tbody th, .price__table tbody td {
  height: 10rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .price__table tbody th, .price__table tbody td {
    height: 12rem;
  }
}
.price__table tbody th {
  text-align: left;
  font-size: 1.8rem;
  padding-left: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .price__table tbody th {
    font-size: 2.6rem;
    padding-left: 1rem;
  }
}
.price__table tbody tr:last-child td:nth-child(2) {
  border-bottom: 0.8rem solid #CF220E;
}
.price__table tbody td {
  line-height: 1.3;
}
.price__table tbody td:nth-child(2) {
  border-right: 0.8rem solid #CF220E;
  border-left: 0.8rem solid #CF220E;
  background-color: #FAE9E7;
}
.price__table tbody td:nth-child(2) em {
  color: #CF220E;
  font-size: 4rem;
}
.price__table tbody td:nth-child(2) .nmb {
  font-size: 4.6rem;
}
.price__table tbody td:nth-child(3) {
  border-right: 1px solid #B2B2B2;
}
.price__table tbody td em {
  font-weight: bold;
  font-size: 3.2rem;
}
.price__table tbody td em.nmb {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  margin-right: 0.2rem;
}
.price__table tbody td small {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .price__table tbody td small {
    font-size: 2rem;
  }
}

.func {
  padding-bottom: 15rem;
}
.func__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 7rem;
}
.func__item {
  position: relative;
  border: 2px solid #F1F1F1;
  background-color: #FAFAFA;
  border-radius: 2rem;
  width: calc(25% - 2.25rem);
  padding-top: calc(25% - 2.25rem);
  height: 0;
}
@media only screen and (max-width: 767px) {
  .func__item {
    width: calc(33.3333333333% - 2rem);
    padding-top: calc(33.3333333333% - 2rem);
  }
}
.func__item .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  padding-bottom: 3rem;
  inset: 0;
}
@media only screen and (max-width: 767px) {
  .func__item .inner {
    padding-bottom: 1rem;
  }
}
.func__item .icon {
  width: 7.2rem;
}
.func__item .icon.ai {
  margin-bottom: 1.6rem;
  width: 8.6rem;
}
.func__item .icon.scenario {
  margin-bottom: 1rem;
}
.func__item .icon.cat {
  width: 6.8rem;
}
.func__item .icon.form {
  margin-bottom: -1rem;
  width: 8.6rem;
}
.func__item .icon.file {
  margin-bottom: -0.6rem;
  width: 4rem;
}
.func__item .icon.design {
  width: 6.2rem;
}
.func__item .icon.fb {
  margin-right: -3rem;
  width: 7.9rem;
}
.func__item .icon.admin {
  width: 6.4rem;
}
.func__item .icon.analytics {
  margin-bottom: 0.6rem;
  width: 8.3rem;
}
.func__item .icon.tool {
  margin-right: -3rem;
  width: 9.2rem;
}
.func__item .note {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.4;
  height: 7rem;
  margin-top: 2rem;
  white-space: nowrap;
}
.func .titleType01.last {
  margin-bottom: 0;
}

.contact {
  padding: 8rem 0;
  background: #FAE9E7;
  background: linear-gradient(90deg, #fae9e7 0%, #f8dedb 100%);
}
.contact .wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .contact .wrapper {
    display: block;
  }
}
.contact__info {
  width: 56%;
}
@media only screen and (max-width: 767px) {
  .contact__info {
    width: 100%;
  }
}
.contact__info .titleType01 {
  text-align: left;
  font-size: 4.8rem;
  line-height: 1.4;
  margin-bottom: 4rem;
  margin-top: -1.5rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .contact__info .titleType01 {
    margin-top: 0;
  }
}
.contact__info .titleType01 em {
  font-size: 6.6rem;
}
.contact__info .note {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .contact__info .note {
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
}
.contact__dl {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .contact__dl {
    margin: 7rem auto 0;
    width: 60rem;
  }
}
.contact__dl .title {
  color: #1BA1E7;
  font-size: 3.8rem;
  margin: 1rem 0 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .contact__dl .title {
    font-size: 4.6rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.contact .dl-form {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact .dl-form {
    margin-top: 3rem;
  }
}

.guide__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  gap: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .guide__wrapper {
    flex-wrap: wrap;
    width: 54rem;
    margin: auto;
  }
}
.guide__wrapper .btnType01 {
  width: 41rem;
}
@media only screen and (max-width: 767px) {
  .guide__wrapper .btnType01 {
    width: 100%;
  }
}
.guide__wrapper .btnType01:hover span::after {
  bottom: 0;
  right: -1rem;
}
.guide__wrapper .btnType01 span::after {
  transform: translate(0);
}
.guide__wrapper .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F1F1;
  border-radius: 5rem;
  width: 41rem;
  gap: 2rem;
  height: 10rem;
}
@media only screen and (max-width: 767px) {
  .guide__wrapper .tel {
    border-radius: 10rem;
    height: 13rem;
    gap: 2rem;
    width: 100%;
  }
}
.guide__wrapper .tel .icon {
  width: 5rem;
}
@media only screen and (max-width: 767px) {
  .guide__wrapper .tel .icon {
    width: 6.5rem;
  }
}
.guide__wrapper .tel .detail {
  color: #CF220E;
  line-height: 1.2;
}
.guide__wrapper .tel .detail .nmb {
  display: block;
  font-weight: 600;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .guide__wrapper .tel .detail .nmb {
    font-size: 4.2rem;
  }
}
.guide__wrapper .tel .detail .time {
  display: block;
}

.page-thanks .header .gnav {
  display: none;
}
.page-thanks .footer {
  margin-bottom: 0;
}
.page-thanks .thanks {
  position: relative;
  background: #FAE9E7;
  background: linear-gradient(90deg, #fae9e7 0%, #f8dedb 100%);
  padding: 7rem 0 8rem;
}
.page-thanks .thanks__copy, .page-thanks .thanks__scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  text-align: center;
  writing-mode: vertical-rl;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .page-thanks .thanks__copy, .page-thanks .thanks__scroll {
    display: none;
  }
}
.page-thanks .thanks__copy {
  left: 3rem;
}
.page-thanks .thanks__scroll {
  right: 3rem;
  letter-spacing: 1px;
}
.page-thanks .thanks__scroll a {
  position: relative;
  display: inline-block;
  padding-bottom: 10rem;
}
.page-thanks .thanks__scroll a::before, .page-thanks .thanks__scroll a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 2px;
}
.page-thanks .thanks__scroll a::before {
  height: 9rem;
  background-color: #373737;
  bottom: 0;
}
.page-thanks .thanks__scroll a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 9rem;
  -webkit-animation: mv_scroll 1.6s ease-in-out 0s infinite normal forwards;
          animation: mv_scroll 1.6s ease-in-out 0s infinite normal forwards;
}
.page-thanks .thanks__wrapper {
  text-align: center;
}
.page-thanks .thanks__wrapper .sub {
  position: relative;
  font-weight: bold;
  font-size: 2rem;
  padding-top: 2.5rem;
  letter-spacing: 2px;
  color: #CF220E;
}
@media only screen and (max-width: 767px) {
  .page-thanks .thanks__wrapper .sub {
    font-size: 2.6rem;
    padding-top: 3.3rem;
  }
}
.page-thanks .thanks__wrapper .sub::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url("../img/icon-book-red.svg");
  background-size: cover;
  width: 1.6rem;
  height: 2.1rem;
}
@media only screen and (max-width: 767px) {
  .page-thanks .thanks__wrapper .sub::before {
    width: 2rem;
    height: 2.7rem;
  }
}
.page-thanks .thanks__wrapper .title {
  font-weight: bold;
  font-size: 5rem;
  color: #CF220E;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .page-thanks .thanks__wrapper .title {
    line-height: 1.5;
    margin-top: 3rem;
  }
}
.page-thanks .thanks__wrapper .note {
  margin-top: 4rem;
  line-height: 2;
}
.page-thanks .thanks__wrapper .icon {
  width: 14rem;
  margin: 4rem auto 0;
}

.footer {
  padding: 3rem;
  background-color: #CF220E;
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-bottom: 12rem;
  }
}
.footer__top {
  margin: auto;
  width: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .footer__top {
    width: 7rem;
  }
}
.footer__copy {
  text-align: center;
  color: #fff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  margin-top: 2rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2.2rem;
  }
}