@charset "UTF-8";
:root {
  --in-sine:cubic-bezier(0.47, 0, 0.745, 0.715);
  --in-sine-r:cubic-bezier(0.255, 0.285, 0.53, 1);
  --out-sine:cubic-bezier(0.39, 0.575, 0.565, 1);
  --out-sine-r:cubic-bezier(0.435, 0, 0.61, 0.425);
  --in-out-sine:cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --in-out-sine-r:cubic-bezier(0.45, 0.05, 0.555, 0.95);
  --in-quad:cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --in-quad-r:cubic-bezier(0.32, 0.47, 0.45, 0.915);
  --out-quad:cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --out-quad-r:cubic-bezier(0.55, 0.06, 0.75, 0.54);
  --in-out-quad:cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --in-out-quad-r:cubic-bezier(0.485, 0.045, 0.545, 0.97);
  --in-cubic:cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --in-cubic-r:cubic-bezier(0.325, 0.81, 0.45, 0.945);
  --out-cubic:cubic-bezier(0.215, 0.61, 0.355, 1);
  --out-cubic-r:cubic-bezier(0.645, 0, 0.785, 0.39);
  --in-out-cubic:cubic-bezier(0.645, 0.045, 0.355, 1);
  --in-out-cubic-r:cubic-bezier(0.645, 0, 0.355, 0.955);
  --in-quart:cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --in-quart-r:cubic-bezier(0.315, 0.78, 0.105, 0.97);
  --out-quart:cubic-bezier(0.165, 0.84, 0.44, 1);
  --out-quart-r:cubic-bezier(0.56, 0, 0.835, 0.16);
  --in-out-quart:cubic-bezier(0.77, 0, 0.175, 1);
  --in-out-quart-r:cubic-bezier(0.825, 0, 0.23, 1);
  --in-quint:cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --in-quint-r:cubic-bezier(0.145, 0.94, 0.245, 0.95);
  --out-quint:cubic-bezier(0.23, 1, 0.32, 1);
  --out-quint-r:cubic-bezier(0.68, 0, 0.77, 0);
  --in-out-quint:cubic-bezier(0.86, 0, 0.07, 1);
  --in-out-quint-r:cubic-bezier(0.93, 0, 0.14, 1);
  --in-expo:cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --in-expo-r:cubic-bezier(0.205, 0.965, 0.05, 0.95);
  --out-expo:cubic-bezier(0.19, 1, 0.22, 1);
  --out-expo-r:cubic-bezier(0.78, 0, 0.81, 0);
  --in-out-expo:cubic-bezier(1, 0, 0, 1);
  --in-out-expo-r:cubic-bezier(1, 0, 0, 1);
  --in-circ:cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --in-circ-r:cubic-bezier(0.02, 0.665, 0.4, 0.96);
  --out-circ:cubic-bezier(0.075, 0.82, 0.165, 1);
  --out-circ-r:cubic-bezier(0.835, 0, 0.925, 0.18);
  --in-out-circ:cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --in-out-circ-r:cubic-bezier(0.85, 0.14, 0.215, 0.865);
  --in-back:cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --in-back-r:cubic-bezier(0.265, 0.955, 0.4, 1.28);
  --out-back:cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --out-back-r:cubic-bezier(0.68, -0.275, 0.825, 0.115);
  --in-out-back:cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --in-out-back-r:cubic-bezier(0.735, -0.55, 0.32, 1.55);
}

/*
 * color settings
 */
/*
 * normalize
 */
* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 112px;
}

