/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

.container {
  width: 100%;
  max-width: 118rem;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

.p-diagram {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #e9f5fe;
}
@media screen and (max-width: 760px) {
  .p-diagram {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-diagram__container {
  max-width: 1047px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-diagram__wrap {
  text-align: center;
}
.p-diagram__sub {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 760px) {
  .p-diagram__sub {
    font-size: 20px;
  }
}
.p-diagram__title {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 760px) {
  .p-diagram__title {
    margin-bottom: 16px;
  }
}
.p-diagram__line {
  position: absolute;
  width: 238px;
  bottom: 0;
  left: 190px;
}
@media screen and (max-width: 760px) {
  .p-diagram__line {
    width: 190px;
    left: 0px;
    bottom: -2px;
  }
}
.p-diagram__h2 {
  font-size: 40px;
  color: #0045a7;
  font-weight: 800;
  transform: skew(-3deg);
}
@media screen and (max-width: 760px) {
  .p-diagram__h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
.p-diagram__h2 span {
  font-size: 48px;
  font-weight: 800;
}
@media screen and (max-width: 760px) {
  .p-diagram__h2 span {
    font-size: 40px;
  }
}
.p-diagram__parent {
  width: 100%;
}
.p-diagram__img {
  width: 100%;
}

.p-last {
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 760px) {
  .p-last {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.p-faq {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 760px) {
  .p-faq {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-faq__container {
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-faq__title-group {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 760px) {
  .p-faq__title-group {
    margin-bottom: 32px;
  }
}
.p-faq__sub {
  font-size: 32px;
  font-weight: 700;
  color: #0045a7;
}
@media screen and (max-width: 760px) {
  .p-faq__sub {
    font-size: 24px;
  }
}
.p-faq__h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0045a7;
}
@media screen and (max-width: 760px) {
  .p-faq__h2 {
    font-size: 36px;
  }
}
.p-faq__dl {
  background-color: #e9f5fe;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.p-faq__dl:not(:last-child) {
  margin-bottom: 16px;
}
.p-faq__dl.is-open .p-faq__arrow {
  transform: translateY(-50%) rotate(180deg);
}
.p-faq__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .p-faq__arrow {
    right: 20px;
    width: 16px;
  }
}
.p-faq__dt {
  min-height: 80px;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  cursor: pointer;
}
.p-faq__dt:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 760px) {
  .p-faq__dt {
    min-height: 74px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    padding-left: 16px;
    padding-right: 35px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.p-faq__question {
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media screen and (max-width: 760px) {
  .p-faq__question {
    font-size: 16px;
  }
}
.p-faq__text {
  font-size: 16px;
}
@media screen and (max-width: 760px) {
  .p-faq__text {
    font-size: 14px;
  }
}
.p-faq__ico {
  width: 26px;
}
@media screen and (max-width: 760px) {
  .p-faq__ico {
    width: 23px;
  }
}
.p-faq__dd {
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
@media screen and (max-width: 760px) {
  .p-faq__dd {
    padding-left: 16px;
    padding-right: 35px;
    padding-top: 16px;
    padding-bottom: 16px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}

.p-other {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 760px) {
  .p-other {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-other__container {
  max-width: 882px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-other__wrap {
  border-radius: 16px;
  background-color: #e8f1ff;
  padding: 64px 0;
}
@media screen and (max-width: 1024px) {
  .p-other__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 760px) {
  .p-other__wrap {
    padding: 32px 12px;
    border-radius: 16px;
  }
}
.p-other__titles {
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-other__titles {
    margin-bottom: 0;
  }
}
.p-other__sub {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 760px) {
  .p-other__sub {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.p-other__h2 {
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
  font-weight: 900;
  color: #0045a7;
  font-size: 48px;
  transform: skew(-3deg);
  background: linear-gradient(to right bottom, #d0c516, #fef441, #d0c516);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 0 !important;
}
@media screen and (max-width: 760px) {
  .p-other__h2 {
    font-size: 30px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-other__child-title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #0045a7;
  border-radius: 8px;
}
.p-other__child-title--2 {
  background-color: #257bd0;
}
.p-other__child-title--3 {
  background-color: #679deb;
}
.p-other__child:not(:last-child) {
  margin-bottom: 32px;
}
.p-other__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
@media screen and (max-width: 760px) {
  .p-other__flex {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-other__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  background-color: #fff;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  width: 108px;
  height: 108px;
}
@media screen and (max-width: 760px) {
  .p-other__box {
    row-gap: 1px;
    width: calc((100% - 8px) / 3);
  }
}
.p-other__img {
  height: 60px;
}
.p-other__name {
  font-size: 16px;
  font-weight: 700;
  color: #257bd0;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 760px) {
  .p-other__name {
    font-size: 14px;
  }
}

.p-swiper {
  background-color: #d8eefd;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 760px) {
  .p-swiper {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-swiper__container {
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-swiper__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-swiper__white {
  border: 1px solid #e32d2d;
  text-align: center;
  padding: 64px 80px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-swiper__white {
    padding: 48px 16px;
  }
}
.p-swiper__h2 {
  margin-bottom: 32px;
  color: #0045a7;
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 760px) {
  .p-swiper__h2 {
    margin-bottom: 32px;
    font-size: 35px;
  }
}

.p-fv {
  background: url(../img/lp/fv/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: min(180px, 31px + 149 * (100vw - 760px) / 550);
}

.p-fv__adding {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0px 8px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1100px) {
  .p-fv__adding {
    font-size: 43px;
    margin-bottom: 10px;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .p-fv__adding {
    font-size: 38px;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 760px) {
  .p-fv__adding {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
  }
}

@media screen and (max-width: 760px) {
  .p-fv {
    padding-top: 83px;
    background: url(../img/lp/fv/bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.p-fv__container {
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  padding-bottom: min(88px, 51px + 37 * (100vw - 760px) / 550);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-fv__container {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 51px;
  }
}
.p-fv__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 760px) {
  .p-fv__wrap {
    align-items: center;
  }
}
.p-fv__girl {
  position: absolute;
  width: min(471px, 300px + 171 * (100vw - 760px) / 550);
  bottom: min(-51px, -88px + 37 * (100vw - 760px) / 550);
}
@media screen and (max-width: 760px) {
  .p-fv__girl {
    width: 300px;
    left: -70px;
    bottom: 0;
  }
}
.p-fv__parent-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: min(48px, 46px + 2 * (100vw - 760px) / 550);
}
@media screen and (max-width: 760px) {
  .p-fv__parent-flex {
    margin-bottom: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 6px;
  }
}
.p-fv__saitan {
  transform: skew(-3deg);
  margin-bottom: -28px;
  font-size: max(38px, 40px - 2 * (100vw - 760px) / 550);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-fv__saitan {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.p-fv__flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-fv__flex {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
}
.p-fv__flex-child {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
.p-fv__tou {
  width: min(189px, 120px + 69 * (100vw - 760px) / 550);
  transform: skew(-3deg);
}
@media screen and (max-width: 760px) {
  .p-fv__tou {
    width: 120px;
  }
}
.p-fv__ni {
  margin-right: 10px;
  margin-left: -30px;
  font-size: min(58px, 30px + 28 * (100vw - 760px) / 550);
  font-weight: 700;
  color: #fff;
  transform: skew(-3deg);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-fv__ni {
    font-size: 30px;
    margin-left: -10px;
    margin-right: 0;
  }
}
.p-fv__h1 {
  transform: skew(-5deg);
  padding-right: 15px;
  padding-left: 15px;
  color: #0045a7;
  font-size: min(88px, 45px + 43 * (100vw - 760px) / 550);
  margin: 0;
  font-weight: 900;
  background: linear-gradient(to right bottom, #ecde00, #fffa98, #ecde00);
}
@media screen and (max-width: 760px) {
  .p-fv__h1 {
    font-size: 45px;
  }
}
.p-fv__group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: min(812px, 450px + 362 * (100vw - 760px) / 550);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .p-fv__group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 141px;
    align-self: flex-end;
  }
}
.p-fv__ico {
  width: min(80px, 43px + 37 * (100vw - 760px) / 550);
  height: min(80px, 43px + 37 * (100vw - 760px) / 550);
}
@media screen and (max-width: 760px) {
  .p-fv__ico {
    width: 43px;
    height: 43px;
  }
}
.p-fv__p {
  font-size: min(32px, 17px + 15 * (100vw - 760px) / 550);
  font-weight: 900;
  color: #333333;
}
@media screen and (max-width: 760px) {
  .p-fv__p {
    font-size: 17px;
  }
}
.p-fv__child {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
  width: calc((100% - 32px) / 3);
  height: min(100px, 54px + 46 * (100vw - 760px) / 550);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 16px 16px 13px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-fv__child {
    -moz-column-gap: 6.77px;
    column-gap: 6.77px;
    width: 100%;
    height: 54px;
    border-radius: 8px;
  }
}

.p-up {
  padding-top: 64px;
  padding-bottom: 190px;
  background: url(../img/lp/up/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1500px) {
  .p-up {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 760px) {
  .p-up {
    padding-top: 48px;
    padding-bottom: 48px;
    background: url(../img/lp/up/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-up__container {
  max-width: 709px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-up__container {
    max-width: 709px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-up__title-group {
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-up__title-group {
    margin-bottom: 0;
  }
}
.p-up__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
@media screen and (max-width: 760px) {
  .p-up__flex {
    align-items: center;
    flex-direction: column;
  }
}
.p-up__sub {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 3px;
}
@media screen and (max-width: 760px) {
  .p-up__sub {
    font-size: 18px;
  }
}
.p-up__h2 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(to right bottom, #003074, #0045a7, #003074);
  transform: skew(-5deg);
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 760px) {
  .p-up__h2 {
    font-size: 36px;
    padding-right: 10px;
    padding-left: 10px;
    transform: skew(-5deg);
  }
}
.p-up__kus {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-up__kus {
    font-size: 28px;
    align-self: flex-end;
  }
}

.p-down {
  padding-top: 154px;
  padding-bottom: 64px;
  margin-top: -90px;
  background: url(../img/lp/down/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .p-down {
    padding-top: 80px;
    padding-bottom: 48px;
    margin-top: -35px;
    background: url(../img/lp/down/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-down__container {
  max-width: 1310px;
  padding-left: min(1.15vw, 15px);
  padding-right: min(1.15vw, 15px);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-down__container {
    max-width: 1310px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-down__title-group {
  margin-bottom: min(3.66vw, 48px);
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-down__title-group {
    margin-bottom: 32px;
  }
}
.p-down__sub {
  font-size: min(2.14vw, 28px);
  color: #fff;
  font-weight: 700;
  margin-bottom: min(0.15vw, 2px);
}
@media screen and (max-width: 760px) {
  .p-down__sub {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p-down__titles {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(0.38vw, 5px);
  column-gap: min(0.38vw, 5px);
}
@media screen and (max-width: 760px) {
  .p-down__titles {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
  }
}
.p-down__h2 {
  font-size: min(3.66vw, 48px);
  font-weight: 800;
  color: #0045a7;
  padding-right: min(1.15vw, 15px);
  padding-left: min(1.15vw, 15px);
  transform: skew(-5deg);
  background: linear-gradient(to right bottom, #d0c516, #fef441, #d0c516);
}
@media screen and (max-width: 1024px) {
  .p-down__h2 {
    font-size: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 760px) {
  .p-down__h2 {
    font-size: 36px;
  }
}
.p-down__kus {
  font-size: min(3.66vw, 48px);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-down__kus {
    font-size: 40px;
  }
}
@media screen and (max-width: 760px) {
  .p-down__kus {
    font-size: 28px;
  }
}
.p-down__plus {
  font-size: min(4.58vw, 60px);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 760px) {
  .p-down__plus {
    font-size: 40px;
  }
}
.p-down__box {
  margin-bottom: min(3.66vw, 48px);
}
.p-down__button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: min(1.22vw, 16px);
  column-gap: min(1.22vw, 16px);
}
@media screen and (max-width: 760px) {
  .p-down__button-group {
    flex-direction: column;
    row-gap: 16px;
  }
}
.p-down__ga {
  max-width: 916px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 760px) {
  .p-down__ga {
    max-width: 916px;
  }
}
.p-down__kome {
  font-size: min(1.07vw, 14px);
  text-align: right;
  color: #fff;
  margin-top: min(0.61vw, 8px);
}
@media screen and (max-width: 760px) {
  .p-down__kome {
    margin-top: 12px;
    font-size: 14px;
  }
}
.p-down__document {
  width: min(9.3vw, 122px);
  position: absolute;
  bottom: min(5.87vw, 77px);
  right: min(-1.9vw, -25px);
}
@media screen and (max-width: 760px) {
  .p-down__document {
    bottom: 77px;
    right: -25px;
    width: 100px;
  }
}
.p-down__box {
  display: flex;
  flex-direction: row;
  -moz-column-gap: min(3.66vw, 48px);
  column-gap: min(3.66vw, 48px);
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: min(1.22vw, 16px);
  padding: min(2.44vw, 32px) min(4.89vw, 64px);
}
@media screen and (max-width: 760px) {
  .p-down__box {
    row-gap: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 32px 16px;
  }
}
.p-down__credi {
  font-weight: 500;
  font-size: min(3.66vw, 48px);
  color: #257bd0;
}
@media screen and (max-width: 760px) {
  .p-down__credi {
    font-size: 32px;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 760px) {
  .p-down__img {
    width: 200px;
  }
}
.p-down__child {
  display: flex;
  flex-direction: column;
  row-gap: min(1.22vw, 16px);
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-down__child {
    row-gap: 8px;
  }
}
.p-down__word {
  font-size: min(1.53vw, 20px);
  font-weight: 700;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-down__word {
    font-size: 16px;
    font-weight: 500;
  }
}
.p-down__word span {
  font-size: min(1.83vw, 24px);
  color: #257bd0;
}
@media screen and (max-width: 760px) {
  .p-down__word span {
    font-size: 24px;
    font-weight: 700;
  }
}

.p-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../img/lp/contact/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .p-contact {
    padding-top: 48px;
    padding-bottom: 48px;
    background: url(../img/lp/contact/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-contact__container {
  max-width: 800px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.p-contact__titles {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 760px) {
  .p-contact__titles {
    margin-bottom: 32px;
  }
}
.p-contact__h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .p-contact__h2 {
    font-size: 36px;
  }
}
.p-contact__sub {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-contact__sub {
    font-size: 18px;
  }
}
.p-contact__parent {
  -moz-column-gap: 27px;
  column-gap: 27px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-contact__parent:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .p-contact__parent {
    row-gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-contact__label {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  width: 27%;
}
@media screen and (max-width: 900px) {
  .p-contact__label {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .p-contact__label {
    width: 100%;
  }
}
.p-contact__label span {
  color: #ff0000;
  margin-left: 5px;
}
.p-contact__input {
  font-size: 16px;
  height: 64px;
  flex: 1;
  border-radius: 8px;
  outline: none;
  border: none;
  padding: 16px;
  width: 100%;
}
.p-contact__textarea {
  font-size: 16px;
  border-radius: 8px;
  outline: none;
  border: none;
  padding: 16px;
  resize: none;
  width: 100%;
  height: 163px;
}
.p-contact__button {
  margin-top: 48px;
  color: #fff !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 67px;
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  outline: none;
  background: linear-gradient(to right bottom, #e97515, #f4964a, #e97515);
  transition: all 0.3s;
  font-size: 28px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-contact__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-contact__button {
    margin-top: 32px;
    font-size: 24px;
    width: 100%;
    height: 67px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.p-flowx {
  padding-top: clamp(48px, 48px + 16 * (100vw - 760px) / 550, 64px);
  padding-bottom: clamp(48px, 48px + 16 * (100vw - 760px) / 550, 64px);
  background: url(../img/lp/flow/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .p-flowx {
    padding-top: 48px;
    padding-bottom: 48px;
    background: url(../img/lp/flow/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-flowx__container {
  max-width: 1310px;
  padding-left: clamp(15px, 15px + 0 * (100vw - 760px) / 550, 15px);
  padding-right: clamp(15px, 15px + 0 * (100vw - 760px) / 550, 15px);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-flowx__container {
    max-width: 1310px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-flowx__button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: clamp(0px, 0px + 16 * (100vw - 760px) / 550, 16px);
  column-gap: clamp(0px, 0px + 16 * (100vw - 760px) / 550, 16px);
}
@media screen and (max-width: 760px) {
  .p-flowx__button-group {
    flex-direction: column;
    row-gap: 16px;
  }
}
.p-flowx__ga {
  max-width: 916px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 760px) {
  .p-flowx__ga {
    max-width: 916px;
  }
}
.p-flowx__title-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: clamp(0px, 0px + 8 * (100vw - 760px) / 550, 8px);
  column-gap: clamp(0px, 0px + 8 * (100vw - 760px) / 550, 8px);
  margin-bottom: clamp(48px, 48px + 24 * (100vw - 760px) / 550, 72px);
  position: relative;
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-flowx__title-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-bottom: 72px;
    max-width: 580px;
  }
}
.p-flowx__nami {
  position: absolute;
  width: clamp(200px, 200px + 136 * (100vw - 760px) / 550, 336px);
  right: 15px;
  top: 0;
}
@media screen and (max-width: 760px) {
  .p-flowx__nami {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-flowx__nami--2 {
  top: initial;
  bottom: 0;
}
@media screen and (max-width: 760px) {
  .p-flowx__nami--2 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 760px) {
  .p-flowx__arrow {
    transform: rotate(90deg);
  }
}
.p-flowx__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: clamp(12px, 12px + 10 * (100vw - 760px) / 550, 22px);
  column-gap: clamp(12px, 12px + 10 * (100vw - 760px) / 550, 22px);
  justify-content: center;
  margin-bottom: clamp(32px, 32px + 16 * (100vw - 760px) / 550, 48px);
}
@media screen and (max-width: 760px) {
  .p-flowx__content {
    flex-direction: column;
    row-gap: 35px;
    margin-bottom: 48px;
  }
}
.p-flowx__circle {
  width: clamp(32px, 32px + 16 * (100vw - 760px) / 550, 48px);
  height: clamp(32px, 32px + 16 * (100vw - 760px) / 550, 48px);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 18px + 6 * (100vw - 760px) / 550, 24px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: clamp(-24px, -24px + 0 * (100vw - 760px) / 550, -24px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #0045a7;
}
@media screen and (max-width: 760px) {
  .p-flowx__circle {
    top: -24px;
    font-size: 24px;
    width: 48px;
    height: 48px;
  }
}
.p-flowx__inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.p-flowx__h3 {
  color: #0045a7;
  margin-bottom: min(0.92vw, 12px);
  font-size: min(2.24vw, 32px);
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-flowx__h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.p-flowx__description {
  padding-top: min(0.92vw, 12px);
  font-size: min(1.22vw, 16px);
  border-top: 1px dashed #0045a7;
}
@media screen and (max-width: 760px) {
  .p-flowx__description {
    padding-top: 12px;
    font-size: 16px;
  }
}
.p-flowx__child {
  position: relative;
  width: clamp(200px, 200px + 80 * (100vw - 760px) / 550, 280px);
  background-color: #f3f6fa;
  border-radius: clamp(6px, 6px + 2 * (100vw - 760px) / 550, 8px);
  padding-top: clamp(32px, 32px + 16 * (100vw - 760px) / 550, 48px);
  padding-right: clamp(24px, 24px + 8 * (100vw - 760px) / 550, 32px);
  padding-left: clamp(24px, 24px + 8 * (100vw - 760px) / 550, 32px);
  height: clamp(200px, 200px + 70 * (100vw - 760px) / 550, 270px);
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 760px) {
  .p-flowx__child {
    width: 100%;
    padding-top: 32px;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 32px;
    height: auto;
  }
}
.p-flowx__kome {
  font-size: clamp(12px, 12px + 2 * (100vw - 760px) / 550, 14px);
  text-align: right;
  color: #333333;
  margin-top: clamp(8px, 8px + 0 * (100vw - 760px) / 550, 8px);
}
@media screen and (max-width: 760px) {
  .p-flowx__kome {
    margin-top: 12px;
    font-size: 14px;
  }
}
.p-flowx__sub {
  font-size: clamp(24px, 24px + 4 * (100vw - 760px) / 550, 28px);
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-flowx__sub {
    font-size: 24px;
  }
}
.p-flowx__h2 {
  font-size: clamp(36px, 36px + 12 * (100vw - 760px) / 550, 48px);
  font-weight: 900;
  color: #0045a7;
}
@media screen and (max-width: 760px) {
  .p-flowx__h2 {
    font-size: 36px;
  }
}

.p-reason {
  padding-top: clamp(96px, 96px + -32 * (100vw - 760px) / 390, 64px);
  padding-bottom: clamp(48px, 48px + 16 * (100vw - 760px) / 390, 64px);
  background: url(../img/lp/reason/bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .p-reason {
    padding-top: 48px;
    padding-bottom: 48px;
    background: url(../img/lp/reason/bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.p-reason__container {
  max-width: 1150px;
  position: relative;
  padding-left: clamp(15px, 15px + 0 * (100vw - 760px) / 390, 15px);
  padding-right: clamp(15px, 15px + 0 * (100vw - 760px) / 390, 15px);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-reason__container {
    max-width: 1150px;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-reason__wrap {
  text-align: center;
}
.p-reason__kome {
  font-size: clamp(12px, 12px + 2 * (100vw - 760px) / 550, 14px);
  text-align: right;
  color: #333333;
  margin-top: clamp(8px, 8px + 0 * (100vw - 760px) / 550, 8px);
}
@media screen and (max-width: 760px) {
  .p-reason__kome {
    margin-top: 12px;
    font-size: 14px;
  }
}
.p-reason__ga {
  max-width: 916px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 760px) {
  .p-reason__ga {
    max-width: 916px;
  }
}
.p-reason__button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: clamp(0px, 0px + 16 * (100vw - 760px) / 550, 16px);
  column-gap: clamp(0px, 0px + 16 * (100vw - 760px) / 550, 16px);
}
@media screen and (max-width: 760px) {
  .p-reason__button-group {
    flex-direction: column;
    row-gap: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-reason__girl {
  position: absolute;
  top: -73px;
  left: 50px;
  width: 209px;
}
@media screen and (max-width: 900px) {
  .p-reason__girl {
    display: none;
  }
}
.p-reason__deco {
  left: -60px;
  top: -10px;
  position: absolute;
}
@media screen and (max-width: 760px) {
  .p-reason__deco {
    top: 30px;
    left: -30px;
  }
}
.p-reason__deco--right {
  right: -60px;
  left: initial;
}
@media screen and (max-width: 760px) {
  .p-reason__deco--right {
    right: -30px;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__deco {
    width: 41px;
  }
}
.p-reason__title-group {
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
}
@media screen and (max-width: 760px) {
  .p-reason__title-group {
    margin-bottom: 32px;
  }
}
.p-reason__sub {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-reason__sub {
    font-size: 16px;
  }
}
.p-reason__h2 {
  font-size: 48px;
  color: #0045a7;
  font-weight: 900;
}
@media screen and (max-width: 760px) {
  .p-reason__h2 {
    font-size: 36px;
    line-height: 1.2;
  }
}
.p-reason__yellow {
  font-size: 52px;
  color: #ffef00;
  text-shadow: -2px -2px 0 #0045a7, 2px -2px 0 #0045a7, -2px 2px 0 #0045a7,
    2px 2px 0 #0045a7, 0 -2px 0 #0045a7, 0 2px 0 #0045a7, -2px 0 0 #0045a7,
    2px 0 0 #0045a7;
}
.p-reason__yellow span {
  font-size: 40px;
  text-shadow: -2px -2px 0 #0045a7, 2px -2px 0 #0045a7, -2px 2px 0 #0045a7,
    2px 2px 0 #0045a7, 0 -2px 0 #0045a7, 0 2px 0 #0045a7, -2px 0 0 #0045a7,
    2px 0 0 #0045a7;
}
@media screen and (max-width: 760px) {
  .p-reason__yellow {
    font-size: 36px;
  }
}
.p-reason__child {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.p-reason__child:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 760px) {
  .p-reason__child:not(:last-child) {
    margin-bottom: 170px;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__child {
    flex-direction: column;
  }
}
.p-reason__img {
  width: 540px;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-reason__img {
    margin-right: auto;
    width: 100%;
  }
}
.p-reason__reverse {
  margin-right: auto;
  width: 540px;
}
@media screen and (max-width: 760px) {
  .p-reason__reverse {
    width: 100%;
    margin-left: auto;
  }
}
.p-reason__small {
  font-size: 40px;
  color: #0045a7;
  font-weight: 700;
  margin-left: 2px;
}
@media screen and (max-width: 760px) {
  .p-reason__small {
    font-size: 36px;
    margin-left: 0;
  }
}
.p-reason__box {
  position: absolute;
  width: 640px;
  padding: 32px;
  background-color: #fff;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-reason__box--reverse {
  right: 0;
}
@media screen and (max-width: 760px) {
  .p-reason__box {
    width: 380px;
    margin: 0 auto;
    padding: 16px;
    top: 153px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-reason__blue {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #257bd0;
  padding-bottom: 12px;
  width: 100%;
  border-bottom: 1px dotted #7f7e7c;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .p-reason__blue {
    padding-bottom: 12px;
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.p-reason__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .p-reason__flex {
    margin-bottom: 8px;
    justify-content: center;
  }
}
.p-reason__content {
  margin-bottom: 48px;
}
@media screen and (max-width: 760px) {
  .p-reason__content {
    margin-bottom: 190px;
  }
}
.p-reason__number {
  width: 104px;
  height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #257bd0;
}
.p-reason__number--sp {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-reason__number--sp {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__number--pc {
    display: none;
  }
}
.p-reason__number span {
  font-size: 24px;
}
@media screen and (max-width: 760px) {
  .p-reason__number span {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .p-reason__number {
    width: 101px;
    height: 32px;
    font-display: 16px;
  }
}
.p-reason__description {
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 760px) {
  .p-reason__description {
    font-size: 14px;
  }
}
.p-reason__description span {
  font-weight: 700;
}
.p-reason__h3 {
  font-weight: 700;
  font-size: 32px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    #ffef00 70%,
    #ffef00 90%,
    transparent 90%,
    transparent 100%
  );
}
@media screen and (max-width: 760px) {
  .p-reason__h3 {
    font-size: 22px;
  }
}

.c-button {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.48);
  border-radius: 5px;
  background: linear-gradient(to right bottom, #e92715, #f4664a, #e92715);
  width: 450px;
  margin: 0 auto;
  height: 147px;
  transition: all 0.3s;
}
.c-button--orange {
  background: linear-gradient(to right bottom, #e97515, #f4964a, #e97515);
}
@media screen and (max-width: 1024px) {
  .c-button {
    width: 330px;
    height: 120px;
  }
}
@media screen and (max-width: 760px) {
  .c-button {
    -moz-column-gap: 16px;
    column-gap: 16px;
    height: 116px;
    width: 100%;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.48);
    border-radius: 5px;
  }
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.c-button__ico {
  width: 40px;
}
@media screen and (max-width: 760px) {
  .c-button__ico {
    width: 40px;
  }
}
.c-button__words {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .c-button__words {
    font-size: 22px;
  }
}
@media screen and (max-width: 760px) {
  .c-button__words {
    font-size: 24px;
  }
}
.c-button__words span {
  font-size: 32px;
}
@media screen and (max-width: 760px) {
  .c-button__words span {
    font-size: 28px;
  }
} /*# sourceMappingURL=style.css.map */
