:root {
  --color-white: #ffffff;
  --color-black: #333333;
  --color-main: #2DAFCB;
  --color-bg: #EEF9FB;
}

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: 44px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .swiper-container {
    padding-bottom: calc(44 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container {
    padding-bottom: calc(44 / 375 * 100vw);
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: block;
  height: auto;
  margin-top: 0;
  top: 222px;
  width: auto;
  z-index: 2;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev,
.swiper-button-next {
    top: calc(222 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
.swiper-button-next {
    top: calc(222 / 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;
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev:after,
.swiper-button-next:after {
    height: calc(30 / 1440 * 100vw);
    width: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
.swiper-button-next:after {
    height: calc(30 / 375 * 100vw);
    width: calc(30 / 375 * 100vw);
  }
}

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

@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: calc(15 / 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-horizontal > .swiper-pagination-bullets,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #edebe6;
  border: 1px solid #edebe6;
  height: 14px;
  margin: 0 5px;
  opacity: 1;
  width: 14px;
}
@media screen and (max-width: 1439px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(14 / 1440 * 100vw);
    margin: 0 calc(5 / 1440 * 100vw);
    width: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(14 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--color-black);
  border: 1px solid var(--color-black);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1439px) {
      transform: translateY(calc(10 / 1440 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1439px) {
      transform: translateY(calc(10 / 1440 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.lity-hide {
  display: none !important;
}

.lity-close,
.lity-close:hover {
  display: none !important;
}

/* 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+ */
}
/* noto-sans-jp-900 - 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: 900;
  src: url("../fonts/noto-sans-jp-v55-japanese_latin-900.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* albert-sans-regular - 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: "Albert Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/albert-sans-v4-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* albert-sans-500 - 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: "Albert Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/albert-sans-v4-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* albert-sans-700 - 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: "Albert Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/albert-sans-v4-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.l-container {
  margin: 0 auto;
  padding-left: 190px;
  padding-right: 190px;
  width: 1440px;
}
@media screen and (max-width: 1439px) {
  .l-container {
    padding-left: calc(190 / 1440 * 100vw);
    padding-right: calc(190 / 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-form {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.1);
  width: 330px;
}
@media screen and (max-width: 1439px) {
  .c-form {
    border-radius: calc(10 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(10 / 1440 * 100vw) rgba(51, 51, 51, 0.1);
    width: calc(330 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form {
    border-radius: calc(10 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(10 / 375 * 100vw) rgba(51, 51, 51, 0.1);
    width: calc(330 / 375 * 100vw);
  }
}
.c-form__titleBox {
  align-items: center;
  background: linear-gradient(to right, #2dafcb 0%, #80c8ef 99.97%);
  border-radius: 10px 10px 0 0;
  display: flex;
  height: 58px;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .c-form__titleBox {
    border-radius: calc(10 / 1440 * 100vw) calc(10 / 1440 * 100vw) 0 0;
    height: calc(58 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox {
    border-radius: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) 0 0;
    height: calc(58 / 375 * 100vw);
  }
}
.c-form__titleBox__title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .c-form__titleBox__title {
    font-size: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox__title {
    font-size: calc(20 / 375 * 100vw);
  }
}
.c-form__content {
  padding: 25px 30px 30px;
}
@media screen and (max-width: 1439px) {
  .c-form__content {
    padding: calc(25 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content {
    padding: calc(25 / 375 * 100vw) calc(30 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
}
.c-form__content__stepList {
  margin-bottom: 25px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList {
    margin-bottom: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList {
    margin-bottom: calc(25 / 375 * 100vw);
  }
}
.c-form__content__stepList > ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.c-form__content__stepList > ul > li {
  align-items: center;
  background-color: var(--color-bg);
  border-radius: 20px;
  color: var(--color-main);
  display: flex;
  font-family: "Albert Sans";
  font-size: 12px;
  font-weight: 500;
  height: 20px;
  justify-content: center;
  width: 48px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList > ul > li {
    border-radius: calc(20 / 1440 * 100vw);
    font-size: calc(12 / 1440 * 100vw);
    height: calc(20 / 1440 * 100vw);
    width: calc(48 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList > ul > li {
    border-radius: calc(20 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
    width: calc(48 / 375 * 100vw);
  }
}
.c-form__content__stepList > ul > li + li {
  margin-left: 7px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__stepList > ul > li + li {
    margin-left: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__stepList > ul > li + li {
    margin-left: calc(7 / 375 * 100vw);
  }
}
.c-form__content__stepList > ul > li.is-current {
  background-color: var(--color-main);
  color: var(--color-white);
}
.c-form__content__form__block__titleBox {
  margin-bottom: 15px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__titleBox {
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__titleBox {
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.c-form__content__form__block__titleBox__title {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__titleBox__title {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__titleBox__title {
    font-size: calc(16 / 375 * 100vw);
  }
}
.c-form__content__form__block__radio {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__radio {
    display: block;
  }
}
.c-form__content__form__block__radio__choice {
  width: 100%;
}
.c-form__content__form__block__radio__choice input {
  display: none;
}
.c-form__content__form__block__radio__choice input:checked + label {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: var(--color-white);
}
.c-form__content__form__block__radio__choice label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  align-items: center;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: bold;
  height: 55px;
  justify-content: center;
          user-select: none;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__radio__choice label {
    border-radius: calc(5 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    height: calc(55 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__radio__choice label {
    border-radius: calc(5 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    height: calc(55 / 375 * 100vw);
  }
}
.c-form__content__form__block__radio__choice + .c-form__content__form__block__radio__choice {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__radio__choice + .c-form__content__form__block__radio__choice {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__radio__choice + .c-form__content__form__block__radio__choice {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.c-form__content__form__block__input input[type=text] {
  border: 1px solid var(--color-main);
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  height: 55px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__input input[type=text] {
    border-radius: calc(5 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    height: calc(55 / 1440 * 100vw);
    padding: 0 calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__input input[type=text] {
    border-radius: calc(5 / 375 * 100vw);
    font-size: 16px;
    height: calc(55 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.c-form__content__form__block__input input[type=text]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.c-form__content__form__block__input input[type=text]:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.c-form__content__form__block__input input[type=text]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.c-form__content__form__block__date input[type=date] {
  border: 1px solid var(--color-main);
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  height: 55px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__date input[type=date] {
    border-radius: calc(5 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    height: calc(55 / 1440 * 100vw);
    padding: 0 calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__date input[type=date] {
    border-radius: calc(5 / 375 * 100vw);
    font-size: 16px;
    height: calc(55 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.c-form__content__form__block__date input[type=date]::-webkit-calendar-picker-indicator {
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
}
.c-form__content__form__block__date input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.c-form__content__form__block__date input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}
.c-form__content__form__block__date input[type=date]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.c-form__content__form__block__date input[type=date]:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.c-form__content__form__block__date input[type=date]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.c-form__content__form__block__select select {
  background-color: var(--color-white);
  background-image: url(../images/icon_arrow_select.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 10px 5px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  height: 55px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block__select select {
    background-position: right calc(15 / 1440 * 100vw) center;
    background-size: calc(10 / 1440 * 100vw) calc(5 / 1440 * 100vw);
    border-radius: calc(5 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    height: calc(55 / 1440 * 100vw);
    padding: 0 calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block__select select {
    background-position: right calc(15 / 375 * 100vw) center;
    background-size: calc(10 / 375 * 100vw) calc(5 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
    font-size: 16px;
    height: calc(55 / 375 * 100vw);
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.c-form__content__form__block .parsley-errors-list {
  color: var(--color-main);
  font-size: 11px;
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block .parsley-errors-list {
    font-size: calc(11 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block .parsley-errors-list {
    font-size: calc(11 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.c-form__content__form__block + .c-form__content__form__block {
  margin-top: 25px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__block + .c-form__content__form__block {
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__block + .c-form__content__form__block {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.c-form__content__form__buttonBox {
  margin-top: 25px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__buttonBox {
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__buttonBox {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.c-form__content__form__buttonBox__button {
  text-align: center;
}
.c-form__content__form__buttonBox__button button {
  background: linear-gradient(to right, #2dafcb 0%, #80c8ef 99.97%);
  border-radius: 40px;
  color: var(--color-white);
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  height: 45px;
  margin: 0 auto;
  position: relative;
  width: 193px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__buttonBox__button button {
    border-radius: calc(40 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
    height: calc(45 / 1440 * 100vw);
    width: calc(193 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__buttonBox__button button {
    border-radius: calc(40 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    height: calc(45 / 375 * 100vw);
    width: calc(193 / 375 * 100vw);
  }
}
.c-form__content__form__buttonBox__button button::after {
  -webkit-mask-image: url(../images/icon_arrow_button.svg);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: var(--color-white);
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  margin: auto 0;
          mask-image: url(../images/icon_arrow_button.svg);
          mask-position: center center;
          mask-repeat: no-repeat;
          mask-size: contain;
  position: absolute;
  right: 20px;
  top: 0;
  width: 5px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__buttonBox__button button::after {
    height: calc(8 / 1440 * 100vw);
    right: calc(20 / 1440 * 100vw);
    width: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__buttonBox__button button::after {
    height: calc(8 / 375 * 100vw);
    right: calc(20 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
  }
}
.c-form__content__form__buttonBox__back {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__buttonBox__back {
    font-size: calc(12 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__buttonBox__back {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}
.c-form__content__form__buttonBox__back::before {
  -webkit-mask-image: url(../images/icon_arrow_button.svg);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: var(--color-black);
  content: "";
  display: block;
  height: 8px;
  margin-right: 10px;
          mask-image: url(../images/icon_arrow_button.svg);
          mask-position: center center;
          mask-repeat: no-repeat;
          mask-size: contain;
  transform: rotate(180deg);
  width: 5px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__buttonBox__back::before {
    height: calc(8 / 1440 * 100vw);
    margin-right: calc(10 / 1440 * 100vw);
    width: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__buttonBox__back::before {
    height: calc(8 / 375 * 100vw);
    margin-right: calc(10 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
  }
}
.c-form__content__form__agree {
  margin-top: 25px;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__agree {
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__agree {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.c-form__content__form__agree__text {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .c-form__content__form__agree__text {
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__form__agree__text {
    font-size: calc(12 / 375 * 100vw);
  }
}
.c-form__content__form__agree__text a {
  color: var(--color-main);
  text-decoration: underline;
}

.p-header {
  height: 94px;
}
@media screen and (max-width: 1439px) {
  .p-header {
    height: calc(94 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: calc(54 / 375 * 100vw);
  }
}
.p-header .l-container {
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1439px) {
  .p-header .l-container {
    padding-left: calc(30 / 1440 * 100vw);
    padding-right: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header .l-container {
    padding-left: calc(15 / 375 * 100vw);
    padding-right: calc(15 / 375 * 100vw);
  }
}
.p-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
}
.p-header__logo {
  width: 129px;
}
.p-header__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-header__logo {
    width: calc(129 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: calc(78 / 375 * 100vw);
  }
}

#index .p-header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-mainVisual {
  background-image: url(../images/mainvisual.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: calc(100dvh - 80px);
  min-height: 780px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual {
    height: calc(100dvh - (80 / 1440 * 100vw));
    min-height: calc(780 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    background-image: none;
    height: auto;
    min-height: 0;
  }
}
.p-mainVisual .l-container {
  height: 100%;
  padding-left: 76px;
  padding-right: 64px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual .l-container {
    font-size: calc(76 / 1440 * 100vw);
    line-height: calc(64 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual .l-container {
    padding-left: calc(0 / 375 * 100vw);
    padding-right: calc(0 / 375 * 100vw);
  }
}
.p-mainVisual__inner {
  align-items: center;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner {
    display: block;
  }
}
.p-mainVisual__content {
  background-image: url(../images/mainvisual_title_1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 596px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 634px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content {
    height: calc(596 / 1440 * 100vw);
    width: calc(634 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content {
    background-image: url(../images/mainvisual_sp_1.png);
    height: calc(715 / 375 * 100vw);
    width: 100%;
  }
}
.p-mainVisual__form {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__form {
    background-color: var(--color-bg);
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__form .c-form {
    margin: 0 auto;
    transform: translateY(calc(-50 / 375 * 100vw));
  }
}

.p-footer {
  height: 50px;
}
@media screen and (max-width: 1439px) {
  .p-footer {
    height: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: calc(40 / 375 * 100vw);
  }
}
.p-footer .l-container {
  height: 100%;
}
.p-footer__inner {
  height: 100%;
}
.p-footer__nav {
  height: 100%;
}
.p-footer__nav > ul {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footer__nav > ul > li + li {
  margin-left: 40px;
}
@media screen and (max-width: 1439px) {
  .p-footer__nav > ul > li + li {
    margin-left: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav > ul > li + li {
    margin-left: calc(15 / 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-copyright {
  background: linear-gradient(to right, #2dafcb 0%, #80c8ef 99.97%);
  height: 30px;
}
@media screen and (max-width: 1439px) {
  .p-copyright {
    height: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-copyright {
    height: calc(28 / 375 * 100vw);
  }
}
.p-copyright .l-container {
  height: 100%;
}
.p-copyright__inner {
  height: 100%;
}
.p-copyright__text {
  align-items: center;
  color: var(--color-white);
  display: flex;
  font-size: 10px;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1439px) {
  .p-copyright__text {
    font-size: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-copyright__text {
    font-size: calc(10 / 375 * 100vw);
  }
}

.p-step__inner {
  padding-bottom: 70px;
  padding-top: 70px;
}
@media screen and (max-width: 1439px) {
  .p-step__inner {
    padding-bottom: calc(70 / 1440 * 100vw);
    padding-top: calc(70 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-step__title {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-step__title {
    font-size: calc(35 / 1440 * 100vw);
    margin-bottom: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__title {
    font-size: calc(35 / 375 * 100vw);
    margin-bottom: calc(60 / 375 * 100vw);
  }
}
.p-step__list {
  margin: 0 auto;
  width: 732px;
}
@media screen and (max-width: 1439px) {
  .p-step__list {
    width: calc(732 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list {
    width: 100%;
  }
}
.p-step__list__box {
  background-color: var(--color-bg);
  border-radius: 10px;
  padding: 30px 50px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-step__list__box {
    border-radius: calc(10 / 1440 * 100vw);
    padding: calc(30 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list__box {
    border-radius: calc(10 / 375 * 100vw);
    padding: calc(25 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.p-step__list__box::after {
  background-image: url(../images/step_icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -25px;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 16px;
}
@media screen and (max-width: 1439px) {
  .p-step__list__box::after {
    bottom: calc(-25 / 1440 * 100vw);
    height: calc(10 / 1440 * 100vw);
    width: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list__box::after {
    bottom: calc(-25 / 375 * 100vw);
    height: calc(10 / 375 * 100vw);
    width: calc(16 / 375 * 100vw);
  }
}
.p-step__list__box__label {
  align-items: center;
  background-color: var(--color-main);
  border-radius: 30px;
  color: var(--color-white);
  display: flex;
  font-family: "Albert Sans";
  font-size: 16px;
  font-weight: bold;
  height: 28px;
  justify-content: center;
  left: 50px;
  position: absolute;
  top: -14px;
  width: 92px;
}
@media screen and (max-width: 1439px) {
  .p-step__list__box__label {
    border-radius: calc(30 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    height: calc(28 / 1440 * 100vw);
    left: calc(50 / 1440 * 100vw);
    top: calc(-14 / 1440 * 100vw);
    width: calc(92 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list__box__label {
    border-radius: calc(30 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
    height: calc(17 / 375 * 100vw);
    left: calc(20 / 375 * 100vw);
    top: calc(-7 / 375 * 100vw);
    width: calc(68 / 375 * 100vw);
  }
}
.p-step__list__box__title {
  color: var(--color-main);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  .p-step__list__box__title {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list__box__title {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.p-step__list__box__text {
  font-size: 15px;
  line-height: 28px;
}
@media screen and (max-width: 1439px) {
  .p-step__list__box__text {
    font-size: calc(15 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list__box__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
  }
}
.p-step__list__box + .p-step__list__box {
  margin-top: 45px;
}
@media screen and (max-width: 1439px) {
  .p-step__list__box + .p-step__list__box {
    margin-top: calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-step__list__box + .p-step__list__box {
    margin-top: calc(40 / 375 * 100vw);
  }
}
.p-step__list__box:last-child::after {
  display: none;
}

.p-message {
  background: linear-gradient(to right, #2dafcb 0%, #80c8ef 99.97%);
}
@media screen and (max-width: 767px) {
  .p-message .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-message__inner {
  padding: 45px 0;
}
@media screen and (max-width: 1439px) {
  .p-message__inner {
    padding: calc(45 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    padding: calc(35 / 375 * 100vw) 0;
  }
}
.p-message__text {
  color: var(--color-white);
  font-size: 35px;
  font-weight: bold;
  line-height: 55px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-message__text {
    font-size: calc(35 / 1440 * 100vw);
    line-height: calc(55 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: calc(22 / 375 * 100vw);
    line-height: calc(35 / 375 * 100vw);
  }
}
.p-message__text2 {
  color: var(--color-white);
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-message__text2 {
    font-size: calc(30 / 1440 * 100vw);
    line-height: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-message__text2 {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
  }
}

.p-tel {
  background-color: var(--color-bg);
}
.p-tel__inner {
  padding-bottom: 70px;
  padding-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-tel__inner {
    padding-bottom: calc(70 / 1440 * 100vw);
    padding-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-tel__text {
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-tel__text {
    font-size: calc(20 / 1440 * 100vw);
    line-height: calc(34 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(34 / 375 * 100vw);
    text-align: left;
  }
}
.p-tel__text span.color {
  color: var(--color-main);
}
.p-tel__content {
  background-color: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 30px 30px 35px;
  width: 520px;
}
@media screen and (max-width: 1439px) {
  .p-tel__content {
    border: calc(2 / 1440 * 100vw) solid var(--color-main);
    border-radius: calc(10 / 1440 * 100vw);
    margin-top: calc(40 / 1440 * 100vw);
    padding: calc(30 / 1440 * 100vw) calc(30 / 1440 * 100vw) calc(35 / 1440 * 100vw);
    width: calc(520 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__content {
    border: calc(2 / 375 * 100vw) solid var(--color-main);
    border-radius: calc(10 / 375 * 100vw);
    margin-top: calc(30 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
    width: 100%;
  }
}
.p-tel__content__icon {
  margin: 0 auto;
  width: 60px;
}
.p-tel__content__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-tel__content__icon {
    width: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__content__icon {
    width: calc(60 / 375 * 100vw);
  }
}
.p-tel__content__number {
  color: var(--color-main);
  font-size: 35px;
  font-weight: bold;
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-tel__content__number {
    font-size: calc(35 / 1440 * 100vw);
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__content__number {
    font-size: calc(35 / 375 * 100vw);
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-tel__content__text {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-tel__content__text {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(20 / 1440 * 100vw);
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__content__text {
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(20 / 375 * 100vw);
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-tel__content__text2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-tel__content__text2 {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(26 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__content__text2 {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-tel__lineBox {
  margin-top: 35px;
}
@media screen and (max-width: 1439px) {
  .p-tel__lineBox {
    margin-top: calc(35 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__lineBox {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-tel__lineBox__text {
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-tel__lineBox__text {
    font-size: calc(20 / 1440 * 100vw);
    line-height: calc(34 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__lineBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.p-tel__lineBox__button {
  margin: 0 auto;
  margin-top: 20px;
  width: 280px;
}
.p-tel__lineBox__button img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-tel__lineBox__button {
    margin-top: calc(20 / 1440 * 100vw);
    width: calc(280 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__lineBox__button {
    margin-top: calc(20 / 375 * 100vw);
    width: calc(280 / 375 * 100vw);
  }
}
.p-tel__lineBox__button a {
  display: block;
}
.p-tel__lineBox__notice {
  color: #22B94E;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-tel__lineBox__notice {
    font-size: calc(12 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-tel__lineBox__notice {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}

.p-popup {
  -ms-overflow-style: none;
  background-color: var(--color-white);
  height: 580px;
  margin: 0 auto;
  overflow: scroll;
  scrollbar-width: none;
  width: 780px;
}
.p-popup::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1439px) {
  .p-popup {
    height: calc(580 / 1440 * 100vw);
    width: calc(780 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup {
    height: 90dvh;
    width: calc(335 / 375 * 100vw);
  }
}
.p-popup__inner {
  padding: 55px 65px 45px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-popup__inner {
    padding: calc(55 / 1440 * 100vw) calc(65 / 1440 * 100vw) calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__inner {
    padding: calc(40 / 375 * 100vw) calc(30 / 375 * 100vw) calc(75 / 375 * 100vw);
  }
}
.p-popup__entry h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 35px;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry h2 {
    font-size: calc(20 / 1440 * 100vw);
    line-height: calc(35 / 1440 * 100vw);
    margin-bottom: calc(35 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry h2 {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    margin-bottom: calc(35 / 375 * 100vw);
  }
}
.p-popup__entry h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry h3 {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry h3 {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-popup__entry h4 {
  font-size: 14px;
  line-height: 25px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry h4 {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry h4 {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-popup__entry p {
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry p {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry p {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-popup__entry p + * {
  margin-top: 25px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry p + * {
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry p + * {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-popup__entry p + h2 {
  margin-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry p + h2 {
    margin-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry p + h2 {
    margin-top: calc(50 / 375 * 100vw);
  }
}
.p-popup__entry ol > li,
.p-popup__entry ul > li {
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry ol > li,
.p-popup__entry ul > li {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry ol > li,
.p-popup__entry ul > li {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-popup__entry ol + *,
.p-popup__entry ul + * {
  margin-top: 25px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry ol + *,
.p-popup__entry ul + * {
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry ol + *,
.p-popup__entry ul + * {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-popup__entry ol {
  list-style: decimal-leading-zero;
  padding-left: 28px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry ol {
    padding-left: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry ol {
    padding-left: calc(28 / 375 * 100vw);
  }
}
.p-popup__entry ul {
  list-style: disc;
  padding-left: 21px;
}
@media screen and (max-width: 1439px) {
  .p-popup__entry ul {
    padding-left: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__entry ul {
    padding-left: calc(21 / 375 * 100vw);
  }
}
.p-popup__button {
  position: fixed;
  right: 22px;
  top: 22px;
}
@media screen and (max-width: 1439px) {
  .p-popup__button {
    right: calc(22 / 1440 * 100vw);
    top: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__button {
    bottom: calc(20 / 375 * 100vw);
    left: 0;
    right: 0;
    top: auto;
  }
}
.p-popup__button button {
  background-color: var(--color-white);
  background-image: url(../images/pp_icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  display: block;
  height: 32px;
  width: 32px;
}
@media screen and (max-width: 1439px) {
  .p-popup__button button {
    height: calc(32 / 1440 * 100vw);
    width: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-popup__button button {
    height: calc(30 / 375 * 100vw);
    margin: 0 auto;
    width: calc(30 / 375 * 100vw);
  }
}