@media screen and (max-width: 860px) {
  html {
    scroll-padding-top: 52px;
  }
}
body {
  margin: 0;
  font-family: roboto, "Noto Sans JP", sans-serif;
  background-color: #f9f9f9;
  line-height: 1;
  color: #333;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

main {
  display: block;
}

a {
  background-color: transparent;
}

b, strong {
  font-weight: bolder;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}
a img {
  outline: 0;
  border: none;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

/*
 * module
 */
.section_header {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
}
.section_header:after {
  content: "";
  width: 160px;
  height: 2px;
  background-color: #fa8290;
  display: block;
  margin: 1.375rem auto 0;
}

.section_header-type-2 {
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 1.75rem;
  color: #333;
  border-left: 3px solid #3f9dbf;
}

.section_header_txt {
  margin-top: 44px;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  color: #333;
}
.section_header_txt.black {
  color: #333;
}

@media screen and (max-width: 860px) {
  .section_header {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .section_header:after {
    width: 34%;
  }
  .section_header-type-2 {
    font-size: 1.4rem;
  }
  .section_header_txt {
    margin-top: 1em;
    font-size: 1rem;
    text-align: left;
    line-height: 1.6;
  }
}
.module_column {
  margin-top: 44px;
  display: flex;
}
.module_column.column_2 {
  gap: 0 36px;
}
.module_column.column_3 {
  gap: 0 26px;
  justify-content: space-between;
}
.module_column.column_3 .img img {
  border-radius: 8px 8px 0 0;
}
.module_column.column_3 h3 {
  margin-top: 1rem;
  padding: 0 16px;
  font-size: 1.375rem;
  line-height: 1.45;
  color: #333;
}
.module_column.column_3 .txt_mein {
  margin-top: 1rem;
  padding: 0 16px 16px;
  font-size: 1rem;
  line-height: 1.69;
}
.module_column.column_5 {
  gap: 16px 18px;
}
.module_column.column_5 li {
  width: 18.6%;
}
.module_column.flexwrap {
  flex-wrap: wrap;
}
.module_column.support_list h3 {
  margin: 22px 16px 0;
  font-size: 1.375rem;
  line-height: 1.45;
  color: #333;
}
.module_column.support_list .txt_mein {
  margin: 16px;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.69;
}
.module_column .contents {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
}

@media screen and (max-width: 860px) {
  .module_column {
    margin-top: 1.8em;
    flex-direction: column;
  }
  .module_column.column_2 {
    gap: 16px 0;
  }
  .module_column.column_2 .contents:first-child {
    margin-top: 0;
  }
  .module_column .contents {
    width: 100%;
  }
  .module_column .contents h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .module_column .contents .txt_mein {
    margin-top: 0.6em;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.module_point {
  padding: 34px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
}
.module_point h2 {
  max-width: 100%;
  margin: 0 auto 1em;
  font-size: 1.875rem;
  color: #fa8290;
  text-align: center;
}
.module_point h2 span {
  padding-bottom: 0.35em;
  background: linear-gradient(transparent 95%, #fa8290 0%);
}
.module_point .module_column {
  flex-wrap: nowrap;
  align-items: center;
}
.module_point .module_column .contents .img {
  width: 504px;
}
.module_point .module_column .contents .txt {
  font-size: 1rem;
  line-height: 2;
}

.module_form .form-field.company {
  border-radius: 4px 4px 0 0;
}
.module_form .form-field {
  margin-top: 14px;
  background: #fff;
  position: relative;
  z-index: 0;
  display: block;
}
.module_form .form-field.checkbox {
  margin-top: 14px;
}
.module_form .form-field.checkbox .checkbox_area {
  display: flex;
  align-items: center;
  gap: 0 8px;
  cursor: pointer;
}
.module_form .form-field.checkbox .checkbox_area .checkbox_input {
  margin: 0;
  padding: 0;
  width: 0;
  opacity: 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.module_form .form-field.checkbox .checkbox_area .checkbox_dummy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  border: solid 1px #c8c8c8;
  background: #FFFFFF;
  border-radius: 5px;
}
.module_form .form-field.checkbox .checkbox_area .checkbox_input:checked + .checkbox_dummy::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/icon_check_active.svg) no-repeat center;
  background-size: contain;
}
.module_form label {
  cursor: text;
}
.module_form label .title {
  font-size: 0.8125rem;
  font-weight: 700;
}
.module_form label .title span {
  font-weight: 400;
  color: #ff001e;
  margin-left: 3px;
}
.module_form label input {
  border-radius: 0;
  margin-top: -7px;
  width: 100%;
}
.module_form label input::-moz-placeholder {
  color: #adadad;
}
.module_form label input::placeholder {
  color: #adadad;
}
.module_form label input[type=text], .module_form label input[type=tel], .module_form label select, .module_form label textarea {
  margin-top: 6px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  background-color: #fff;
  font-size: 0.9375rem;
  line-height: normal;
  display: flex;
  padding: 0 10px;
  max-width: 100%;
  height: 36px;
  transition: border-color 0.1s linear;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.module_form label input[type=tel] {
  max-width: 65px;
}
.module_form label input[type=tel]::-moz-placeholder {
  text-align: center;
}
.module_form label input[type=tel]::placeholder {
  text-align: center;
}
.module_form label select {
  width: 231px;
  padding: 0 8px;
}
.module_form label textarea {
  width: 100%;
  min-height: 78px;
  padding-top: 7px;
}
.module_form label textarea::-moz-placeholder {
  color: #adadad;
}
.module_form label textarea::placeholder {
  color: #adadad;
}
.module_form label .c-input-tel {
  display: flex;
}
.module_form label .c-input-tel .c-input-tel__item {
  margin-right: 18px;
  position: relative;
}
.module_form label .c-input-tel .c-input-tel__item::after {
  content: "-";
  display: block;
  color: #adadad;
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translate(0%, -20%);
}
.module_form label .c-input-tel .c-input-tel__item:last-child::after {
  display: none;
}
.module_form .form-field .error-mess {
  margin-top: 6px;
  width: 100%;
  font-weight: 700;
  font-size: 0.75rem;
  color: #ff001e;
  text-align: left;
  display: none;
}
.module_form .form-field-agree {
  flex-wrap: wrap;
}
.module_form .form-field-agree .error-mess {
  text-align: center;
}
.module_form .form-field_error input,
.module_form .form-field_error select,
.module_form .form-field_error textarea,
.module_form .form-field_error input[type=text], .module_form .form-field_error input[type=tel], .module_form .form-field_error select, .module_form .form-field_error textarea {
  background-color: #fce5e8;
}
.module_form .form-field_error .error-mess {
  display: block;
}
.module_form .form-field.form-field_error.checkbox .checkbox_area .checkbox_dummy {
  background: #fce5e8 !important;
}
.module_form button {
  margin-top: 16px;
  width: 100%;
  border: none;
}

.txt_form_attention {
  max-width: 480px;
  margin: 16px 0 0;
  line-height: 1.4;
  font-size: 0.625rem;
  color: #8d8d8d;
}
.txt_form_attention a {
  text-decoration: underline;
}

.formContactTop-confirmation {
  display: none;
}
.formContactTop-confirmation .title {
  min-width: 160px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.formContactTop-confirmation .input-confirmation {
  margin-top: 9px;
  font-size: 0.8125rem;
}

.formContactBtm-confirmation {
  display: none;
}
.formContactBtm-confirmation .form-field {
  display: flex;
}
@media screen and (max-width: 860px) {
  .formContactBtm-confirmation .form-field {
    display: block;
  }
}
.formContactBtm-confirmation .title {
  min-width: 160px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.formContactBtm-confirmation .input-confirmation {
  font-size: 0.8125rem;
}
@media screen and (max-width: 860px) {
  .formContactBtm-confirmation .input-confirmation {
    margin-top: 9px;
  }
}

.form-edit {
  margin-top: 20px;
  text-align: center;
}
.form-edit a {
  text-decoration: underline;
}
.form-edit a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 860px) {
  .module_point {
    padding: 22px;
  }
  .module_point .module_column .contents .img {
    width: auto;
  }
  .module_point .module_column .contents .txt {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .module_point h2 {
    font-size: 1.5rem;
  }
  .module_point h2 span {
    padding-bottom: 0.3em;
    line-height: 1.7;
  }
}
/*
 * container settings
 */
.m-top0 {
  margin-top: 0 !important;
}

.container {
  width: 100%;
  max-width: 1116px;
  margin: 0 auto;
  padding: 0;
}

.page-section {
  padding-top: 88px;
}

@media screen and (max-width: 860px) {
  .container {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-section {
    padding-top: 44px;
  }
}
[class*=hide-until-], [class*=show-from-], .site-nav {
  display: none;
}

@media (max-width: 860px) {
  .hide-until-tablet {
    display: block;
  }
}
@media (min-width: 980px) {
  .show-from-desktop {
    display: block;
  }
}
/*
 * cta
 */
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #262626;
  padding: 12px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: inherit;
  min-height: 60px;
}
.button.cta_form-1 {
  background-color: #ffd600;
}
.button.cta_form-2 {
  color: #fff;
  background-color: #fa8290;
}
.button.cta_form-2 path {
  fill: #fff;
}
.button:hover {
  opacity: 0.8;
}
.button .txt {
  width: 100%;
  padding: 0 0.5em;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 860px) {
  .button {
    font-size: 1.1rem;
  }
  .button .txt {
    line-height: 1.2;
  }
}
.section-cta {
  background-color: #fa8290;
  margin: 88px 0 0;
  padding: 32px 0;
}
.section-cta.fv {
  margin-top: 0;
  padding: 12px 0;
}
.section-cta.fv h3 {
  font-size: 1.125rem;
}
.section-cta.fv .button {
  margin-top: 8px;
}
.section-cta.fv .tel {
  margin-top: 10px;
}
.section-cta.fv .tel .txt_num {
  gap: 0 8px;
}
.section-cta.fv .tel .txt_num .icon {
  width: 56px;
}
.section-cta.fv .tel .txt_num .txt {
  font-size: 2rem;
}
.section-cta.fv .tel .txt_time {
  font-size: 0.8125rem;
  padding-left: 0.7rem;
}
.section-cta.fv .module_column {
  max-width: 1240px;
}
.section-cta.fv .module_column .contents {
  padding: 12px;
}
.section-cta h2 {
  margin: 0 auto 2.125rem;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.section-cta h2 span {
  padding-bottom: 0.35em;
  background: linear-gradient(transparent 95%, #fa8290 0%);
}
.section-cta h3 {
  font-size: 1.625rem;
  line-height: 1.42;
  text-align: center;
  position: relative;
}
.section-cta h3.row_2 {
  padding: 1rem 0;
}
.section-cta p {
  text-align: center;
}
.section-cta p .button {
  min-width: 340px;
  margin-top: 22px;
}
.section-cta .tel {
  margin-top: 23px;
}
.section-cta .tel .txt_num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 9px;
}
.section-cta .tel .txt_num .icon {
  width: 68px;
}
.section-cta .tel .txt_num .txt {
  font-size: 2.4375rem;
  font-weight: bold;
}
.section-cta .tel .txt_time {
  margin-top: 4px;
  padding-left: 0.4rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: bold;
}
.section-cta .module_column {
  max-width: 1116px;
  margin: 0 auto;
}
.section-cta .module_column .contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  padding: 38px 0;
  border-radius: 8px;
  background-color: #fff;
}

@media screen and (max-width: 860px) {
  .section-cta {
    margin-top: 44px;
    padding: 20px 0;
  }
  .section-cta.fv h3 {
    font-size: 1rem;
  }
  .section-cta.fv .module_column {
    gap: 12px 0;
  }
  .section-cta .module_column {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-cta .module_column .contents {
    width: 100%;
    padding: 20px;
  }
  .section-cta .module_column .contents .tel {
    margin-top: 12px;
  }
  .section-cta .module_column .contents .tel .txt_num {
    gap: 0 8px;
  }
  .section-cta .module_column .contents .tel .txt_num .icon {
    width: 36px;
  }
  .section-cta .module_column .contents .tel .txt_num .txt {
    font-size: 1.6rem;
  }
  .section-cta .module_column .contents .tel .txt_time {
    padding-left: 0.6rem;
    font-size: 0.7rem;
  }
  .section-cta h2 {
    margin-bottom: 1.2rem;
    padding: 0 22px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .section-cta h2 span {
    padding-bottom: 0.3em;
    line-height: 1.7;
  }
  .section-cta h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .section-cta h3.row_2 {
    padding: 0;
  }
  .section-cta p .button {
    width: 100%;
    min-width: auto;
    max-width: 288px;
    margin-top: 12px;
  }
}
/*
 * site-header
 */
.home .site-header {
  max-width: 1240px;
  margin: 88px auto 0;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.home .site-header .header-container {
  min-height: 112px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 50%;
}

.site-header .menu-trigger {
  display: none;
}

@media (min-width: 861px) and (max-width: 1240px) {
  .home .site-header .site-logo {
    width: 140px;
  }
  .site-header .cvr_pc {
    margin-left: 16px;
  }
  .site-header .cvr_pc .btn a {
    min-width: 120px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 860px) {
  .menu-trigger path {
    fill: #fff;
  }
  .header-cover .menu-trigger path {
    fill: #e51c4f;
  }
  .home .site-header {
    min-height: auto;
    margin: 0;
    padding: 12px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: none;
    box-shadow: none;
    display: block;
  }
  .home .site-header .header-container {
    min-height: auto;
  }
  .site-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateY(-100%);
    transition: all 0.3s var(--out-cubic);
    z-index: -1;
  }
  .site-header .site-nav_pc, .site-header .cvr_pc {
    display: none;
  }
  .site-header .menu-trigger {
    display: block;
  }
  .site-header .site-logo, .site-header .menu-trigger {
    z-index: 1;
  }
  body.header-cover .site-header:before {
    transform: translateY(0);
  }
  body.home:not(.header-cover) .site-header .site-logo {
    opacity: 0;
  }
  body.page-register .site-header, body.page-thanks .site-header {
    position: static;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  .site-logo {
    display: flex;
    align-items: center;
    max-width: 220px;
  }
  .site-logo__img {
    display: block;
  }
  .site-logo img {
    display: block;
    min-width: 100%;
  }
  .site-logo__img.img-1 {
    width: 172px;
  }
  .menu-close-button {
    margin: 20px 15px 40px;
    float: right;
  }
  .menu-close-button path {
    fill: #e51c4f;
  }
  .site-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    transform: translateX(100%);
    transition: background-color 0.3s var(--out-cubic) 0.3s, transform 0.1s linear 0.6s;
  }
  body.show-menu .site-nav {
    pointer-events: auto;
    transform: translateX(0);
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s var(--out-cubic);
  }
  body.show-menu .site-nav .site-nav__container {
    transform: translateX(0);
    transition: all 0.3s var(--out-cubic) 0.3s;
    overflow-y: scroll;
  }
  .site-nav__container {
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.3s var(--out-cubic);
  }
  .site-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    clear: both;
    border-top: 1px solid #ccc;
    font-weight: bold;
  }
  .site-nav .menu li {
    border-bottom: 1px solid #ccc;
  }
  .site-nav .menu a {
    display: block;
    padding: 20px;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .site-nav .cta {
    padding: 40px 22px;
  }
  .site-nav .cta__container {
    margin: 0;
    margin-top: 1rem;
  }
  .site-nav .cta__container a {
    width: 100%;
  }
}
/*
 * section-introduction
 */
.section-introduction {
  position: relative;
}
.section-introduction.hero-770 {
  background-image: linear-gradient(to right, #f1a3ac 0%, #f2c18c 100%);
}
.section-introduction.hero-770 .intro {
  min-height: 770px;
  padding-top: 35px;
}
.section-introduction.hero-770 .intro .hero_title {
  line-height: 1.36;
}
.section-introduction .intro {
  display: flex;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 52px 0 24px;
}
.section-introduction .intro_main {
  flex: 1 1 50%;
  align-items: center;
  justify-content: space-between;
}
.section-introduction .intro_main .hero_catch {
  margin-top: 74px;
  position: relative;
}
.section-introduction .intro_main .hero_catch span {
  display: block;
  padding-top: 1.2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 10;
}
.section-introduction .intro_main .hero_catch::after {
  content: "";
  width: calc(100% + 49px);
  height: 72px;
  background-image: linear-gradient(90deg, #e51c4f 50%, #e59f1c 100%);
  transform: skewX(-22.7deg);
  position: absolute;
  left: calc(100% - 1240px);
  top: 0;
  z-index: 0;
}
.section-introduction .intro_main .hero_title {
  font-size: 2.75rem;
  margin-top: 48px;
}
.section-introduction .intro_main .hero_title span {
  padding-bottom: 4px;
  color: #e51c4f;
  background: linear-gradient(transparent 92%, #e51c4f 0%);
}
.section-introduction .intro_main .hero_category {
  max-width: 80%;
  margin-top: 32px;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 12px;
}
.section-introduction .intro_main .hero_category li {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 0.625em;
  color: #666;
  background-color: #fff;
}
.section-introduction .intro_main .hero_point {
  max-width: 48%;
  margin-top: 22px;
  padding: 0;
  list-style: none;
  counter-reset: number 0;
}
.section-introduction .intro_main .hero_point li {
  display: inline-flex;
  align-items: center;
  width: 406px;
  margin-top: 0.8em;
  padding: 13px 1.2em 13px 13px;
  gap: 0 0.6em;
  font-size: 1.375rem;
  line-height: 1.2;
  border-radius: 999px;
  background-color: #fff;
}
.section-introduction .intro_main .hero_point li:first-child {
  margin-top: 0;
}
.section-introduction .intro_main .hero_point li:before {
  counter-increment: number 1;
  content: counter(number);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  border-radius: 39px;
  background-color: #fa8290;
  font-weight: bold;
  color: #fff;
  font-size: 1.375rem;
}
.section-introduction .intro_main .hero_img {
  position: absolute;
  bottom: 27px;
  left: 481px;
}
.section-introduction .intro_side-bar {
  display: flex;
  align-items: center;
  width: 384px;
  min-height: 740px;
  padding: 40px 22px 22px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.06);
}
.section-introduction .intro_side-bar .side-bar_title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.section-introduction .intro_side-bar .side-bar_title::before {
  min-width: 235px;
  content: "無料相談実施中";
  padding: 0.6em 1em;
  font-size: 0.9375rem;
  border-radius: 4px;
  background-color: #ffd600;
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translate(-50%, 0%);
}
.section-introduction .intro_side-bar .side-bar_title::after {
  content: "";
  width: 18px;
  height: 14px;
  background-image: url(../img/icon_form_fukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.section-introduction .intro_side-bar .side-bar_other-txt {
  font-size: 0.875rem;
  line-height: 1.43;
  color: #8d8d8d;
}
.section-introduction .intro_side-bar .module_form {
  margin-top: 12px;
}

.intro_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 83px;
  padding: 0 80px;
  background-color: #fff;
}

@media screen and (max-width: 860px) {
  .intro_logo {
    display: none;
    width: 100%;
    height: 49px;
    padding: 0 40px 0 20px;
    gap: 20px;
  }
}
@media (min-width: 861px) and (max-width: 1365px) {
  .section-introduction {
    padding: 0 34px;
  }
  .section-introduction .intro_main .hero_point li {
    width: 100%;
  }
  .section-introduction .intro_main .hero_img {
    width: 24%;
    left: 36%;
  }
  .section-introduction .intro_main .hero_catch::after {
    width: 100%;
    left: -98px;
  }
}
@media screen and (max-width: 860px) {
  .section-introduction.hero-770 {
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
  }
  .section-introduction.hero-770 .intro {
    min-height: auto;
    padding: 56px 20px 20px;
  }
  .section-introduction .intro {
    max-width: 375px;
    margin: 0 auto;
    padding: 72px 20px 20px;
  }
  .section-introduction .intro_main {
    position: relative;
  }
  .section-introduction .intro_main .hero_catch {
    margin-top: 0;
  }
  .section-introduction .intro_main .hero_catch span {
    padding-top: 0.6rem;
    font-size: 1rem;
  }
  .section-introduction .intro_main .hero_catch::after {
    height: 2rem;
    left: calc(0% - 98px);
  }
  .section-introduction .intro_main .hero_title {
    margin-top: 1rem;
    line-height: 1.3;
    font-size: 1.6rem;
  }
  .section-introduction .intro_main .hero_category {
    max-width: 100%;
    margin-top: 1.2rem;
    gap: 8px;
  }
  .section-introduction .intro_main .hero_category li {
    height: 26px;
    font-size: 0.7rem;
  }
  .section-introduction .intro_main .hero_category li:last-child {
    width: 71%;
    height: 36px;
    line-height: 1.4;
  }
  .section-introduction .intro_main .hero_point {
    max-width: 82%;
    margin-top: 1.2rem;
    position: relative;
    z-index: 1;
  }
  .section-introduction .intro_main .hero_point li {
    width: auto;
    min-width: 152px;
    margin-top: 0.6em;
    font-size: 0.7rem;
    padding: 0.6em 1.2em 0.6em 0.6em;
  }
  .section-introduction .intro_main .hero_point li:before {
    width: 1.5em;
    height: 1.5em;
    font-size: 1.1rem;
  }
  .section-introduction .intro_main .hero_img {
    width: 48%;
    position: absolute;
    bottom: -12px;
    left: auto;
    right: 0;
  }
  .section-introduction .intro_side-bar {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .section-introduction .intro_main .hero_title {
    font-size: max( 5.7971014493vw , 12px);
  }
}
/*
 * section-future
 */
.section-future h2 {
  font-size: 1.875rem;
  line-height: 1.27;
  text-align: center;
}
.section-future h2.row_2 {
  padding: 1.125rem 0;
}
.section-future h2 .mum {
  margin-right: 0.5rem;
  color: #fa8290;
}
.section-future .module_column {
  flex-wrap: wrap;
}
.section-future .module_column .contents {
  width: calc(50% - 19px);
  padding: 34px 22px;
}
.section-future .module_column .contents:nth-child(3) {
  width: 100%;
  margin-top: 34px;
}
.section-future .module_column .contents .img {
  margin-top: 34px;
}
.section-future .module_column .contents .img img {
  border-radius: 8px;
  height: 312px;
}
.section-future .module_column .contents h3 {
  display: inline-block;
  margin: 22px 12px 0;
  padding-bottom: 10px;
  font-size: 1.25rem;
  color: #fa8290;
  border-bottom: 2px solid #fa8290;
}
.section-future .module_column .contents .list {
  list-style-type: none;
  margin: 22px 12px 0;
  padding: 0;
}
.section-future .module_column .contents .list li {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 0 16px;
}
.section-future .module_column .contents .list li .num {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-color: #fa8290;
  font-size: 1.687rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-future .module_column .contents .list li .txt {
  max-width: 86%;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}
.section-future .module_column .contents .list li .txt .small {
  font-size: 1rem;
}
.section-future .module_column .contents .merit_table {
  display: flex;
  margin-top: 56px;
}
.section-future .module_column .contents .merit_table .row_case {
  margin-left: 16px;
}
.section-future .module_column .contents .merit_table .row_case.ma {
  margin-left: 22px;
  position: relative;
  z-index: 10;
}
.section-future .module_column .contents .merit_table .row_case.ma::before {
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background-color: rgba(250, 130, 144, 0.18);
  position: absolute;
  z-index: -1;
  left: -8px;
  top: -8px;
}
.section-future .module_column .contents .merit_table .row_case .th {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  font-size: 1.5rem;
  line-height: 1.25;
  text-align: center;
}
.section-future .module_column .contents .merit_table .row_case.ma .th {
  color: #fa8290;
}
.section-future .module_column .contents .merit_table .row_point {
  padding-top: 88px;
}
.section-future .module_column .contents .merit_table .row_point .th {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 352px;
  height: 72px;
  margin-top: 16px;
  font-size: 1.375rem;
  background-color: #ededed;
}
.section-future .module_column .contents .merit_table .row_point .th:first-child {
  margin-top: 0;
}
.section-future .module_column .contents .merit_table .row_point .th .small {
  font-size: 1rem;
}
.section-future .module_column .contents .merit_table .td {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 222px;
  height: 72px;
  margin-top: 16px;
  background-color: #fff;
  border: solid 1px #e0e0e0;
}
.section-future .module_column .contents .merit_table .td.border_future {
  border: solid 2px #fa8290;
}
.section-future .module_column .contents .merit_table .td .icon {
  display: block;
  line-height: 0;
  font-size: 2rem;
  font-weight: bold;
}
.section-future .module_column .contents .merit_table .td .icon.circle {
  color: #fa8290;
}
.section-future .module_column .contents .merit_table .td .icon.cross {
  color: #a8a8a8;
}
.section-future .module_column .contents .merit_table .td.ma_point .icon {
  color: #fff;
}
.section-future .module_column .contents .merit_table .td.ma_point .icon_arrow {
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: top;
  margin: 0 0.2em;
}
.section-future .module_column .contents .merit_table .td .txt {
  display: block;
  margin: 1.2em 0 0;
  font-size: 0.875rem;
  font-weight: bold;
}
.section-future .module_column .contents .merit_table .td .txt.green {
  color: #fa8290;
}
.section-future .module_column .contents .merit_table .td .txt.yellow {
  color: #ffd600;
}
.section-future .module_column .contents .merit_table .td.ma_point .txt {
  color: #fff;
}
.section-future .module_column .contents .merit_table + .txt_attention {
  font-size: 0.8125rem;
  margin-top: 1.5em;
}
.section-future .module_merit {
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}
.section-future .module_merit .module_column {
  margin-top: 0;
  align-items: center;
  gap: 0 49px;
}
.section-future .module_merit .module_column .contents {
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}
.section-future .module_merit .module_column .contents.right {
  max-width: 496px;
}
.section-future .module_merit .module_column .contents .img {
  width: auto;
  margin-top: 0;
}
.section-future .module_merit .module_column .contents .img .notice {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}
.section-future .module_merit .module_column .contents .h2_sub {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fa8290;
}
.section-future .module_merit .module_column .contents h2 {
  font-size: 1.75rem;
  color: #333;
  line-height: 1.29;
  text-align: left;
}
.section-future .module_merit .module_column .contents .txt {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.67;
}
.section-future .merit_cta {
  max-width: 880px;
  margin: 35px auto 0;
}
.section-future .merit_cta h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #fa8290;
}
.section-future .merit_cta .merit_list {
  list-style-type: none;
  padding: 0;
}
.section-future .merit_cta .merit_list li {
  display: flex;
  align-items: center;
  gap: 0 44px;
  margin: 34px 0 0;
  padding: 16px 38px;
  border-radius: 40px;
  background-color: #fff;
  position: relative;
}
.section-future .merit_cta .merit_list li:first-child {
  margin-top: 44px;
}
.section-future .merit_cta .merit_list li::after {
  content: "";
  width: 19px;
  height: 16px;
  background-size: contain;
  position: absolute;
  bottom: -16px;
}
.section-future .merit_cta .merit_list li:nth-child(odd)::after {
  background-image: url(../img/icon_cause_nayami-left.svg);
  left: 38px;
}
.section-future .merit_cta .merit_list li:nth-child(even) {
  margin-left: auto;
}
.section-future .merit_cta .merit_list li:nth-child(even)::after {
  background-image: url(../img/icon_cause_nayami-right.svg);
  right: 38px;
}
.section-future .merit_cta .merit_list .merit_list_num {
  display: flex;
  align-items: center;
}
.section-future .merit_cta .merit_list .merit_list_num .txt {
  font-family: Roboto;
  font-size: 1rem;
  font-weight: bold;
}
.section-future .merit_cta .merit_list .merit_list_num .mun {
  font-family: Roboto;
  font-size: 1.9375rem;
  font-weight: 500;
  width: 47px;
  height: 47px;
  margin: 0 0 0 0.3em;
  line-height: 47px;
  border-radius: 47px;
  text-align: center;
  color: #fff;
  background-color: #fa8290;
}
.section-future .merit_cta .merit_list .merit_list_txt {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0;
}
.section-future .merit_cta .merit_list .merit_list_txt span {
  padding-bottom: 4px;
  color: #fa8290;
  background: linear-gradient(transparent 92%, #fa8290 0%);
}
.section-future .merit_cta .txt_trouble_question {
  margin-top: 60px;
  padding: 10px 0 49px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  background-image: url(../img/icon_cause_arrow@2x.png);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
}
.section-future .merit_cta .txt_trouble_question .two_month {
  color: #fa8290;
  text-decoration: underline;
}
.section-future .merit_cta .txt_trouble_answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 18px 77px;
  border-radius: 5px;
  border: solid 3px #fa8290;
  background-color: #fff;
}
.section-future .merit_cta .txt_trouble_answer .txt {
  font-size: 2.25rem;
  font-weight: bold;
  color: #fa8290;
  line-height: 1.7;
}
.section-future .merit_cta .txt_trouble_answer .txt span {
  padding-bottom: 6px;
  color: #fa8290;
  background: linear-gradient(transparent 96%, #fa8290 0%);
}

@media (min-width: 861px) and (max-width: 1365px) {
  .section-future .module_column .contents .merit_table .row_case {
    max-width: 19.9%;
  }
  .section-future .module_column .contents .merit_table .td {
    max-width: 100%;
  }
  .section-future .module_column .contents .merit_table .row_point {
    width: 34.5%;
  }
  .section-future .module_column .contents .merit_table .row_point .th {
    width: 100%;
  }
  .section-future .module_merit .module_column {
    gap: 0 2%;
  }
}
@media screen and (max-width: 1116px) {
  .section-future .module_column .contents .img img {
    height: 27.9569892473vw;
  }
}
@media screen and (max-width: 860px) {
  .section-future .section_header {
    font-size: 1.5rem;
  }
  .section-future .module_column .contents {
    width: 100%;
  }
  .section-future .module_column .contents:nth-child(3) {
    margin-top: 0;
  }
  .section-future .module_column .contents h2 {
    padding: 0;
    font-size: 1.3rem;
  }
  .section-future .module_column .contents .img {
    margin-top: 1.5em;
  }
  .section-future .module_column .contents .img img {
    height: auto;
  }
  .section-future .module_column .contents .list li {
    gap: 0 0.5rem;
  }
  .section-future .module_column .contents .list li .num {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    font-size: 1rem;
  }
  .section-future .module_column .contents .list li .txt {
    width: 86%;
    font-size: 1rem;
    line-height: 1.3;
  }
  .section-future .module_column .contents .list li .txt .small {
    font-size: 0.8rem;
  }
  .section-future .module_column .contents .merit_table_wrap {
    width: 100%;
    padding: 0 20px 6px 0;
    overflow-x: scroll;
    box-sizing: border-box;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table {
    margin-top: 1.5em;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_point {
    padding-top: 56px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_point .th {
    flex-direction: column;
    width: 200px;
    height: 56px;
    margin-top: 8px;
    font-size: 1rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_point .th .small {
    padding-top: 0.3rem;
    font-size: 0.8rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case {
    margin-left: 8px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case.ma {
    margin-left: 12px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case.ma::before {
    content: "";
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    z-index: -1;
    left: -4px;
    top: -4px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case .th {
    font-size: 1.2rem;
    height: 56px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case .td {
    width: 188px;
    height: 56px;
    margin-top: 8px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .td .icon {
    font-size: 1.5rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .td.ma_point .icon_arrow {
    font-size: 1.2rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .td .txt {
    font-size: 0.7rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table + .txt_attention {
    width: 100vw;
  }
  .section-future .module_merit .module_column {
    flex-direction: column-reverse;
    gap: 16px 0;
  }
  .section-future .module_merit .module_column .contents .h2_sub {
    font-size: 0.9rem;
  }
  .section-future .module_merit .module_column .contents h2 {
    font-size: 1.3rem;
  }
  .section-future .module_merit .module_column .contents .txt {
    font-size: 1rem;
    line-height: 1.6;
  }
  .section-future .module_merit .module_column .contents .img .notice {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  .section-future .merit_cta h2 {
    font-size: 1.5rem;
  }
  .section-future .merit_cta .merit_list li {
    flex-direction: column;
    margin-top: 1.6em;
    padding: 1em 1.6em;
    gap: 0.4em 0;
  }
  .section-future .merit_cta .merit_list li:first-child {
    margin-top: 1.2rem;
  }
  .section-future .merit_cta .merit_list li .merit_list_num .txt {
    font-size: 0.7rem;
  }
  .section-future .merit_cta .merit_list li .merit_list_num .mun {
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: 1rem;
  }
  .section-future .merit_cta .merit_list li .merit_list_txt {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .section-future .merit_cta .txt_trouble_question {
    margin-top: 1.2rem;
    padding: 1.2rem 0 2.6rem;
    font-size: 1rem;
    line-height: 1.3;
    background-position: 50% 90%;
    background-size: auto 58%;
  }
  .section-future .merit_cta .txt_trouble_answer {
    margin-top: 1.2rem;
    padding: 1rem;
  }
  .section-future .merit_cta .txt_trouble_answer .txt {
    font-size: 1rem;
    line-height: 1.9;
  }
  .section-future .merit_cta .txt_trouble_answer .img {
    width: 32%;
  }
}
/*
 * section-implementation
 */
.section-implementation .implementation_voice {
  margin-top: 118px;
}
.section-implementation .implementation_voice .contents {
  position: relative;
}
.section-implementation .implementation_voice .contents .txt_fukidashi {
  width: 100%;
  padding: 12px 16px;
  line-height: 1.2;
  font-size: 1.25rem;
  color: #fff;
  background-color: #fa8290;
  border-radius: 4px;
  position: absolute;
  top: -52px;
  z-index: 10;
}
.section-implementation .implementation_voice .contents .txt_fukidashi::after {
  content: "";
  width: 29px;
  height: 16px;
  background-image: url(../img/icon_implementation_list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 39px;
  bottom: -14px;
}
.section-implementation .implementation_voice .contents .inner .company_prof {
  display: flex;
  align-items: center;
  gap: 0 33px;
  padding: 22px 16px 0;
}
.section-implementation .implementation_voice .contents .inner .company_prof .txt .name {
  font-size: 1.1875rem;
  font-weight: bold;
}
.section-implementation .implementation_voice .contents .inner .company_prof .txt .cat {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.section-implementation .implementation_voice .contents .inner .txt_mein {
  margin-top: 22px;
  font-size: 0.875rem;
  line-height: 1.71;
}

@media screen and (max-width: 860px) {
  .section-implementation .module_column {
    margin-top: 44px;
  }
  .section-implementation .module_column .contents {
    margin-top: calc(3.3em + 16px);
  }
  .section-implementation .module_column .contents:first-child {
    margin-top: 3.3em;
  }
  .section-implementation .module_column .contents .txt_fukidashi {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .section-implementation .module_column .contents .inner .company_prof {
    padding: 16px 16px 0;
    gap: 0 1rem;
  }
  .section-implementation .module_column .contents .inner .company_prof .img {
    width: 60px;
  }
  .section-implementation .module_column .contents .inner .company_prof .txt .name {
    font-size: 1.1rem;
  }
  .section-implementation .module_column .contents .inner .company_prof .txt .cat {
    font-size: 0.7rem;
  }
  .section-implementation .module_column .contents .inner h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .section-implementation .module_column .contents .inner .txt_mein {
    margin-top: 0.8em;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
/*
 * section-implementation-support
 */
.section-implementation-support .support_list {
  gap: 0 12px;
}
.section-implementation-support .support_list .contents {
  padding: 16px;
  position: relative;
}
.section-implementation-support .support_list .contents .inner .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37px;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 4px;
  background-color: #fa8290;
}
.section-implementation-support .support_list .contents .inner h3 {
  margin-top: 12px;
  font-size: 1.125rem;
  text-align: center;
}
.section-implementation-support .support_list .contents .inner .img {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.section-implementation-support .support_list .contents .inner .txt_mein {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.section-implementation-support .support_list .contents .icon_arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 10;
  transform: translate(0%, -50%);
}
.section-implementation-support .support_list .contents:last-child .icon_arrow {
  display: none;
}

@media screen and (max-width: 860px) {
  .section-implementation-support .support_list {
    gap: 16px 0;
  }
  .section-implementation-support .support_list .contents .inner .num {
    height: 1.6rem;
    font-size: 0.8rem;
  }
  .section-implementation-support .support_list .contents .inner h3 {
    font-size: 1.1rem;
  }
  .section-implementation-support .support_list .contents .inner .img img {
    width: 72px;
  }
  .section-implementation-support .support_list .contents .icon_arrow {
    width: 20px;
    margin-left: -10px;
    transform: rotate(90deg);
    left: 50%;
    top: auto;
    bottom: -34px;
  }
}
/*
 * section-qa
 */
.section-qa .section-qa_list {
  max-width: 880px;
  margin: 12px auto 0;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
}
.section-qa .section-qa_list.first {
  margin-top: 44px;
}
.section-qa .section-qa_list .toggle {
  display: none;
}
.section-qa .section-qa_list .title, .section-qa .section-qa_list .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.section-qa .section-qa_list .title {
  padding-right: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0 0.6em;
  line-height: 2rem;
  font-size: 1.375rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.section-qa .section-qa_list .title .icon_q {
  font-size: 1.875rem;
  color: #fa8290;
  font-family: roboto;
  font-weight: normal;
}
.section-qa .section-qa_list .title::after, .section-qa .section-qa_list .title::before {
  content: "";
  position: absolute;
  right: 9px;
  top: calc(50% - 9px);
  width: 2px;
  height: 18px;
  background-color: #fa8290;
  transition: all 0.2s;
}
.section-qa .section-qa_list .title::after {
  transform: rotate(90deg);
}
.section-qa .section-qa_list .content {
  max-height: 0;
  overflow: hidden;
}
.section-qa .section-qa_list .content p {
  margin-top: 0.875em;
  padding-left: 2.7em;
  font-size: 1rem;
  line-height: 1.63;
}
.section-qa .section-qa_list .content p .underline {
  font-weight: bold;
  color: #fa8290;
}
.section-qa .section-qa_list .toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.2s;
}
.section-qa .section-qa_list .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

@media screen and (max-width: 860px) {
  .section-qa .container {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-qa .section-qa_list {
    padding: 16px;
  }
  .section-qa .section-qa_list .title {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .section-qa .section-qa_list .title .icon_q {
    font-size: 1.7rem;
  }
  .section-qa .section-qa_list .content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.5em 0 0 2.6em;
    padding: 0;
  }
}
/*
 * section-contact
 */
.section-contact .step {
  display: flex;
  list-style-type: none;
  max-width: 880px;
  margin: 66px auto 0;
  padding: 0;
  gap: 0 11px;
}
.section-contact .step li {
  width: 33.33%;
  padding-bottom: 12px;
  font-size: 1.125rem;
  color: #c7c7c7;
  border-bottom: 3px solid #c7c7c7;
}
.section-contact .step li.current {
  font-weight: bold;
  color: #fa8290;
  border-color: #fa8290;
}
.section-contact .module_form {
  max-width: 880px;
  margin: 0 auto;
}
.section-contact .module_form .module_column {
  margin-top: 34px;
  justify-content: center;
}
.section-contact .module_form .module_column.last {
  margin-top: 22px;
}
.section-contact .module_form .module_column .contents {
  width: 100%;
  padding: 34px 150px;
}
.section-contact .module_form .module_column .contents .section_header-type-2 {
  margin-bottom: 22px;
  padding: 0.25rem 0 0.25rem 0.75rem;
  font-size: 1.125rem;
  border-color: #82befa;
}
.section-contact .module_form .module_column .contents .section_header-type-2.required {
  border-color: #fa8290;
}
.section-contact .module_form .module_column .contents .field-label {
  display: flex;
}
.section-contact .module_form .module_column .contents .field-label .title {
  min-width: 160px;
  padding-top: 9px;
}
.section-contact .module_form .module_column .contents .field-label input[type=text], .section-contact .module_form .module_column .contents .field-label input[type=tel], .section-contact .module_form .module_column .contents .field-label select, .section-contact .module_form .module_column .contents .field-label textarea {
  margin-top: 0;
}
.section-contact .module_form .module_column .contents .field-label .input_wrap {
  width: 100%;
}
.section-contact .module_form .module_column .contents .field-label .input_wrap .notice {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #adadad;
}
.section-contact .module_form .checkbox {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  background-color: transparent;
}
.section-contact .module_form .button {
  max-width: 340px;
  margin: 35px auto 0;
  display: flex;
}
.section-contact .txt_form_attention {
  max-width: 580px;
  margin: 22px auto 0;
}

@media screen and (max-width: 860px) {
  .section-contact .step {
    margin-top: 44px;
  }
  .section-contact .step li {
    padding-bottom: 0.5rem;
    font-size: 0.7rem;
  }
  .section-contact .module_form .module_column .contents {
    padding: 20px;
  }
  .section-contact .module_form .module_column .contents .section_header-type-2 {
    padding: 0.2rem 0 0.2rem 0.75rem;
    font-size: 1rem;
  }
  .section-contact .module_form .module_column .contents .field-label {
    flex-direction: column;
    gap: 8px 0;
  }
  .section-contact .module_form .module_column .contents .field-label .title {
    width: 100px;
    padding-top: 0;
  }
  .section-contact .module_form .module_column .contents .button {
    width: 100%;
  }
}
/*
 * site-footer
 */
.site-footer {
  max-width: 1116px;
  margin: 0 auto;
  padding: 66px 0;
}
.site-footer .inner .txt_copy {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

@media screen and (max-width: 860px) {
  .site-footer {
    padding: 34px 20px;
  }
  .site-footer .logo {
    width: 100px;
    margin: 0 auto;
  }
  .site-footer .inner {
    flex-direction: column;
  }
}
/*
 * page-register
 */
body.page-register, body.page-thanks {
  background-color: #fff;
}
body.page-register .site-logo, body.page-thanks .site-logo {
  max-width: 196px;
}
body.page-register .site-footer .inner .txt_copy, body.page-thanks .site-footer .inner .txt_copy {
  color: #333;
}

body.page-register .site-header, body.page-thanks .site-header {
  padding: 40px 0;
}

.page-register .page-section, .page-thanks .page-section {
  padding: 60px 0;
  scroll-margin: 0;
}

.page-register .header-container, .page-thanks .header-container {
  display: flex;
  justify-content: center;
}

.page-register .container, .page-thanks .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register .site-footer, .page-thanks .site-footer {
  padding: 0;
}
.page-register .site-footer .inner, .page-thanks .site-footer .inner {
  margin: 0.8em 0;
  justify-content: center;
}
.page-register .site-footer .inner .txt_copy, .page-thanks .site-footer .inner .txt_copy {
  margin-top: 0;
}

.page-register.mail p {
  margin-top: 1em;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
}
.page-register.mail p.error_messe {
  color: red;
}
.page-register.mail .formTable {
  width: 100%;
  margin: 1rem auto 0;
  border-collapse: collapse;
}
.page-register.mail .formTable td, .page-register.mail .formTable th {
  border: 1px solid #c8c8c8;
  padding: 10px;
}
.page-register.mail .formTable th {
  width: 30%;
  font-weight: normal;
  background: #f0f0f0;
  text-align: left;
}
.page-register.mail .button_form {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
.page-register.mail .button_form input {
  width: 50%;
  justify-content: center;
}
.page-register.mail .button_form input.cta_form-1 {
  margin-left: 2.5%;
}
.page-register .form_wrap {
  width: 298px;
  margin: 0 auto;
}
.page-register .form_wrap .form_title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (min-width: 861px) and (max-width: 1365px) {
  .page-register .page-section, .page-thanks .page-section {
    padding: 60px 0;
    scroll-margin: 120px 0;
  }
}
@media screen and (max-width: 860px) {
  body.page-register .site-header, body.page-thanks .site-header {
    padding: 12px 0;
  }
  .page-register .page-section, .page-thanks .page-section {
    padding: 40px 0;
    scroll-margin: 80px 0;
  }
  .page-register.mail .formTable {
    margin: 1rem auto 0;
  }
  .page-register.mail .formTable th, .page-register.mail .formTable td {
    width: auto;
    display: block;
  }
  .page-register.mail .formTable th {
    width: auto;
    margin-top: 0.6rem;
    border-bottom: 0;
    display: block;
  }
}
/*
 * thanks
 */
.section-thanks {
  padding-top: 40px;
}
.section-thanks .thanks__header {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
.section-thanks .thanks__content p {
  margin-top: 1em;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
}
.section-thanks .thanks__content a {
  text-decoration: underline;
}
.section-thanks .thanks__content a:hover {
  color: #fa8290;
}
.section-thanks .thanks__action {
  padding-top: 40px;
  text-align: center;
}
.section-thanks .thanks__action .button {
  min-width: 300px;
}

.section-introduction.hero-submit {
  padding: 28px 34px;
}
@media screen and (max-width: 860px) {
  .section-introduction.hero-submit {
    padding: 13px 18px;
  }
}
.section-introduction.hero-submit .intro_logo {
  position: relative;
  top: auto;
  left: auto;
}

.contents--message {
  margin: 50px auto 0;
  max-width: 880px;
  background: #fff;
  padding: 34px 22px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.69;
  text-align: left;
}
.contents--message p + p {
  margin-top: 1.8rem;
}
.contents--message a {
  text-decoration: underline;
}
.contents--message ul {
  margin: 1.8rem 0;
  padding: 0;
}
.contents--message ul.dot li {
  padding: 0 0 0 25px;
  position: relative;
  overflow: visible;
  list-style: none;
}
.contents--message ul.dot li:before {
  content: "";
  background-color: #333;
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 0.65em;
  left: 2px;
}
.contents--message ul.dot li + li {
  margin-top: 0.8em;
}

#formContactTop .button.cta_form-1 {
  margin-top: 16px;
  width: 100%;
  border: none;
}

.formContactTop-input,
.formContactTop-confirmation {
  min-height: 566px;
}

/* ---------------------------------------------
*   c-section-video
--------------------------------------------- */
.c-section-video {
  background-color: #fa8290;
  padding-block: 5px 53px;
  margin-top: 60px;
}
@media screen and (max-width: 860px) {
  .c-section-video {
    padding-block: 30px 48px;
    margin-top: 35;
  }
}
.c-section-video__container {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 861px) {
  .c-section-video__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.1556329849%;
    margin-top: 45px;
  }
}
@media screen and (max-width: 860px) {
  .c-section-video__container {
    max-width: initial;
    padding-inline: 0;
  }
}
.c-section-video__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7090909091;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 860px) {
  .c-section-video__ttl {
    font-size: 20px;
  }
}
.c-section-video__ttl--bg {
  font-size: 30px;
  background-color: #fff;
  color: #fa8290;
}
@media screen and (min-width: 861px) {
  .c-section-video__ttl--bg {
    display: block;
    width: 350px;
    padding-block: 6px;
    margin: 0 auto 20px;
    border-radius: 10px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 860px) {
  .c-section-video__ttl--bg {
    display: block;
    width: 162px;
    margin: 0 auto 17px;
    font-size: 20px;
    padding-inline: 0;
    padding-block: 2px;
  }
}
.c-section-video__anno {
  display: block;
  margin-block: 30px 0;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 860px) {
  .c-section-video__anno {
    font-size: 16px;
    margin-block: 22px 16px;
  }
}
.c-section-video__video {
  position: relative;
  width: 521px;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 940px) {
  .c-section-video__video {
    width: 53.1914893617vw;
  }
}
@media screen and (max-width: 860px) {
  .c-section-video__video {
    width: 330px;
    margin: 0 auto;
  }
}
.c-section-video__video video {
  width: 521px;
}
@media screen and (max-width: 940px) {
  .c-section-video__video video {
    width: 53.1914893617vw;
  }
}
@media screen and (max-width: 860px) {
  .c-section-video__video video {
    width: 330px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-section-video__video:hover {
    opacity: 0.8;
  }
}
.c-section-video__video-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.c-section-video__video-img img {
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------
*   pc-hide,sp-hide
--------------------------------------------- */
@media screen and (min-width: 861px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 860px) {
  .sp-hide {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */