@charset "UTF-8";
:root {
  --color-white: #ffffff;
  --color-black: #4d4d4d;
  --color-main: #ed779e;
  --color-main2: #55c6e9;
  --color-bg: #fbdde7;
  --color-placeholder: #cccccc;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  background-color: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000000;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

* {
  box-sizing: border-box !important;
  font-size: 1.4rem;
}

html {
  font-size: 62.5%;
}
html.is-open {
  overflow: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}
body * {
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

picture {
  display: block;
}

input[type="submit"],
input[type="button"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="reset"],
select,
button,
textarea {
  -webkit-appearance: none;
  background-color: var(--color-white);
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: var(--color-black);
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-decoration,
input[type="number"]::-webkit-search-decoration,
input[type="email"]::-webkit-search-decoration,
input[type="tel"]::-webkit-search-decoration,
input[type="date"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration,
textarea::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="reset"]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: 0;
}

input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value,
input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
.is-pc--inline {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .is-pc--inline {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}
.is-sp--inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp--inline {
    display: inline-block;
  }
}

.swiper-container {
  overflow: visible;
  padding-bottom: 33px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .swiper-container {
    padding-bottom: calc(33 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container {
    padding-bottom: calc(33 / 375 * 100vw);
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: block;
  height: auto;
  height: 342px;
  margin-top: 0;
  top: 0;
  width: auto;
  z-index: 2;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: calc(342 / 1440 * 100vw);
    top: calc(0 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    align-items: center;
    display: flex;
    height: calc(342 / 375 * 100vw);
    top: calc(0 / 375 * 100vw);
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: block;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  height: 25px;
  width: 25px;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    filter: drop-shadow(0px 0px calc(20 / 1440 * 100vw) rgba(0, 0, 0, 0.1));
    height: calc(25 / 1440 * 100vw);
    width: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    filter: drop-shadow(0px 0px calc(20 / 375 * 100vw) rgba(0, 0, 0, 0.1));
    height: calc(25 / 375 * 100vw);
    width: calc(25 / 375 * 100vw);
  }
}

.swiper-button-prev {
  left: 30px;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: calc(30 / 375 * 100vw) !important;
  }
}
.swiper-button-prev:after {
  background-image: url(../images/swiper_icon_prev.svg);
}

.swiper-button-next {
  right: 30px;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: calc(30 / 375 * 100vw) !important;
  }
}
.swiper-button-next:after {
  background-image: url(../images/swiper_icon_next.svg);
}

.swiper-pagination {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: calc(0 / 375 * 100vw) !important;
  }
}

.swiper-pagination-bullets {
  bottom: 0 !important;
  font-size: 0 !important;
  left: auto !important;
}

.swiper-pagination-bullet {
  background-color: #f3dad8;
  border: 1px solid #f3dad8;
  border-radius: 50%;
  height: 7px;
  margin: 0 5px !important;
  opacity: 1;
  width: 7px;
}
@media screen and (max-width: 1439px) {
  .swiper-pagination-bullet {
    height: calc(7 / 1440 * 100vw);
    margin: 0 calc(5 / 1440 * 100vw) !important;
    width: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    height: calc(7 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw) !important;
    width: calc(7 / 375 * 100vw);
  }
}
.swiper-pagination-bullet-active {
  background: var(--color-main);
  border: 1px solid var(--color-main);
}

.lity-hide {
  display: none !important;
}
.lity-close,
.lity-close:hover {
  box-shadow: none !important;
  display: none !important;
  font-family: inherit !important;
  line-height: 1 !important;
  position: static !important;
  text-shadow: none !important;
}
.lity-container,
.lity-content {
  transform: none !important;
  transition: none !important;
}
.lity-content {
  max-width: 90vw !important;
  box-sizing: border-box;
  margin: 0 auto;
}

.lity-content:after{
  box-shadow: none;
}

/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v53-japanese_latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v53-japanese_latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v53-japanese_latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.l-container {
  margin: 0 auto;
  padding-left: 196px;
  padding-right: 160px;
  width: 1440px;
}
@media screen and (max-width: 1439px) {
  .l-container {
    padding-left: calc(196 / 1440 * 100vw);
    padding-right: calc(160 / 1440 * 100vw);
    width: calc(1440 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(22 / 375 * 100vw);
    padding-right: calc(22 / 375 * 100vw);
    width: 100%;
  }
}

.c-service {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 0 9px rgba(51, 51, 51, 0.1);
  padding-top: 19px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .c-service {
    border-radius: calc(20 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(9 / 1440 * 100vw) rgba(51, 51, 51, 0.1);
    padding-top: calc(19 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-service {
    border-radius: calc(20 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw)calc(9 / 375 * 100vw) rgba(51, 51, 51, 0.1);
    padding-top: calc(19 / 375 * 100vw);
  }
}
.c-service__icon {
  position: absolute;
  top: -36px;
  left: -36px;
  width: 64px;
  height: 65px;
}
.c-service__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .c-service__icon {
    left: calc(-36 / 1440 * 100vw);
    top: calc(-36 / 1440 * 100vw);
    width: calc(64 / 1440 * 100vw);
    height: calc(65 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-service__icon {
    left: calc(-15 / 375 * 100vw);
    top: calc(-15 / 375 * 100vw);
    width: calc(45 / 375 * 100vw);
    height: calc(46 / 375 * 100vw);
  }
}
.c-service__image{
  width: 280px;
  margin: 0 auto;

}
@media screen and (max-width: 1439px) {
  .c-service__image {
    width: calc(280 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-service__image {
    width: calc(280 / 375 * 100vw);
  }
}
.c-service__image img {
  height: auto;
  width: 100%;
}
.c-service__title {
  color: var(--color-main);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin-top: 15px;
  margin-bottom: 17px;
}
@media screen and (max-width: 1439px) {
  .c-service__title {
    font-size: calc(18 / 1440 * 100vw);
    line-height: calc(26 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
    margin-bottom: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-service__title {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
    margin-top: calc(17 / 375 * 100vw);
    margin-bottom: calc(17 / 375 * 100vw);
  }
}
.c-service__text {
  font-size: 15px;
  line-height: 30px;
  margin-top: 13px;
  overflow: hidden;
  padding: 0 20px 33px;
}
@media screen and (max-width: 1439px) {
  .c-service__text {
    font-size: calc(15 / 1440 * 100vw);
    line-height: calc(30 / 1440 * 100vw);
    margin-top: calc(13 / 1440 * 100vw);
    padding: 0 calc(20 / 1440 * 100vw) calc(33 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-service__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
    margin-top: calc(13 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw) calc(33 / 375 * 100vw);
  }
}

.c-form{
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1439px) {
  .c-form{
    box-shadow: 0 0 calc(10 / 1440 * 100vw) rgba(51, 51, 51, 0.15);
    border-radius: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form{
    box-shadow: 0 0 calc(10 / 375 * 100vw) rgba(51, 51, 51, 0.15);
    border-radius: calc(8 / 375 * 100vw);
  }
}
.c-form__titleBox {
  background: var(--color-main);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .c-form__titleBox {
    height: calc(58 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox {
    height: calc(58 / 375 * 100vw);
  }
}
.c-form__titleBox__title{
  width: 237px;
  height: 21px;
}
@media screen and (max-width: 1439px) {
  .c-form__titleBox__title{
    width: calc(237 / 1440 * 100vw);
    height: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox__title{
    width: calc(237 / 375 * 100vw);
    height: calc(21 / 375 * 100vw);
  }
}
.c-form__content {
  background-color: var(--color-white);
  padding: 20px 20px 21px 20px;
}
@media screen and (max-width: 1439px) {
  .c-form__content {
    padding: calc(20 / 1440 * 100vw) calc(20 / 1440 * 100vw) calc(21 / 1440 * 100vw) calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content {
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(21 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.c-form__content__stepList {
  margin-bottom: 20px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList {
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.c-form__content__stepList > ul {
  align-items: center;
  display: flex;
  justify-content: center;
  transform: translateX(4px);
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList > ul {
    transform: translateX(calc(4 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList > ul {
    transform: translateX(calc(4 / 375 * 100vw));
  }
}
.c-form__content__stepList > ul > li {
  background-image: url(../images/icon_form_dot.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  padding-left: 25px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList > ul > li {
    width: calc(5 / 1440 * 100vw);
    height: calc(5 / 1440 * 100vw);
    padding-left: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList > ul > li {
    width: calc(5 / 375 * 100vw);
    height: calc(5 / 375 * 100vw);
    padding-left: calc(25 / 375 * 100vw);
  }
}
.c-form__content__stepList > ul li.is-current {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList > ul li.is-current {
    width: calc(24 / 1440 * 100vw);
    height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList > ul li.is-current {
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
  }
}
.c-form__content__stepList > ul > li:nth-child(1).is-current {
  background-image: url(../images/icon_form_number_1_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(2).is-current {
  background-image: url(../images/icon_form_number_2_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(3).is-current {
  background-image: url(../images/icon_form_number_3_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(4).is-current {
  background-image: url(../images/icon_form_number_4_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(5).is-current {
  background-image: url(../images/icon_form_number_5_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(6).is-current {
  background-image: url(../images/icon_form_number_6_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(7).is-current {
  background-image: url(../images/icon_form_number_7_current.svg);
}
.c-form__content__stepList > ul > li:nth-child(8).is-current {
  background-image: url(../images/icon_form_number_8_current.svg);
}

.c-form__content__module__block {
  position: relative;
}
.c-form__content__module__block__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__title {
    font-size: calc(16 / 1440 * 100vw);
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__title {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.c-form__content__module__block__title .notes{
  font-size: 11px;
  margin-left: 9px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__title .notes{
    font-size: calc(11 / 1440 * 100vw);
    margin-left: calc(9 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__title .notes{
    font-size: calc(11 / 375 * 100vw);
    margin-left: calc(9 / 375 * 100vw);
  }
}
.c-form__content__module__block__checkbox,
.c-form__content__module__block__radio{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__checkbox,
  .c-form__content__module__block__radio{
    gap: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__checkbox,
  .c-form__content__module__block__radio{
    gap: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw);
  }
}
.c-form__content__module__block__checkbox__choice input[type=checkbox],
.c-form__content__module__block__radio__choice input[type=radio] {
  display: none;
}
.c-form__content__module__block__checkbox__choice label,
.c-form__content__module__block__radio__choice label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: bold;
  width: 140px;
  height: 56px;
  justify-content: center;
          user-select: none;
  color: var(--color-main2);
  border: 1px solid var(--color-main2);
  border-radius: 5px;
  line-height: 18px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__checkbox__choice label,
  .c-form__content__module__block__radio__choice label {
    font-size: calc(14 / 1440 * 100vw);
    width: calc(140 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
    border-radius: calc(5 / 1440 * 100vw);
    line-height: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__checkbox__choice label,
  .c-form__content__module__block__radio__choice label {
    font-size: calc(14 / 375 * 100vw);
    width: calc(140 / 375 * 100vw);
    height: calc(56 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
    line-height: calc(18 / 375 * 100vw);
  }
}
.c-form__content__module__block__checkbox__choice label span,
.c-form__content__module__block__radio__choice label span{
  transform: translateY(-1px);
}
/* .c-form__content__module__block__checkbox__choice label:hover, */
.c-form__content__module__block__checkbox__choice input[type=checkbox]:checked + label,
/* .c-form__content__module__block__radio__choice label:hover, */
.c-form__content__module__block__radio__choice input[type=radio]:checked + label {
  background-color: var(--color-main2);
  color: var(--color-white);
}
.c-form__content__module__block__checkbox .notes,
.c-form__content__module__block__radio .notes{
  font-size: 11px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__checkbox .notes,
  .c-form__content__module__block__radio .notes{
    font-size: calc(11 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__checkbox .notes,
  .c-form__content__module__block__radio .notes{
    font-size: calc(11 / 375 * 100vw);
  }
}
.c-form__content__module__block__input input[type=text].parsley-error,
.c-form__content__module__block__input input[type=tel].parsley-error,
.c-form__content__module__block__select.parsley-error {
  background-color: rgba(255, 0, 0, 0.15);
  border: 2px solid red;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__input input[type=text].parsley-error,
  .c-form__content__module__block__input input[type=tel].parsley-error,
  .c-form__content__module__block__select.parsley-error {
    border: calc(2 / 1440 * 100vw) solid red;
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__input input[type=text].parsley-error,
  .c-form__content__module__block__input input[type=tel].parsley-error,
  .c-form__content__module__block__select.parsley-error {
    border: calc(2 / 375 * 100vw) solid red;
  }
}
.c-form__content__module__block__input input[type=text],
.c-form__content__module__block__input input[type=tel],
.c-form__content__module__block__select  select{
  border: 1px solid var(--color-main2);
  width: 100%;
  height: 58px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 5px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__input input[type=text],
  .c-form__content__module__block__input input[type=tel],
  .c-form__content__module__block__select  select{
    font-size: calc(14 / 1440 * 100vw);
    height: calc(58 / 1440 * 100vw);
    padding: 0 calc(20 / 1440 * 100vw);
    border-radius: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__input input[type=text],
  .c-form__content__module__block__input input[type=tel],
  .c-form__content__module__block__select select{
    font-size: calc(16 / 375 * 100vw);
    height: calc(58 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
  }
}
.c-form__content__module__block__input input[type=text]::-moz-placeholder,
.c-form__content__module__block__input input[type=tel]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.c-form__content__module__block__input input[type=text]:-ms-input-placeholder,
.c-form__content__module__block__input input[type=tel]:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.c-form__content__module__block__input input[type=text]::placeholder,
.c-form__content__module__block__input input[type=tel]::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.c-form__content__module__block__select select:invalid {
  color: rgba(0, 0, 0, 0.3);
}
.c-form__content__module__block__select  select{
  background-image: url(../images/form_icon_select.svg);
  background-position: right 11px center;
  background-repeat: no-repeat;
  background-size: 14px 7px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__select  select{
    background-position: right calc(17 / 1440 * 100vw) center;
    background-size: calc(14 / 1440 * 100vw) calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__select  select{
    background-position: right calc(17 / 375 * 100vw) center;
    background-size: calc(14 / 375 * 100vw) calc(7 / 375 * 100vw);
  }
}
.c-form__content__module__block + .c-form__content__module__block {
  margin-top: 18px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block + .c-form__content__module__block {
    margin-top: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block + .c-form__content__module__block {
    margin-top: calc(18 / 375 * 100vw);
  }
}
.c-form__content__module__block__agree__checkbox{
  text-align: center;
}
.c-form__content__module__block__agree__checkbox input[type=checkbox] {
  display: none;
}
.c-form__content__module__block__agree__checkbox label{
  font-size: 12px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__agree__checkbox label{
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__agree__checkbox label{
    font-size: calc(12 / 375 * 100vw);
  }
}
.c-form__content__module__block__agree__checkbox label::before {
  background-image: url(../images/form_icon_agree.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 12px;
  width: 12px;
  transform: translate(9px, 3px);
  margin-right: 17px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__block__agree__checkbox label::before {
    height: calc(12 / 1440 * 100vw);
    width: calc(12 / 1440 * 100vw);
    transform: translate(calc(9 / 1440 * 100vw), calc(3 / 1440 * 100vw));
    margin-right: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__block__agree__checkbox label::before {
    height: calc(12 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
    transform: translate(calc(9 / 375 * 100vw), calc(3 / 375 * 100vw));
    margin-right: calc(17 / 375 * 100vw);
  }
}
.c-form__content__module__block__agree__checkbox input[type=checkbox]:checked + label::before {
  background-image: url(../images/form_icon_agree_checked.svg);
}
.c-form__content__module__block__agree__checkbox label a{
  color: var(--color-main);
  text-decoration: underline;
}
[id^="error-parsley--step"] {
  color: red;
  font-size: 10px;
  margin-top: 10px;
}
#error-parsley--step8-3{
  text-align: center;
}
@media screen and (max-width: 1439px) {
  [id^="error-parsley--step"]  {
    font-size: calc(10 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  [id^="error-parsley--step"] {
    font-size: calc(10 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.c-form__content__module__buttonBox {
  align-items: center;
  display: flex;
  justify-content: space-between;
  transform: translateX(4px);
  flex-direction: column-reverse;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox {
    transform: translateX(calc(4 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox {
    transform: translateX(calc(4 / 375 * 100vw));
  }
}
.c-form__content__module__buttonBox__back {
  cursor: pointer;
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox__back {
    font-size: calc(12 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox__back {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.c-form__content__module__buttonBox__back::before{
  background-image: url(../images/icon_arrow_back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 8px;
  transform: translateX(-14px) translateY(11px);
  width: 5px;
  background-position: center center;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox__back::before{
    height: calc(8 / 1440 * 100vw);
    width: calc(5 / 1440 * 100vw);
    transform: translateX(-0.972vw) translateY(0.764vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox__back::before{
    height: calc(8 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
    transform: translateX(-3.733vw) translateY(2.667vw);
  }
}
.c-form__content__module__buttonBox__button {
  position: relative;
  width: 186px;
  height: 46px;
  margin-top: 4px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox__button {
    width: calc(186 / 1440 * 100vw);
    height: calc(46 / 1440 * 100vw);
    margin-top: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox__button {
    width: calc(186 / 375 * 100vw);
    height: calc(46 / 375 * 100vw);
    margin-top: calc(4 / 375 * 100vw);
  }
}
.c-form__content__module__buttonBox__button::before {
  background-image: url(../images/submit_icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 11px;
  margin: auto 0;
  position: absolute;
  right: 12px;
  top: 0;
  width: 8px;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox__button::before {
    height: calc(11 / 1440 * 100vw);
    right: calc(12 / 1440 * 100vw);
    width: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox__button::before {
    height: calc(9 / 375 * 100vw);
    right: calc(13 / 375 * 100vw);
    width: calc(7 / 375 * 100vw);
  }
}
.c-form__content__module__buttonBox__button input[type=submit] {
  align-items: center;
  background: var(--gradient-main);
  border-radius: 30px;
  background-color: var(--color-main);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox__button input[type=submit] {
    border-radius: calc(30 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox__button input[type=submit] {
    border-radius: calc(30 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
.c-form__content__module__buttonBox__button--send{
  margin-top: 18px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__module__buttonBox__button--send{
    margin-top: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__module__buttonBox__button--send{
    margin-top: calc(18 / 375 * 100vw);
  }
}
header{
  height: 90px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  header {
    height: calc(90 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  header {
    height: calc(88 / 375 * 100vw);
  }
}
.p-header{
  height: 100%;
}
.p-header .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  background-color: var(--color-white);
}
@media screen and (max-width: 1439px) {
  .p-header__inner {
    padding: 0 calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    height: calc(56 / 375 * 100vw);
    padding: 0 calc(14 / 375 * 100vw) 0 calc(15 / 375 * 100vw);
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner--sp{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    background-color: var(--color-main);
    color: var(--color-white);
  }
}
.p-header__logoBox{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-header__logo {
  width: 229px;
}
.p-header__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-header__logo {
    width: calc(229 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: calc(138 / 375 * 100vw);
  }
}
.p-header__text {
  font-size: 20px;
  font-weight: 700;
  margin-left: 29px;
  transform: translateY(4px);
}
@media screen and (max-width: 1439px) {
  .p-header__text {
    font-size: calc(20 / 1440 * 100vw);
    margin-left: calc(29 / 1440 * 100vw);
    transform: translateY(calc(4 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-header__text {
    font-size: calc(12 / 375 * 100vw);
    transform: translateY(0);
  }
}
.p-header__button{
  align-items: center;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: 40px;
  box-shadow: 0 0 8px rgba(51, 51, 51, 0.1);
  color: var(--color-main);
  display: flex;
  justify-content: center;
  width: 305px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-header__button{
    border-radius: calc(40 / 1440 * 100vw);
    box-shadow: 0 0 calc(8 / 1440 * 100vw) rgba(51, 51, 51, 0.1);
    width: calc(305 / 1440 * 100vw);
    height: calc(60 / 1440 * 100vw);
    font-size: calc(20 / 1440 * 100vw);

  }
}
@media screen and (max-width: 767px) {
  .p-header__button {
    border-radius: calc(40 / 375 * 100vw);
    box-shadow: 0 0 calc(8 / 375 * 100vw) rgba(51, 51, 51, 0.1);
    width: calc(194 / 375 * 100vw);
    height: calc(41 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-header__button::after {
  background-image: url(../images/button_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  margin: auto 0;
  position: absolute;
  right: 18px;
  top: 0;
}
@media screen and (max-width: 1439px) {
  .p-header__button::after {
    width: calc(5 / 1440 * 100vw);
    height: calc(12 / 1440 * 100vw);
    right: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__button::after {
    width: calc(4 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
    right: calc(12 / 375 * 100vw);
  }
}
.p-header__button p{
  transform: translate(-3px, -1px);
}
@media screen and (max-width: 1439px) {
  .p-header__button p{
    transform: translate(calc(-3 / 1440 * 100vw), calc(-1 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-header__button p{
    transform: translate(calc(-3 / 375 * 100vw), calc(-1 / 375 * 100vw));
  }
}
#thanks header {
  position: static;
}
.p-footer .l-container {
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  justify-content: center;
}
.p-footer__inner{
  width: 100%;
}
.p-footer__nav{
  background-color: var(--color-bg);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .p-footer__nav{
    height: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav{
    height: calc(40 / 375 * 100vw);
  }
}
.p-footer__nav > ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-footer__nav > ul > li + li {
  margin-left: 45px;
}
@media screen and (max-width: 1439px) {
  .p-footer__nav > ul > li + li {
    margin-left: calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav > ul > li + li {
    margin-left: calc(20 / 375 * 100vw);
  }
}
.p-footer__nav a {
  color: var(--color-main);
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (max-width: 1439px) {
  .p-footer__nav a {
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav a {
    font-size: calc(12 / 375 * 100vw);
  }
}
.p-footer__copyright {
  background-color: var(--color-main);
  color: var(--color-white);
  /* font-size: 10px; */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .p-footer__copyright {
    height: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    height: calc(28 / 375 * 100vw);
  }
}

.p-mainVisual__content {
  background-image: url(../images/mainvisual_bg.jpg);
  background-position: center;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 792px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content {
    height: calc(792 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content {
    background-image: url(../images/mainvisual_bg_sp.jpg);
    height: calc(609 / 375 * 100vw);
  }
}
.p-mainVisual__content .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 1440px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content .l-container {
    width: calc(1440 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content .l-container {
    display: none;
  }
}
.p-mainVisual__content__inner {
  padding-left: 40px;
  padding-top: 142px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__inner {
    padding-left: calc(40 / 1440 * 100vw);
    padding-top: calc(142 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__inner {
    padding-left: calc(66 / 375 * 100vw);
    padding-top: calc(107 / 375 * 100vw);
  }
}
.p-mainVisual__content__textBox {
  background-image: url(../images/mainvisual_text.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 642px;
  height: 306px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__textBox {
    width: calc(642 / 1440 * 100vw);
    height: calc(306 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__textBox {
    width: calc(642 / 375 * 100vw);
    height: calc(306 / 375 * 100vw);
  }
}
.p-mainVisual__content__pointBox{
  display: flex;
  margin-top: 66px;
  margin-left: 15px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__pointBox{
    margin-top: calc(65 / 1440 * 100vw);
    margin-left: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__pointBox{
    margin-top: calc(65 / 375 * 100vw);
    margin-left: calc(15 / 375 * 100vw);
  }
}
.p-mainVisual__content__point{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 255px;
  height: 247px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-left: -3px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__point{
    width: calc(255 / 1440 * 100vw);
    height: calc(247 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    margin-left: calc(-3 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__point{
    width: calc(116 / 375 * 100vw);
    height: calc(102 / 375 * 100vw);
  }
}
.p-mainVisual__content__point:first-child {
  background-image: url(../images/mainvisual_point_bg1.svg);

}
.p-mainVisual__content__point:nth-child(2) {
  background-image: url(../images/mainvisual_point_bg2.svg);

}
.p-mainVisual__content__point:nth-child(3) {
  background-image: url(../images/mainvisual_point_bg3.svg);

}
.p-mainVisual__content__point .em{
  color: var(--color-main);
  font-size: 21px;
  line-height: 43px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__point .em{
    font-size: calc(21 / 1440 * 100vw);
    line-height: calc(43 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__point .em{
    font-size: calc(21 / 375 * 100vw);
    line-height: calc(43 / 375 * 100vw);
  }
}
.p-mainVisual__content__pointText{
  display: inline-block;
  padding-top: 133px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__pointText{
    padding-top: calc(133 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__pointText{
    padding-top: calc(133 / 375 * 100vw);
  }
}
.p-mainVisual__content__pointText--2{
  padding-top: 148px;
  line-height: 10px;
}
.p-mainVisual__content__pointText--2 .em{
  color: var(--color-main);
  font-size: 18px;
}
.p-mainVisual__content__pointText--2 .emNum{
  color: var(--color-main);
  font-size: 29px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__pointText--2{
    padding-top: calc(148 / 1440 * 100vw);
    line-height: calc(10 / 1440 * 100vw);
  }
  .p-mainVisual__content__pointText--2 .em{
    font-size: calc(18 / 1440 * 100vw);
  }
  .p-mainVisual__content__pointText--2 .emNum{
    font-size: calc(29 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__pointText--2{
    padding-top: calc(148 / 375 * 100vw);
    line-height: calc(10 / 375 * 100vw);
  }
  .p-mainVisual__content__pointText--2 .em{
    font-size: calc(18 / 375 * 100vw);
  }
  .p-mainVisual__content__pointText--2 .emNum{
    font-size: calc(29 / 375 * 100vw);
  }
}
.p-mainVisual__formBox {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__formBox {
    position: static;
  }
}
.p-mainVisual__formBox .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 1440px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__formBox .l-container {
    width: calc(1440 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__formBox .l-container {
    width: 88%;
    padding-bottom: calc(7 / 375 * 100vw);
  }
}
.p-mainVisual__formBox__inner {
  padding-right: 62px;
  padding-top: 228px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__formBox__inner {
    padding-right: calc(62 / 1440 * 100vw);
    padding-top: calc(228 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__formBox__inner {
    padding-right: calc(0 / 375 * 100vw);
    padding-top: calc(0 / 375 * 100vw);
  }
}
.p-mainVisual__formBox__form {
  margin-left: auto;
  width: 330px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__formBox__form {
    width: calc(330 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__formBox__form {
    width: calc(330 / 375 * 100vw);
    margin: 0 auto;
    margin-top: calc(-32 / 375 * 100vw);
  }
}
.p-form__inner {
  padding-bottom: 70px;
  padding-top: 80px;
}
@media screen and (max-width: 1439px) {
  .p-form__inner {
    padding-bottom: calc(70 / 1440 * 100vw);
    padding-top: calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-form__title {
  background-image: url(../images/form_title.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 43px;
  margin: 0 auto 20px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 310px;
}
@media screen and (max-width: 1439px) {
  .p-form__title {
    height: calc(43 / 1440 * 100vw);
    margin: 0 auto calc(20 / 1440 * 100vw);
    width: calc(310 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__title {
    height: calc(31 / 375 * 100vw);
    margin: 0 auto calc(13 / 375 * 100vw);
    width: calc(222 / 375 * 100vw);
  }
}
.p-service {
  background-color: var(--color-bg2);
}
@media screen and (max-width: 767px) {
  .p-service {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-service .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-service__inner {
  padding: 71px 0 69px 0;
}
@media screen and (max-width: 1439px) {
  .p-service__inner {
    padding: calc(71 / 1440 * 100vw) 0 calc(69 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding: calc(45 / 375 * 100vw) 0 calc(49 / 375 * 100vw) 0;
  }
}
.p-service__title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 86px;
  text-align: center;
  transform: translateX(-8px);
}
@media screen and (max-width: 1439px) {
  .p-service__title {
    font-size: calc(35 / 1440 * 100vw);
    margin-bottom: calc(86 / 1440 * 100vw);
    transform: translateX(calc(-8 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: calc(25 / 375 * 100vw);
    margin-bottom: calc(35 / 375 * 100vw);
    transform: translateX(0);
  }
}
.p-service__title .em{
  color: var(--color-main);
  font-size: 40px;
}
.p-service__title .emNum{
  color: var(--color-main);
  font-size: 53px;
}
@media screen and (max-width: 1439px) {
  .p-service__title .em{
    font-size: calc(40 / 1440 * 100vw);
  }
  .p-service__title .emNum{
    font-size: calc(53 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__title .em{
    font-size: calc(30 / 375 * 100vw);
  }
  .p-service__title .emNum{
    font-size: calc(38 / 375 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .p-service__serviceList {
    display: none;
  }
}
.p-service__serviceList > ul {
  display: flex;
  justify-content: space-between;
}
.p-service__serviceList > ul > li {
  width: 320px;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList > ul > li {
    width: calc(320 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList > ul > li {
    width: calc(320 / 375 * 100vw);
  }
}
.p-service__swiper {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service__swiper {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-service__swiper .c-service {
    margin: 0 auto;
    width: calc(320 / 375 * 100vw);
  }
}

.p-thanks .l-container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.p-thanks__titleBox {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 102px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1439px) {
  .p-thanks__titleBox {
    margin-top: calc(102 / 1440 * 100vw);
    margin-bottom: calc(70 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__titleBox {
    margin-top: calc(41 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
}
.p-thanks__titleBox__title {
  text-align: center;
  width: 558px;
  height: 42px;
}
@media screen and (max-width: 1439px) {
  .p-thanks__titleBox__title {
    width: calc(558 / 1440 * 100vw);
    height: calc(42 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__titleBox__title {
    width: calc(310 / 375 * 100vw);
    height: calc(23 / 375 * 100vw);
  }
}
.p-thanks__content__textBox{
  align-items: center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 860px;
  background-color: #fdf2f6;
}
@media screen and (max-width: 1439px) {
  .p-thanks__content__textBox{
    border-radius: calc(20 / 1440 * 100vw);
    width: calc(860 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__content__textBox{
    border-radius: calc(10 / 375 * 100vw);
    width: calc(330 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.p-thanks__content__title{
  font-size: 35px;
  font-weight: 700;
  color: var(--color-main);
  padding-top: 48px;
}
@media screen and (max-width: 1439px) {
  .p-thanks__content__title{
    font-size: calc(35 / 1440 * 100vw);
    padding-top: calc(48 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__content__title{
    font-size: calc(25 / 375 * 100vw);
    padding-top: calc(48 / 375 * 100vw);
  }
}
.p-thanks__content__text {
  font-size: 22px;
  font-weight: bold;
  line-height: 40px;
  margin-top: 31px;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-thanks__content__text {
    font-size: calc(22 / 1440 * 100vw);
    line-height: calc(40 / 1440 * 100vw);
    margin-top: calc(31 / 1440 * 100vw);
    margin-bottom: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__content__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
    margin-top: calc(85 / 1440 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
}
.p-thanks__content__textBox__notice{
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
  text-align: center;
}
.p-thanks__content__notice{
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-thanks__content__notice{
    font-size: calc(15 / 1440 * 100vw);
    line-height: calc(30 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__content__notice{
    font-size: calc(15 / 375 * 100vw);
    font-weight: 400;
    line-height: calc(30 / 375 * 100vw);
    margin-bottom: calc(22 / 375 * 100vw);
    text-align: left;
  }
}
.p-thanks__content__mail{
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 58px;
}
@media screen and (max-width: 1439px) {
  .p-thanks__content__mail{
    font-size: calc(22 / 1440 * 100vw);
    margin-bottom: calc(58 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__content__mail{
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(53 / 375 * 100vw);
  }
}
.p-thanks__content__comment{
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-top: 59px;
  margin-bottom: 92px;
}
@media screen and (max-width: 1439px) {
  .p-thanks__content__comment{
    font-size: calc(20 / 1440 * 100vw);
    line-height: calc(40 / 1440 * 100vw);
    margin-top: calc(59 / 1440 * 100vw);
    margin-bottom: calc(92 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__content__comment{
    font-size: calc(15 / 375 * 100vw);
    font-weight: 400;
    line-height: calc(30 / 375 * 100vw);
    margin-top: calc(42 / 375 * 100vw);
    margin-bottom: calc(64 / 375 * 100vw);
  }
}
.popup .lity{
  background: rgba(0, 0, 0, 0.18) !important;
}
#popupContent {
  display: none;
}
html.show-popup-content #popupContent {
  display: block;
}
#popupContent .c-lityPopup-image {
  width: 730px;
  height: 760px;
  background-image: url("../images/popup.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1440px) {
  #popupContent .c-lityPopup-image {
    width: calc(680 / 1440 * 100vw);
    height: calc(710 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #popupContent .c-lityPopup-image {
    background-image: url("../images/popup_sp.png");
    width: calc(340 / 375 * 100vw);
    height: calc(664 / 375 * 100vw);
  }
}
.c-lityPopup-container{
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-lityPopup-container{
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.c-lityPopup-close-btn{
  position: absolute;
  top: 39px;
  right: 13px;
  width: 40px;
  height: 40px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .c-lityPopup-close-btn{
    top: calc(43 / 1440 * 100vw);
    right: calc(41 / 1440 * 100vw);
    width: calc(40 / 1440 * 100vw);
    height: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPopup-close-btn{
    top: calc(41 / 375 * 100vw);
    right: calc(26 / 375 * 100vw);
    width: calc(25 / 375 * 100vw);
    height: calc(25 / 375 * 100vw);
  }
}
.c-lityPopup-line-btn img{
  position: absolute;
  top: 615px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  cursor: pointer;
  display: block;
  width: 350px;
}
@media screen and (max-width: 1440px) {
  .c-lityPopup-line-btn img{
    top: calc(575 / 1440 * 100vw);
    width: calc(332 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPopup-line-btn img{
    top: calc(540 / 375 * 100vw);
    width: calc(310 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy,
.c-lityCompany {
  background-color: var(--color-white);
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(48, 56, 65, 0.15);
          box-shadow: 0px 0px 10px rgba(48, 56, 65, 0.15);
  height: 700px;
  overflow: scroll;
  padding: 40px;
  position: relative;
  width: 730px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  overflow: auto;
}

@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy,
  .c-lityCompany {
    border-radius: 0.6944444444vw;
    -webkit-box-shadow: 0vw 0vw 0.6944444444vw rgba(48, 56, 65, 0.15);
            box-shadow: 0vw 0vw 0.6944444444vw rgba(48, 56, 65, 0.15);
    height: 48.6111111111vw;
    padding: 2.7777777778vw;
    width: 50.6944444444vw;
    font-size: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy,
  .c-lityCompany {
    border-radius: 2.6666666667vw;
    -webkit-box-shadow: 0vw 0vw 2.6666666667vw rgba(48, 56, 65, 0.15);
            box-shadow: 0vw 0vw 2.6666666667vw rgba(48, 56, 65, 0.15);
    height: 92dvh;
    padding: 5.3333333333vw;
    width: 85vw;
    font-size: calc(13 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy__title,
.c-lityCompany__title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__title,
  .c-lityCompany__title {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__title,
  .c-lityCompany__title {
    margin-bottom: 5.3333333333vw;
  }
}
.c-lityPrivacyPolicy p {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy p {
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy p {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy span {
  font-weight: 700;
}

.c-lityPrivacyPolicy__close {
  position: fixed;
  right: 20px;
  top: 20px;
}

@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__close {
    right: 1.3888888889vw;
    top: 1.3888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__close {
    display: none;
  }
}
.c-lityPrivacyPolicy__close button {
  background: url(../images/icon_close.svg) !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  display: block !important;
  height: 17px;
  width: 17px;
}

@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__close button {
    height: 1.1805555556vw;
    width: 1.1805555556vw;
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__close button {
    height: 3.2vw;
    width: 3.2vw;
  }
}
.c-lityPrivacyPolicy__close button:hover {
  display: block !important;
}
.c-lityPrivacyPolicy__content{
  font-size: 14px;
}
@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__content{
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__content{
    font-size: calc(13 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy__content--subheading{
  display: block;
  padding-left: 12px;
  border-left: 3px solid var(--color-black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__content--subheading{
    padding-left: calc(12 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
    font-size: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__content--subheading{
    padding-left:calc(12 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy__content--detail{
  padding-left: 6px;
}
@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__content--detail{
    padding-left: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__content--detail{
    padding-left: calc(6 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy__content--notes{
  padding-left: 20px;
}
@media screen and (max-width: 1439px) {
  .c-lityPrivacyPolicy__content--notes{
    padding-left: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityPrivacyPolicy__content--notes{
    padding-left: calc(20 / 375 * 100vw);
  }
}
.c-lityPrivacyPolicy__content a,
.c-lityCompany__content a{
  color: var(--color-main);
  text-decoration: underline;
}
.c-lityCompany__content table{
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  border-top: 1px solid #ccc;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #ccc;
  background: #FFF;
  margin-bottom: 15px;
  width: 100%;
}
.c-lityCompany__content table th{
  background-color: #f5f5f5;
  width: 25%;
}
.c-lityCompany__content table th,
.c-lityCompany__content table td{
  font-size: 14px;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
  padding: 8px;
  vertical-align: top;
}
@media screen and (max-width: 1439px) {
  .c-lityCompany__content table{
    margin-bottom: calc(15 / 1440 * 100vw);
  }
  .c-lityCompany__content table th,
  .c-lityCompany__content table td{
    font-size: calc(14 / 1440 * 100vw);
    padding: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-lityCompany__content table{
    margin-bottom: calc(15 / 375 * 100vw);
  }
  .c-lityCompany__content table th,
  .c-lityCompany__content table td{
    font-size: calc(13 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw);
  }
}