:root {
  --color-white: #FFFFFF;
  --color-black: #3E3A39;
  --color-main: #FF6129;
  --color-main2: #274A78;
  --color-bg: #FDF9F7;
  --color-bg2: #F7FAFF;
}

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", sans-serif;
  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;
  }
}

input[type=submit],
input[type=button],
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=reset],
select,
button,
textarea {
  -webkit-appearance: none;
  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=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=reset]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: -2px;
}

.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-button-prev,
.swiper-button-next {
  height: 19px;
  width: 10px;
  z-index: 11;
}
@media screen and (max-width: 1214px) {
  .swiper-button-prev,
.swiper-button-next {
    height: calc(19 / 1215 * 100vw);
    width: calc(10 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
.swiper-button-next {
    height: calc(19 / 375 * 100vw);
    width: calc(10 / 375 * 100vw);
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev:after {
  background-image: url(../images/icon_prev.svg);
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next:after {
  background-image: url(../images/icon_next.svg);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  background: var(--color-white);
  height: 15px;
  margin: 0 10px;
  opacity: 1;
  width: 15px;
}
@media screen and (max-width: 1214px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(15 / 1215 * 100vw);
    margin: 0 calc(10 / 1215 * 100vw);
    width: calc(15 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(12 / 375 * 100vw);
    margin: 0 calc(10 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
  }
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--color-main);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1214px) {
      transform: translateY(calc(10 / 1215 * 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: 1214px) {
      transform: translateY(calc(10 / 1215 * 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-close,
.lity-close:hover {
  display: none !important;
}

/* noto-sans-jp-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: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v52-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-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: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v52-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-600 - 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: 600;
  src: url("../fonts/noto-sans-jp-v52-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-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: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v52-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-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: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v35-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - 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: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v35-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.l-container {
  margin: 0 auto;
  padding-left: 0px;
  padding-right: 0px;
  width: 1215px;
}
@media screen and (max-width: 1214px) {
  .l-container {
    padding-left: calc(0 / 1215 * 100vw);
    padding-right: calc(0 / 1215 * 100vw);
    width: calc(1215 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    width: 100%;
  }
}

.c-button {
  align-items: center;
  background: linear-gradient(300deg, #ef432c 0%, #e68040 100%);
  border-radius: 3px;
  color: var(--color-white);
  display: flex;
  font-weight: bold;
  justify-content: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1214px) {
  .c-button {
    border-radius: calc(3 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-button {
    border-radius: calc(3 / 375 * 100vw);
  }
}

.p-header {
  background-color: var(--color-white);
  height: 81px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-header {
    height: calc(81 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: calc(66 / 375 * 100vw);
  }
}
.p-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 15px;
}
@media screen and (max-width: 1214px) {
  .p-header__inner {
    padding: 0 calc(15 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 calc(17 / 375 * 100vw) 0 calc(10 / 375 * 100vw);
  }
}
.p-header__logo {
  background-image: url(../images/logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 110px;
}
@media screen and (max-width: 1214px) {
  .p-header__logo {
    height: calc(25 / 1215 * 100vw);
    width: calc(110 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    background-image: url(../images/logo_sp.svg);
    height: calc(19 / 375 * 100vw);
    width: calc(81 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__button {
    display: none;
  }
}
.p-header__button a {
  font-size: 15px;
  height: 44px;
  width: 162px;
}
@media screen and (max-width: 1214px) {
  .p-header__button a {
    font-size: calc(15 / 1215 * 100vw);
    height: calc(44 / 1215 * 100vw);
    width: calc(162 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__button a {
    font-size: calc(15 / 375 * 100vw);
    height: calc(44 / 375 * 100vw);
    width: calc(162 / 375 * 100vw);
  }
}
.p-header__hamburger {
  display: none;
  width: calc(25 / 375 * 100vw);
}
.p-header__hamburger img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header.is-clone {
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  transform: translateY(-200%);
  transition: 0.6s;
  width: 100%;
  z-index: 101;
}
.p-header.is-clone.is-show {
  transform: translateY(0);
}

/* .p-footer {
  height: 41px;
}
@media screen and (max-width: 1214px) {
  .p-footer {
    height: calc(41 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    background-color: #F4F4F4;
    height: calc(35 / 375 * 100vw);
  }
}
.p-footer__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footer__copyright {
  font-size: 12px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1214px) {
  .p-footer__copyright {
    font-size: calc(12 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(10 / 375 * 100vw);
  }
} */

.p-cta {
  background-image: url(../images/bg_cta.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 394px;
}
@media screen and (max-width: 1214px) {
  .p-cta {
    height: calc(394 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-image: url(../images/bg_cta_sp.png);
    height: calc(353 / 375 * 100vw);
  }
}
.p-cta .l-container {
  height: 100%;
}
.p-cta__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-cta__content__title {
  color: var(--color-white);
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-cta__content__title {
    font-size: calc(34 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__title {
    font-size: calc(30 / 375 * 100vw);
  }
}
.p-cta__content__text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 33px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-cta__content__text {
    font-size: calc(16 / 1215 * 100vw);
    line-height: calc(33 / 1215 * 100vw);
    margin-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-cta__content__button {
  margin-top: 40px;
}
@media screen and (max-width: 1214px) {
  .p-cta__content__button {
    margin-top: calc(40 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__button {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-cta__content__button a {
  font-size: 19px;
  height: 63px;
  width: 432px;
}
@media screen and (max-width: 1214px) {
  .p-cta__content__button a {
    font-size: calc(19 / 1215 * 100vw);
    height: calc(63 / 1215 * 100vw);
    width: calc(432 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__button a {
    font-size: calc(16 / 375 * 100vw);
    height: calc(53 / 375 * 100vw);
    width: calc(314 / 375 * 100vw);
  }
}

.p-drawer {
  background-color: var(--color-white);
  height: 100svh;
  left: 0;
  opacity: 0;
  overflow: scroll;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: -1;
}
.p-drawer__header {
  height: calc(66 / 375 * 100vw);
}
.p-drawer__header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 calc(17 / 375 * 100vw) 0 calc(10 / 375 * 100vw);
}
.p-drawer__header__logo {
  background-image: url(../images/logo_sp.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: calc(42 / 375 * 100vw);
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: calc(268 / 375 * 100vw);
}
.p-drawer__main__inner {
  padding-top: calc(16 / 375 * 100vw);
}
.p-drawer__main__navList {
  border-top: 1px solid #EDEDED;
  padding: 0 calc(38 / 375 * 100vw);
}
.p-drawer__main__navList > ul > li {
  padding: calc(20 / 375 * 100vw) 0;
}
.p-drawer__main__navList > ul > li + li {
  border-top: 1px solid #D6D6D6;
}
.p-drawer__main__navList__text a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  width: 100%;
}
.p-drawer__main__navList__text a::after {
  background-image: url(../images/icon_arrow_nav.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: calc(8 / 375 * 100vw);
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(14 / 375 * 100vw);
}
.p-drawer__main__button {
  margin-top: calc(40 / 375 * 100vw);
}
.p-drawer__main__button a {
  font-size: calc(16 / 375 * 100vw);
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}
.p-drawer.is-show {
  opacity: 1;
  z-index: 102;
}

.p-mainVisual {
  background-color: var(--color-bg);
  transform: skewY(-2deg);
}
.p-mainVisual .l-container {
  transform: skewY(2deg);
}
.p-mainVisual__inner {
  padding-bottom: 57px;
  padding-top: 157px;
  position: relative;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__inner {
    padding-bottom: calc(57 / 1215 * 100vw);
    padding-top: calc(157 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(100 / 375 * 100vw);
  }
}
.p-mainVisual__inner::after {
  background-image: url(../images/image_mainvisual.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 571px;
  position: absolute;
  right: 0;
  top: 0;
  width: 655px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__inner::after {
    height: calc(571 / 1215 * 100vw);
    width: calc(655 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner::after {
    background-image: url(../images/image_mainvisual_sp.png);
    height: calc(176 / 375 * 100vw);
    right: calc(-20 / 375 * 100vw);
    top: calc(283 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
.p-mainVisual__textBox {
  padding-left: 52px;
  padding-right: 52px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox {
    padding-left: calc(52 / 1215 * 100vw);
    padding-right: calc(52 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox {
    padding-left: calc(0 / 375 * 100vw);
    padding-right: calc(0 / 375 * 100vw);
  }
}
.p-mainVisual__textBox__catch {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 23px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__catch {
    font-size: calc(24 / 1215 * 100vw);
    margin-bottom: calc(23 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__catch {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 600;
    margin-bottom: calc(10 / 375 * 100vw);
    text-align: center;
  }
}
.p-mainVisual__textBox__title {
  color: var(--color-main);
  font-size: 50px;
  font-weight: bold;
  line-height: 62px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__title {
    font-size: calc(50 / 1215 * 100vw);
    line-height: calc(62 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__title {
    font-size: calc(34 / 375 * 100vw);
    line-height: calc(42 / 375 * 100vw);
    text-align: center;
  }
}
.p-mainVisual__textBox__title span {
  font-size: 45px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__title span {
    font-size: calc(45 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__title span {
    display: inline-block;
    font-size: calc(29 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.p-mainVisual__textBox__copy {
  font-size: 20px;
  margin-top: 35px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__copy {
    font-size: calc(20 / 1215 * 100vw);
    margin-top: calc(35 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__copy {
    font-size: calc(15 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
    text-align: center;
  }
}
.p-mainVisual__textBox__copy span {
  color: var(--color-main);
  display: inline-block;
  font-size: 31px;
  font-weight: bold;
  margin: 0 4px;
  position: relative;
  transform: translateY(2px);
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__copy span {
    font-size: calc(31 / 1215 * 100vw);
    margin: 0 calc(4 / 1215 * 100vw);
    transform: translateY(calc(2 / 1215 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__copy span {
    font-size: calc(27 / 375 * 100vw);
    margin: 0 calc(4 / 375 * 100vw);
    transform: translateY(calc(2 / 375 * 100vw));
  }
}
.p-mainVisual__textBox__copy span::after {
  background-image: url(../images/decoration_0.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 10px;
  left: 10px;
  position: absolute;
  top: -5px;
  width: 12px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__copy span::after {
    height: calc(10 / 1215 * 100vw);
    left: calc(10 / 1215 * 100vw);
    top: calc(-5 / 1215 * 100vw);
    width: calc(12 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__copy span::after {
    height: calc(10 / 375 * 100vw);
    left: calc(10 / 375 * 100vw);
    top: calc(-5 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
  }
}
.p-mainVisual__textBox__button {
  margin-top: 45px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__button {
    margin-top: calc(45 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__button {
    margin-top: calc(230 / 375 * 100vw);
  }
}
.p-mainVisual__textBox__button a {
  font-size: 18px;
  height: 59px;
  width: 380px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__textBox__button a {
    font-size: calc(18 / 1215 * 100vw);
    height: calc(59 / 1215 * 100vw);
    width: calc(380 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__textBox__button a {
    font-size: calc(16 / 375 * 100vw);
    height: calc(53 / 375 * 100vw);
    margin: 0 auto;
    width: calc(315 / 375 * 100vw);
  }
}
.p-mainVisual__navGroup {
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 17px rgba(230, 230, 230, 0.74);
  display: flex;
  height: 122px;
  margin: 0 auto;
  margin-top: 133px;
  padding-left: 225px;
  padding-right: 104px;
  position: relative;
  width: 1124px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup {
    border-radius: calc(6 / 1215 * 100vw);
    box-shadow: calc(0 / 1215 * 100vw) calc(0 / 1215 * 100vw) calc(17 / 1215 * 100vw) rgba(230, 230, 230, 0.74);
    height: calc(122 / 1215 * 100vw);
    margin-top: calc(133 / 1215 * 100vw);
    padding-left: calc(225 / 1215 * 100vw);
    padding-right: calc(104 / 1215 * 100vw);
    width: calc(1124 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup {
    border-radius: calc(3 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(17 / 375 * 100vw) rgba(230, 230, 230, 0.74);
    display: none;
    height: auto;
    margin-top: calc(45 / 375 * 100vw);
    padding-bottom: calc(15 / 375 * 100vw);
    padding-left: calc(30 / 375 * 100vw);
    padding-right: calc(30 / 375 * 100vw);
    padding-top: calc(15 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-mainVisual__navGroup::before {
  background-image: url(../images/illust_mainvisual_nav.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 19px;
  content: "";
  display: block;
  height: 118px;
  left: 99px;
  position: absolute;
  width: 93px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup::before {
    bottom: calc(19 / 1215 * 100vw);
    height: calc(118 / 1215 * 100vw);
    left: calc(99 / 1215 * 100vw);
    width: calc(93 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup::before {
    background-image: url(../images/illust_mainvisual_nav_sp.svg);
    bottom: calc(-19 / 375 * 100vw);
    height: calc(90 / 375 * 100vw);
    left: calc(270 / 375 * 100vw);
    width: calc(71 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList {
    width: 100%;
  }
}
.p-mainVisual__navGroup__navList > ul {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul {
    display: block;
  }
}
.p-mainVisual__navGroup__navList > ul > li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul > li {
    padding: calc(20 / 375 * 100vw) 0;
  }
}
.p-mainVisual__navGroup__navList > ul > li::before {
  background-color: #D6D6D6;
  content: "";
  height: 100%;
  left: -20px;
  position: absolute;
  top: 0;
  width: 1px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList > ul > li::before {
    left: calc(-20 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul > li::before {
    display: none;
    left: calc(-20 / 375 * 100vw);
  }
}
.p-mainVisual__navGroup__navList > ul > li + li {
  margin-left: 40px;
  padding: 4px 0;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList > ul > li + li {
    margin-left: calc(40 / 1215 * 100vw);
    padding: calc(4 / 1215 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul > li + li {
    border-top: 1px solid #D6D6D6;
    margin-left: calc(0 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) 0;
  }
}
.p-mainVisual__navGroup__navList > ul > li:first-child {
  width: 205px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList > ul > li:first-child {
    width: calc(205 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul > li:first-child {
    width: 100%;
  }
}
.p-mainVisual__navGroup__navList > ul > li:first-child::before {
  display: none;
}
.p-mainVisual__navGroup__navList > ul > li:nth-child(2) {
  width: 120px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList > ul > li:nth-child(2) {
    width: calc(120 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul > li:nth-child(2) {
    width: 100%;
  }
}
.p-mainVisual__navGroup__navList > ul + ul {
  margin-top: 18px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList > ul + ul {
    margin-top: calc(18 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList > ul + ul {
    border-top: 1px solid #D6D6D6;
    margin-top: calc(0 / 375 * 100vw);
  }
}
.p-mainVisual__navGroup__navList__text {
  padding-left: 20px;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList__text {
    padding-left: calc(20 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList__text {
    padding-left: calc(0 / 375 * 100vw);
  }
}
.p-mainVisual__navGroup__navList__text::before {
  background-image: url(../images/icon_arrow_nav.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 14px;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList__text::before {
    height: calc(8 / 1215 * 100vw);
    width: calc(14 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList__text::before {
    height: calc(8 / 375 * 100vw);
    left: auto;
    right: 0;
    width: calc(14 / 375 * 100vw);
  }
}
.p-mainVisual__navGroup__navList__text a {
  font-size: 17px;
  font-weight: bold;
}
@media screen and (max-width: 1214px) {
  .p-mainVisual__navGroup__navList__text a {
    font-size: calc(17 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__navGroup__navList__text a {
    font-size: calc(17 / 375 * 100vw);
  }
}

.p-solution__inner {
  padding-bottom: 98px;
  padding-top: 80px;
}
@media screen and (max-width: 1214px) {
  .p-solution__inner {
    padding-bottom: calc(98 / 1215 * 100vw);
    padding-top: calc(80 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__inner {
    padding-bottom: calc(70 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-solution__title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 48px;
  margin-bottom: 42px;
  padding-bottom: 50px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-solution__title {
    font-size: calc(30 / 1215 * 100vw);
    line-height: calc(48 / 1215 * 100vw);
    margin-bottom: calc(42 / 1215 * 100vw);
    padding-bottom: calc(50 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
  }
}
.p-solution__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-solution__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__title::after {
    height: calc(30 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
.p-solution__title span {
  color: var(--color-main);
  font-size: 34px;
}
@media screen and (max-width: 1214px) {
  .p-solution__title span {
    font-size: calc(34 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__title span {
    font-size: calc(24 / 375 * 100vw);
  }
}
.p-solution__solutionList {
  margin: 0 auto;
  width: 740px;
}
@media screen and (max-width: 1214px) {
  .p-solution__solutionList {
    width: calc(740 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__solutionList {
    width: calc(332 / 375 * 100vw);
  }
}
.p-solution__solutionList > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-solution__solutionList > ul > li {
  margin-top: 48px;
}
@media screen and (max-width: 1214px) {
  .p-solution__solutionList > ul > li {
    margin-top: calc(48 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__solutionList > ul > li {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-solution__solutionList > ul > li:nth-child(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-solution__solutionList > ul > li:nth-child(-n+3) {
    margin-top: calc(30 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__solutionList > ul > li:nth-child(-n+2) {
    margin-top: 0;
  }
}
.p-solution__solutionList__solutionBox {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 196px;
  position: relative;
  width: 200px;
}
@media screen and (max-width: 1214px) {
  .p-solution__solutionList__solutionBox {
    height: calc(196 / 1215 * 100vw);
    width: calc(200 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__solutionList__solutionBox {
    height: calc(162 / 375 * 100vw);
    width: calc(166 / 375 * 100vw);
  }
}
.p-solution__solutionList__solutionBox__text {
  bottom: 0;
  font-size: 19px;
  font-weight: bold;
  left: 0;
  line-height: 32px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1214px) {
  .p-solution__solutionList__solutionBox__text {
    font-size: calc(19 / 1215 * 100vw);
    line-height: calc(32 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__solutionList__solutionBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-solution__solutionList__solutionBox--solution1 {
  background-image: url(../images/bg_solution_1.svg);
}
.p-solution__solutionList__solutionBox--solution2 {
  background-image: url(../images/bg_solution_2.svg);
}
.p-solution__solutionList__solutionBox--solution3 {
  background-image: url(../images/bg_solution_3.svg);
}
.p-solution__solutionList__solutionBox--solution4 {
  background-image: url(../images/bg_solution_4.svg);
}
.p-solution__solutionList__solutionBox--solution5 {
  background-image: url(../images/bg_solution_5.svg);
}
.p-solution__solutionList__solutionBox--solution6 {
  background-image: url(../images/bg_solution_6.svg);
}
.p-solution__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-solution__button {
    display: block;
  }
}
.p-solution__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}

.p-about {
  background-color: var(--color-bg2);
  transform: skewY(-2deg);
}
.p-about .l-container {
  transform: skewY(2deg);
}
.p-about__inner {
  padding-top: 72px;
}
@media screen and (max-width: 1214px) {
  .p-about__inner {
    padding-top: calc(72 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-about__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-about__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-about__title span {
  color: var(--color-main);
}
.p-about__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-about__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-about__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-about__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
.p-about__title::before {
  background-image: url(../images/title_en_about.svg);
}
.p-about__text {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-about__text {
    font-size: calc(16 / 1215 * 100vw);
    line-height: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-about__serviceList {
  margin: 40px auto 0;
  width: 820px;
}
@media screen and (max-width: 1214px) {
  .p-about__serviceList {
    margin: calc(40 / 1215 * 100vw) auto 0;
    width: calc(820 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList {
    margin: calc(30 / 375 * 100vw) auto 0;
    width: calc(335 / 375 * 100vw);
  }
}
.p-about__serviceList > ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about__serviceList > ul {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList > ul > li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList > ul > li + li {
    margin-left: calc(6 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList > ul > li:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList > ul > li:nth-child(1), .p-about__serviceList > ul > li:nth-child(4) {
    margin-left: 0;
  }
}
.p-about__serviceList > ul > li:last-child .p-about__serviceList__serviceBox__text {
  padding-left: 5px;
}
@media screen and (max-width: 1214px) {
  .p-about__serviceList > ul > li:last-child .p-about__serviceList__serviceBox__text {
    padding-left: calc(5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList > ul > li:last-child .p-about__serviceList__serviceBox__text {
    padding-left: calc(4 / 375 * 100vw);
  }
}
.p-about__serviceList__serviceBox {
  align-items: center;
  background-color: var(--color-white);
  border: 2px solid #F1AC99;
  border-radius: 50%;
  display: flex;
  height: 140px;
  justify-content: center;
  position: relative;
  width: 140px;
}
@media screen and (max-width: 1214px) {
  .p-about__serviceList__serviceBox {
    border: calc(2 / 1215 * 100vw) solid #F1AC99;
    height: calc(140 / 1215 * 100vw);
    width: calc(140 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList__serviceBox {
    border: calc(2 / 375 * 100vw) solid #F1AC99;
    height: calc(106 / 375 * 100vw);
    margin: 0 auto;
    width: calc(106 / 375 * 100vw);
  }
}
.p-about__serviceList__serviceBox__number {
  display: none;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -21px;
  width: 42px;
}
.p-about__serviceList__serviceBox__number img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1214px) {
  .p-about__serviceList__serviceBox__number {
    top: calc(-21 / 1215 * 100vw);
    width: calc(42 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList__serviceBox__number {
    top: calc(-25 / 375 * 100vw);
    width: calc(50 / 375 * 100vw);
  }
}
.p-about__serviceList__serviceBox__text {
  color: var(--color-main2);
  font-size: 20px;
  font-weight: bold;
  line-height: 27px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-about__serviceList__serviceBox__text {
    font-size: calc(20 / 1215 * 100vw);
    line-height: calc(27 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__serviceList__serviceBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(20 / 375 * 100vw);
  }
}
.p-about__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-about__button {
    display: block;
  }
}
.p-about__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}

.p-benefit {
  position: relative;
}
.p-benefit::before {
  background-color: var(--color-bg2);
  bottom: 97px;
  content: "";
  display: block;
  height: calc(100% + 80px);
  left: 0;
  position: absolute;
  transform: skewY(2deg);
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1214px) {
  .p-benefit::before {
    bottom: calc(97 / 1215 * 100vw);
    height: calc(100% + (80 / 1215 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-benefit::before {
    bottom: calc(190 / 375 * 100vw);
    height: calc(100% + (40 / 375 * 100vw));
  }
}
.p-benefit__inner {
  padding-top: 80px;
}
@media screen and (max-width: 1214px) {
  .p-benefit__inner {
    padding-top: calc(80 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__inner {
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-benefit__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-bottom: 91px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-benefit__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-benefit__title span {
  color: var(--color-main);
}
.p-benefit__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-benefit__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-benefit__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-benefit__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
@media screen and (max-width: 1214px) {
  .p-benefit__title {
    margin-bottom: calc(91 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__title {
    margin-bottom: calc(85 / 375 * 100vw);
  }
}
.p-benefit__title::before {
  background-image: url(../images/title_en_benefit.svg);
}
.p-benefit__benefitList {
  margin: 0 auto;
  position: relative;
  width: 948px;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList {
    width: calc(948 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList {
    margin: 0 auto;
    width: calc(315 / 375 * 100vw);
  }
}
.p-benefit__benefitList > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList > ul {
    display: block;
  }
}
.p-benefit__benefitList > ul > li {
  margin-top: 73px;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList > ul > li {
    margin-top: calc(73 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList > ul > li {
    margin-top: calc(73 / 375 * 100vw);
  }
}
.p-benefit__benefitList > ul > li + li {
  margin-left: 30px;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList > ul > li + li {
    margin-left: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList > ul > li + li {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(73 / 375 * 100vw);
  }
}
.p-benefit__benefitList > ul > li:nth-child(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList > ul > li:nth-child(-n+3) {
    margin-top: calc(73 / 375 * 100vw);
  }
}
.p-benefit__benefitList > ul > li:nth-child(4) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList > ul > li:first-child {
    margin-top: 0;
  }
}
.p-benefit__benefitList__benefitBox {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0px 0px 17px rgba(230, 230, 230, 0.74);
  height: 343px;
  padding: 121px 20px 0;
  position: relative;
  width: 296px;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList__benefitBox {
    border-radius: calc(6 / 1215 * 100vw);
    box-shadow: calc(0 / 1215 * 100vw) calc(0 / 1215 * 100vw) calc(17 / 1215 * 100vw) rgba(230, 230, 230, 0.74);
    height: calc(343 / 1215 * 100vw);
    padding: calc(121 / 1215 * 100vw) calc(20 / 1215 * 100vw) 0;
    width: calc(296 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList__benefitBox {
    border-radius: calc(6 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(17 / 375 * 100vw) rgba(230, 230, 230, 0.74);
    height: auto;
    padding: calc(86 / 375 * 100vw) calc(20 / 375 * 100vw) calc(50 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-benefit__benefitList__benefitBox__icon {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -43px;
  width: 152px;
}
.p-benefit__benefitList__benefitBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList__benefitBox__icon {
    top: calc(-43 / 1215 * 100vw);
    width: calc(152 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList__benefitBox__icon {
    top: calc(-54 / 375 * 100vw);
    width: calc(120 / 375 * 100vw);
  }
}
.p-benefit__benefitList__benefitBox__textBox__title {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  height: 45px;
  justify-content: center;
  line-height: 24px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList__benefitBox__textBox__title {
    font-size: calc(18 / 1215 * 100vw);
    height: calc(45 / 1215 * 100vw);
    line-height: calc(24 / 1215 * 100vw);
    margin-bottom: calc(15 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList__benefitBox__textBox__title {
    font-size: calc(18 / 375 * 100vw);
    height: auto;
    line-height: calc(24 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.p-benefit__benefitList__benefitBox__textBox__text {
  font-size: 14px;
  line-height: 23px;
  text-align: justify;
}
@media screen and (max-width: 1214px) {
  .p-benefit__benefitList__benefitBox__textBox__text {
    font-size: calc(14 / 1215 * 100vw);
    line-height: calc(23 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-benefit__benefitList__benefitBox__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
  }
}
.p-benefit__benefitList__benefitBox__textBox__text span {
  color: var(--color-main);
  display: inline-flex;
  justify-content: center;
  width: 1em;
}
.p-benefit__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-benefit__button {
    display: block;
  }
}
.p-benefit__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}

.p-strength {
  margin-top: 17px;
}
@media screen and (max-width: 1214px) {
  .p-strength {
    margin-top: calc(17 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength {
    margin-top: calc(17 / 375 * 100vw);
  }
}
.p-strength__inner {
  padding-bottom: 108px;
  padding-top: 63px;
}
@media screen and (max-width: 1214px) {
  .p-strength__inner {
    padding-bottom: calc(108 / 1215 * 100vw);
    padding-top: calc(63 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__inner {
    padding-bottom: calc(60 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-strength__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-bottom: 70px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-strength__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-strength__title span {
  color: var(--color-main);
}
.p-strength__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-strength__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-strength__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-strength__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
@media screen and (max-width: 1214px) {
  .p-strength__title {
    margin-bottom: calc(70 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__title {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-strength__title::before {
  background-image: url(../images/title_en_strength.svg);
}
.p-strength__strengthList {
  margin: 0 auto;
  width: 978px;
}
@media screen and (max-width: 1214px) {
  .p-strength__strengthList {
    width: calc(978 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList {
    width: calc(315 / 375 * 100vw);
  }
}
.p-strength__strengthList > ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList > ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList > ul > li + li {
    margin-top: calc(28 / 375 * 100vw);
  }
}
.p-strength__strengthList__strengthBox {
  align-items: center;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0px 0px 17px rgba(230, 230, 230, 0.74);
  display: flex;
  height: 217px;
  justify-content: center;
  position: relative;
  width: 316px;
}
@media screen and (max-width: 1214px) {
  .p-strength__strengthList__strengthBox {
    border-radius: calc(6 / 1215 * 100vw);
    box-shadow: calc(0 / 1215 * 100vw) calc(0 / 1215 * 100vw) calc(17 / 1215 * 100vw) rgba(230, 230, 230, 0.74);
    height: calc(217 / 1215 * 100vw);
    width: calc(316 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList__strengthBox {
    border-radius: calc(6 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(17 / 375 * 100vw) rgba(230, 230, 230, 0.74);
    height: calc(168 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-strength__strengthList__strengthBox__number {
  height: 45px;
  left: 18px;
  position: absolute;
  top: -26px;
}
@media screen and (max-width: 1214px) {
  .p-strength__strengthList__strengthBox__number {
    height: calc(45 / 1215 * 100vw);
    left: calc(18 / 1215 * 100vw);
    top: calc(-26 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList__strengthBox__number {
    height: calc(39 / 375 * 100vw);
    left: calc(19 / 375 * 100vw);
    top: calc(-16 / 375 * 100vw);
  }
}
.p-strength__strengthList__strengthBox__number img {
  height: 100%;
  width: auto;
}
.p-strength__strengthList__strengthBox__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-strength__strengthList__strengthBox__text {
    font-size: calc(18 / 1215 * 100vw);
    line-height: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList__strengthBox__text {
    font-size: calc(17 / 375 * 100vw);
    line-height: calc(29 / 375 * 100vw);
  }
}
.p-strength__strengthList__strengthBox__text span {
  background: linear-gradient(transparent 70%, #FFEE6A 70%);
  color: var(--color-main);
  padding: 0 4px;
}
@media screen and (max-width: 1214px) {
  .p-strength__strengthList__strengthBox__text span {
    padding: 0 calc(4 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-strength__strengthList__strengthBox__text span {
    padding: 0 calc(4 / 375 * 100vw);
  }
}
.p-strength__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-strength__button {
    display: block;
  }
}
.p-strength__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}

.p-results__inner {
  padding-bottom: 107px;
  padding-top: 80px;
}
@media screen and (max-width: 1214px) {
  .p-results__inner {
    padding-bottom: calc(107 / 1215 * 100vw);
    padding-top: calc(80 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-results__inner {
    padding-bottom: calc(70 / 375 * 100vw);
    padding-top: calc(45 / 375 * 100vw);
  }
}
.p-results__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-results__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-results__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-results__title span {
  color: var(--color-main);
}
.p-results__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-results__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-results__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-results__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-results__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-results__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
.p-results__title::before {
  background-image: url(../images/title_en_results.svg);
}
.p-results__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-results__text {
    font-size: calc(14 / 1215 * 100vw);
    line-height: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-results__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
  }
}
.p-results__graph {
  background-image: url(../images/graph_results.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 600px;
  margin: 45px auto 0;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 812px;
}
@media screen and (max-width: 1214px) {
  .p-results__graph {
    height: calc(600 / 1215 * 100vw);
    margin: calc(45 / 1215 * 100vw) auto 0;
    width: calc(812 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-results__graph {
    background-image: url(../images/graph_results_sp.svg);
    height: calc(364 / 375 * 100vw);
    margin: calc(30 / 375 * 100vw) auto 0;
    width: calc(334 / 375 * 100vw);
  }
}
.p-results__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-results__button {
    display: block;
  }
}
.p-results__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}

.p-plan {
  background-color: var(--color-bg);
  transform: skewY(-2deg);
}
.p-plan .l-container {
  transform: skewY(2deg);
}
.p-plan__inner {
  padding-bottom: 98px;
  padding-top: 78px;
}
@media screen and (max-width: 1214px) {
  .p-plan__inner {
    padding-bottom: calc(98 / 1215 * 100vw);
    padding-top: calc(78 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__inner {
    padding-bottom: calc(60 / 375 * 100vw);
    padding-top: calc(45 / 375 * 100vw);
  }
}
.p-plan__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-bottom: 45px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-plan__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-plan__title span {
  color: var(--color-main);
}
.p-plan__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-plan__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-plan__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-plan__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
@media screen and (max-width: 1214px) {
  .p-plan__title {
    margin-bottom: calc(45 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-plan__title::before {
  background-image: url(../images/title_en_plan.svg);
}
.p-plan__title span.orange {
  margin-left: 5px;
  margin-right: 4px;
}
@media screen and (max-width: 1214px) {
  .p-plan__title span.orange {
    margin-left: calc(5 / 1215 * 100vw);
    margin-right: calc(4 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title span.orange {
    margin-left: calc(5 / 375 * 100vw);
    margin-right: calc(4 / 375 * 100vw);
  }
}
.p-plan__title span.number {
  display: inline-block;
  margin-right: 4px;
  transform: translateY(2px);
  width: 17px;
}
.p-plan__title span.number img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1214px) {
  .p-plan__title span.number {
    margin-right: calc(4 / 1215 * 100vw);
    transform: translateY(calc(2 / 1215 * 100vw));
    width: calc(17 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__title span.number {
    margin-right: calc(4 / 375 * 100vw);
    transform: translateY(calc(2 / 375 * 100vw));
    width: calc(17 / 375 * 100vw);
  }
}
.p-plan__planGroup__navList {
  margin-bottom: 12px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__navList {
    margin-bottom: calc(12 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__navList {
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.p-plan__planGroup__navList > ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__navList > ul {
    display: block;
  }
}
.p-plan__planGroup__navList > ul > li {
  cursor: pointer;
}
.p-plan__planGroup__navList > ul > li + li {
  margin-left: 20px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__navList > ul > li + li {
    margin-left: calc(20 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__navList > ul > li + li {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-plan__planGroup__navList > ul > li.is-current .p-plan__planGroup__navList__text {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 24px;
  width: 292px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__navList > ul > li.is-current .p-plan__planGroup__navList__text {
    font-size: calc(24 / 1215 * 100vw);
    width: calc(292 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__navList > ul > li.is-current .p-plan__planGroup__navList__text {
    font-size: calc(18 / 375 * 100vw);
    width: calc(334 / 375 * 100vw);
  }
}
.p-plan__planGroup__navList__text {
  align-items: center;
  background-color: #EAEAEA;
  border-radius: 3px;
  color: #AAAAAA;
  display: flex;
  font-family: "Open Sans";
  font-size: 21px;
  font-weight: 600;
  height: 55px;
  justify-content: center;
  width: 232px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__navList__text {
    border-radius: calc(3 / 1215 * 100vw);
    font-size: calc(21 / 1215 * 100vw);
    height: calc(55 / 1215 * 100vw);
    width: calc(232 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__navList__text {
    border-radius: calc(3 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    height: calc(49 / 375 * 100vw);
    margin: 0 auto;
    width: calc(334 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList {
    margin: 0 calc(-20 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList > ul > li.is-show .p-plan__planGroup__planList__planBox {
  display: block;
}
.p-plan__planGroup__planList__planBox {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0px 0px 17px rgba(230, 230, 230, 0.8);
  display: none;
  margin: 0 auto;
  padding: 44px 69px 50px;
  width: 1000px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox {
    border-radius: calc(6 / 1215 * 100vw);
    box-shadow: calc(0 / 1215 * 100vw) calc(0 / 1215 * 100vw) calc(17 / 1215 * 100vw) rgba(230, 230, 230, 0.8);
    padding: calc(44 / 1215 * 100vw) calc(69 / 1215 * 100vw) calc(50 / 1215 * 100vw);
    width: calc(1000 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox {
    border-radius: calc(0 / 375 * 100vw);
    box-shadow: none;
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw) calc(45 / 375 * 100vw);
    width: 100%;
  }
}
.p-plan__planGroup__planList__planBox__text {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__text {
    font-size: calc(16 / 1215 * 100vw);
    line-height: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
    text-align: justify;
  }
}
.p-plan__planGroup__planList__planBox__featureGroup {
  background: var(--color-bg);
  border-radius: 6px;
  margin: 53px auto 0;
  padding: 43px 40px 35px;
  position: relative;
  width: 862px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__featureGroup {
    border-radius: calc(6 / 1215 * 100vw);
    margin: calc(53 / 1215 * 100vw) auto 0;
    padding: calc(43 / 1215 * 100vw) calc(40 / 1215 * 100vw) calc(35 / 1215 * 100vw);
    width: calc(862 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__featureGroup {
    border-radius: calc(6 / 375 * 100vw);
    margin: calc(38 / 375 * 100vw) auto 0;
    padding: calc(42 / 375 * 100vw) calc(25 / 375 * 100vw) calc(25 / 375 * 100vw);
    width: 100%;
  }
}
.p-plan__planGroup__planList__planBox__featureGroup__title {
  align-items: center;
  background-image: url(../images/decoration_title_feature.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--color-white);
  content: "";
  display: block;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  height: 34px;
  justify-content: center;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -17px;
  width: 298px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__featureGroup__title {
    font-size: calc(18 / 1215 * 100vw);
    height: calc(34 / 1215 * 100vw);
    top: calc(-17 / 1215 * 100vw);
    width: calc(298 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__featureGroup__title {
    background-image: url(../images/decoration_title_feature_sp.svg);
    font-size: calc(16 / 375 * 100vw);
    height: calc(34 / 375 * 100vw);
    top: calc(-17 / 375 * 100vw);
    width: calc(254 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__featureGroup__featureList > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__featureGroup__featureList > ul > li + li {
    margin-top: calc(10 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__featureGroup__featureList > ul > li + li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__featureGroup__featureList__text {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__featureGroup__featureList__text {
    font-size: calc(14 / 1215 * 100vw);
    line-height: calc(23 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__featureGroup__featureList__text {
    font-size: calc(13 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__featureGroup__featureList__text::before {
  background-image: url(../images/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 15px;
  margin-right: 7px;
  transform: translateY(5px);
  width: 15px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__featureGroup__featureList__text::before {
    height: calc(15 / 1215 * 100vw);
    margin-right: calc(7 / 1215 * 100vw);
    transform: translateY(calc(5 / 1215 * 100vw));
    width: calc(15 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__featureGroup__featureList__text::before {
    height: calc(15 / 375 * 100vw);
    margin-right: calc(7 / 375 * 100vw);
    transform: translateY(calc(5 / 375 * 100vw));
    width: calc(15 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup {
  margin-top: 30px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup {
    margin-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup__title {
  align-items: center;
  border-bottom: 1px solid #E3DFDF;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 13px;
  text-align: center;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title {
    font-size: calc(18 / 1215 * 100vw);
    margin-bottom: calc(30 / 1215 * 100vw);
    padding-bottom: calc(13 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup__title::before, .p-plan__planGroup__planList__planBox__structureGroup__title::after {
  background-color: var(--color-main);
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title::before, .p-plan__planGroup__planList__planBox__structureGroup__title::after {
    height: calc(8 / 1215 * 100vw);
    width: calc(8 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title::before, .p-plan__planGroup__planList__planBox__structureGroup__title::after {
    height: calc(6 / 375 * 100vw);
    width: calc(6 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup__title::before {
  margin-right: 12px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title::before {
    margin-right: calc(12 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title::before {
    margin-right: calc(10 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup__title::after {
  margin-left: 12px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title::after {
    margin-left: calc(12 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup__title::after {
    margin-left: calc(10 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup__illust {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  margin: 0 auto;
}
.p-plan__planGroup__planList__planBox__structureGroup__button {
  margin-top: 50px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup__button {
    margin-top: calc(50 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup__button {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox__structureGroup__button a {
  font-size: 16px;
  height: 55px;
  margin: 0 auto;
  width: 318px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox__structureGroup__button a {
    font-size: calc(16 / 1215 * 100vw);
    height: calc(55 / 1215 * 100vw);
    width: calc(318 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox__structureGroup__button a {
    font-size: calc(16 / 375 * 100vw);
    height: calc(53 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox--plan1 .p-plan__planGroup__planList__planBox__structureGroup__illust {
  background-image: url(../images/illust_plan_1.svg);
  height: 377px;
  width: 598px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox--plan1 .p-plan__planGroup__planList__planBox__structureGroup__illust {
    height: calc(377 / 1215 * 100vw);
    width: calc(598 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox--plan1 .p-plan__planGroup__planList__planBox__structureGroup__illust {
    height: calc(204 / 375 * 100vw);
    width: calc(325 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox--plan2 .p-plan__planGroup__planList__planBox__structureGroup__illust {
  background-image: url(../images/illust_plan_2.svg);
  height: 345px;
  width: 577px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox--plan2 .p-plan__planGroup__planList__planBox__structureGroup__illust {
    height: calc(345 / 1215 * 100vw);
    width: calc(577 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox--plan2 .p-plan__planGroup__planList__planBox__structureGroup__illust {
    height: calc(195 / 375 * 100vw);
    width: calc(325 / 375 * 100vw);
  }
}
.p-plan__planGroup__planList__planBox--plan3 .p-plan__planGroup__planList__planBox__structureGroup__illust {
  background-image: url(../images/illust_plan_3.svg);
  height: 355px;
  width: 592px;
}
@media screen and (max-width: 1214px) {
  .p-plan__planGroup__planList__planBox--plan3 .p-plan__planGroup__planList__planBox__structureGroup__illust {
    height: calc(355 / 1215 * 100vw);
    width: calc(592 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__planGroup__planList__planBox--plan3 .p-plan__planGroup__planList__planBox__structureGroup__illust {
    height: calc(195 / 375 * 100vw);
    width: calc(325 / 375 * 100vw);
  }
}

.p-price__inner {
  padding-top: 72px;
}
@media screen and (max-width: 1214px) {
  .p-price__inner {
    padding-top: calc(72 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__inner {
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-price__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-bottom: 40px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-price__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-price__title span {
  color: var(--color-main);
}
.p-price__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-price__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-price__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-price__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
@media screen and (max-width: 1214px) {
  .p-price__title {
    margin-bottom: calc(40 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__title {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-price__title::before {
  background-image: url(../images/title_en_price.svg);
}
.p-price__priceList {
  margin: 0 auto;
  width: 918px;
}
@media screen and (max-width: 1214px) {
  .p-price__priceList {
    width: calc(918 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__priceList {
    width: calc(315 / 375 * 100vw);
  }
}
.p-price__priceList > ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-price__priceList > ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-price__priceList > ul > li + li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-price__priceList__priceBox {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0px 0px 17px rgba(230, 230, 230, 0.74);
  height: 166px;
  width: 222px;
}
@media screen and (max-width: 1214px) {
  .p-price__priceList__priceBox {
    border-radius: calc(6 / 1215 * 100vw);
    box-shadow: calc(0 / 1215 * 100vw) calc(0 / 1215 * 100vw) calc(17 / 1215 * 100vw) rgba(230, 230, 230, 0.74);
    height: calc(166 / 1215 * 100vw);
    width: calc(222 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__priceList__priceBox {
    border-radius: calc(6 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(17 / 375 * 100vw) rgba(230, 230, 230, 0.74);
    height: calc(205 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-price__priceList__priceBox__title {
  align-items: center;
  background-color: var(--color-main2);
  border-radius: 6px 6px 0 0;
  color: var(--color-white);
  display: flex;
  font-size: 16px;
  font-weight: bold;
  height: 43px;
  justify-content: center;
}
@media screen and (max-width: 1214px) {
  .p-price__priceList__priceBox__title {
    border-radius: calc(6 / 1215 * 100vw) calc(6 / 1215 * 100vw) 0 0;
    font-size: calc(16 / 1215 * 100vw);
    height: calc(43 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__priceList__priceBox__title {
    border-radius: calc(6 / 375 * 100vw) calc(6 / 375 * 100vw) 0 0;
    font-size: calc(16 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
  }
}
.p-price__priceList__priceBox__textBox {
  align-items: center;
  display: flex;
  height: 123px;
  justify-content: center;
}
@media screen and (max-width: 1214px) {
  .p-price__priceList__priceBox__textBox {
    height: calc(123 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__priceList__priceBox__textBox {
    height: calc(155 / 375 * 100vw);
  }
}
.p-price__priceList__priceBox__textBox__text {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 90px;
  overflow: hidden;
  text-indent: 150vw;
  transform: translateY(3px);
  white-space: nowrap;
  width: 150px;
}
@media screen and (max-width: 1214px) {
  .p-price__priceList__priceBox__textBox__text {
    height: calc(90 / 1215 * 100vw);
    transform: translateY(calc(3 / 1215 * 100vw));
    width: calc(150 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-price__priceList__priceBox__textBox__text {
    height: calc(114 / 375 * 100vw);
    transform: translateY(calc(3 / 375 * 100vw));
    width: calc(190 / 375 * 100vw);
  }
}
.p-price__priceList__priceBox--price1 .p-price__priceList__priceBox__textBox__text, .p-price__priceList__priceBox--price3 .p-price__priceList__priceBox__textBox__text {
  background-image: url(../images/text_price_1.svg);
}
.p-price__priceList__priceBox--price2 .p-price__priceList__priceBox__textBox__text {
  background-image: url(../images/text_price_2.svg);
}
.p-price__priceList__priceBox--price4 .p-price__priceList__priceBox__textBox__text {
  background-image: url(../images/text_price_4.svg);
}
.p-price__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-price__button {
    display: block;
  }
}
.p-price__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}

.p-flow {
  margin-top: 17px;
}
@media screen and (max-width: 1214px) {
  .p-flow {
    margin-top: calc(17 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow {
    margin-top: calc(0 / 375 * 100vw);
  }
}
.p-flow__inner {
  padding-bottom: 153px;
  padding-top: 63px;
}
@media screen and (max-width: 1214px) {
  .p-flow__inner {
    padding-bottom: calc(153 / 1215 * 100vw);
    padding-top: calc(63 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-bottom: calc(60 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-flow__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-bottom: 35px;
  padding-bottom: 55px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1214px) {
  .p-flow__title {
    font-size: calc(28 / 1215 * 100vw);
    margin-bottom: calc(24 / 1215 * 100vw);
    padding-bottom: calc(55 / 1215 * 100vw);
    padding-top: calc(30 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(33 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
  }
}
.p-flow__title span {
  color: var(--color-main);
}
.p-flow__title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1214px) {
  .p-flow__title::before {
    height: calc(11 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__title::before {
    height: calc(11 / 375 * 100vw);
  }
}
.p-flow__title::after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2.5px;
}
@media screen and (max-width: 1214px) {
  .p-flow__title::after {
    height: calc(30 / 1215 * 100vw);
    width: calc(2.5 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__title::after {
    height: calc(26 / 375 * 100vw);
    width: calc(2.5 / 375 * 100vw);
  }
}
@media screen and (max-width: 1214px) {
  .p-flow__title {
    margin-bottom: calc(35 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.p-flow__title::before {
  background-image: url(../images/title_en_flow.svg);
}
.p-flow__flowList {
  background-image: url(../images/illust_flow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 203px;
  margin: 0 auto;
  position: relative;
  width: 935px;
}
@media screen and (max-width: 1214px) {
  .p-flow__flowList {
    height: calc(203 / 1215 * 100vw);
    width: calc(935 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList {
    background-image: url(../images/illust_flow_sp.svg);
    height: calc(682 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-flow__flowList__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 23px;
  position: absolute;
  text-align: center;
  top: 165px;
}
@media screen and (max-width: 1214px) {
  .p-flow__flowList__text {
    font-size: calc(14 / 1215 * 100vw);
    line-height: calc(23 / 1215 * 100vw);
    top: calc(165 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__text {
    font-size: calc(14 / 375 * 100vw);
    left: 0;
    line-height: calc(24 / 375 * 100vw);
    margin: 0 auto;
    right: 0;
    top: calc(0 / 375 * 100vw);
  }
}
.p-flow__flowList__text--flow1 {
  left: 38px;
}
@media screen and (max-width: 1214px) {
  .p-flow__flowList__text--flow1 {
    left: calc(38 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__text--flow1 {
    left: calc(0 / 375 * 100vw);
    top: calc(130 / 375 * 100vw);
  }
}
.p-flow__flowList__text--flow2 {
  left: 394px;
}
@media screen and (max-width: 1214px) {
  .p-flow__flowList__text--flow2 {
    left: calc(394 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__text--flow2 {
    left: calc(0 / 375 * 100vw);
    top: calc(370 / 375 * 100vw);
  }
}
.p-flow__flowList__text--flow3 {
  left: 682px;
}
@media screen and (max-width: 1214px) {
  .p-flow__flowList__text--flow3 {
    left: calc(682 / 1215 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__text--flow3 {
    left: calc(0 / 375 * 100vw);
    top: calc(580 / 375 * 100vw);
  }
}
.p-flow__button {
  display: none;
  margin-top: calc(30 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-flow__button {
    display: block;
  }
}
.p-flow__button a {
  height: calc(53 / 375 * 100vw);
  margin: 0 auto;
  width: calc(315 / 375 * 100vw);
}
